Searched refs:k (Results 1 – 4 of 4) sorted by relevance
| /sys/amd64/ |
| D | pmap.c | 129 for (int k = 0; k < PAGETABLE_ENTRIES; k++) { in PMap_DestroyAS() local 130 PageEntry pte3 = tbl3->entries[k]; in PMap_DestroyAS() 222 int i,j,k,l; in PMap_Translate() local 229 k = (va >> LARGE_PGSHIFT) & PGIDXMASK; in PMap_Translate() 247 pte = table->entries[k]; in PMap_Translate() 250 entry = &table->entries[k]; in PMap_Translate() 280 int i,j,k,l; in PMapLookupEntry() local 286 k = (va >> LARGE_PGSHIFT) & PGIDXMASK; in PMapLookupEntry() 318 pte = table->entries[k]; in PMapLookupEntry() 321 *entry = &table->entries[k]; in PMapLookupEntry() [all …]
|
| /lib/liblwip/test/unit/etharp/ |
| D | test_etharp.c | 77 int k; in create_arp_response() local 100 k = 6; in create_arp_response() 101 while(k > 0) { in create_arp_response() 102 k--; in create_arp_response() 104 etharphdr->shwaddr.addr[k] = test_ethaddr2.addr[k]; in create_arp_response() 105 etharphdr->dhwaddr.addr[k] = test_ethaddr.addr[k]; in create_arp_response() 107 ethhdr->dest.addr[k] = test_ethaddr.addr[k]; in create_arp_response() 108 ethhdr->src.addr[k] = test_ethaddr2.addr[k]; in create_arp_response()
|
| /lib/liblwip/src/core/ |
| D | memp.c | 219 u16_t k; in memp_overflow_check_element_overflow() local 223 for (k = 0; k < MEMP_SANITY_REGION_AFTER_ALIGNED; k++) { in memp_overflow_check_element_overflow() 224 if (m[k] != 0xcd) { in memp_overflow_check_element_overflow() 252 u16_t k; in memp_overflow_check_element_underflow() local 256 for (k = 0; k < MEMP_SANITY_REGION_BEFORE_ALIGNED; k++) { in memp_overflow_check_element_underflow() 257 if (m[k] != 0xcd) { in memp_overflow_check_element_underflow()
|
| /lib/liblwip/test/unit/tcp/ |
| D | test_tcp_oos.c | 456 int i, k; in START_TEST() local 489 for(i = TCP_MSS, k = 0; i < TCP_WND; i += TCP_MSS, k++) { in START_TEST() 491 struct pbuf *p = tcp_create_rx_segment(pcb, &data_full_wnd[TCP_MSS*(k+1)], in START_TEST() 492 TCP_MSS, TCP_MSS*(k+1), 0, TCP_ACK); in START_TEST() 503 EXPECT_OOSEQ(count == k+1); in START_TEST() 506 expected_datalen = (k+1)*TCP_MSS; in START_TEST() 516 …p_ovr = tcp_create_rx_segment(pcb, &data_full_wnd[TCP_MSS*(k+1)], TCP_MSS, TCP_MSS*(k+1), 0, TCP_A… in START_TEST() 526 EXPECT_OOSEQ(tcp_oos_count(pcb) == k); in START_TEST() 546 int i, k; in START_TEST() local 578 for(k = 1, i = 1; k < TCP_OOSEQ_MAX_BYTES; k += TCP_MSS, i++) { in START_TEST() [all …]
|