| /src/sbin/clri/ |
| clri.c | 76 struct ufs1_dinode *ip1; local 192 ip1 = &((struct ufs1_dinode *)ibuf) 195 generation = ip1->di_gen + 1; 196 memset(ip1, 0, sizeof(*ip1)); 197 ip1->di_gen = generation;
|
| /src/crypto/external/bsd/openssl.old/dist/test/ |
| v3ext.c | 122 const char *ip1; member in struct:ip_ranges_st 177 ASN1_OCTET_STRING *ip1 = NULL, *ip2 = NULL; local 192 ip1 = a2i_IPADDRESS(ranges[i].ip1); 193 if (!TEST_ptr(ip1)) 195 if (!TEST_true(ip1->length == 4 || ip1->length == 16)) 200 if (!TEST_int_eq(ip2->length, ip1->length)) 202 if (!TEST_true(memcmp(ip1->data, ip2->data, ip1->length) <= 0) [all...] |
| /src/external/bsd/zstd/dist/lib/decompress/ |
| huf_decompress_amd64.S | 76 #define ip1 r9 define 142 movq 8(%rax), %ip1 210 /* If (ip1 < ip0) go to exit */ 211 cmpq %ip0, %ip1 214 /* If (ip2 < ip1) go to exit */ 215 cmpq %ip1, %ip2 272 movq %ip1, 0(%rsp) 295 movq 0(%rsp), %ip1 306 movq %ip1, 0(%rsp) 322 movq 0(%rsp), %ip1 [all...] |
| /src/external/bsd/zstd/dist/tests/ |
| roundTripCrash.c | 114 const char* ip1 = (const char*)buff1; local 119 if (ip1[pos]!=ip2[pos])
|
| /src/crypto/external/apache2/openssl/dist/test/ |
| v3ext.c | 122 const char *ip1; member in struct:ip_ranges_st 177 ASN1_OCTET_STRING *ip1 = NULL, *ip2 = NULL; local 192 ip1 = a2i_IPADDRESS(ranges[i].ip1); 193 if (!TEST_ptr(ip1)) 195 if (!TEST_true(ip1->length == 4 || ip1->length == 16)) 200 if (!TEST_int_eq(ip2->length, ip1->length)) 202 if (!TEST_true(memcmp(ip1->data, ip2->data, ip1->length) <= 0) 234 ASN1_OCTET_STRING *ip1 = NULL, *ip2 = NULL; local 424 ASN1_OCTET_STRING *ip1[3] = { NULL, NULL }; local [all...] |
| /src/crypto/external/bsd/openssl/dist/test/ |
| v3ext.c | 122 const char *ip1; member in struct:ip_ranges_st 177 ASN1_OCTET_STRING *ip1 = NULL, *ip2 = NULL; local 192 ip1 = a2i_IPADDRESS(ranges[i].ip1); 193 if (!TEST_ptr(ip1)) 195 if (!TEST_true(ip1->length == 4 || ip1->length == 16)) 200 if (!TEST_int_eq(ip2->length, ip1->length)) 202 if (!TEST_true(memcmp(ip1->data, ip2->data, ip1->length) <= 0) 234 ASN1_OCTET_STRING *ip1 = NULL, *ip2 = NULL; local 428 ASN1_OCTET_STRING *ip1[3] = { NULL, NULL }; local [all...] |
| /src/sys/dev/i2c/ |
| emcfan.c | 850 int ip1, ip2; local 853 ip1 = 10000 / poles; 855 printf("poles: %d ; ip1: %d\n",poles,ip1); 870 irpm = (ip1 * ip3 * ftach * 60) / 100000000000;
|
| /src/external/bsd/zstd/dist/lib/compress/ |
| zstd_fast.c | 168 const BYTE* ip1; local 178 size_t hash1; /* hash for ip1 */ 186 /* ip0 and ip1 are always adjacent. The targetLength skipping and 189 * between pairs of positions, from ip0 to ip2 or ip1 to ip3. */ 210 ip1 = ip0 + 1; 219 hash1 = ZSTD_hashPtr(ip1, hlog, mls); 242 * This write is known to be safe because the ip1 is before the 244 hashTable[hash1] = (U32)(ip1 - base); 261 * This write is known to be safe because the ip1 == ip0 + 1, so 262 * we know we will resume searching after ip1 */ 477 const BYTE* ip1 = ip0 + stepSize; \/* we assert below that stepSize >= 1 *\/ local 719 const BYTE* ip1; local [all...] |
| zstd_double_fast.c | 137 size_t hl1; /* the long hash at ip1 */ 140 U32 idxl1; /* the long match index for ip1 */ 144 const BYTE* matchl1; /* the long match for ip1 */ 147 const BYTE* ip1; /* the next position */ local 165 ip1 = ip + step; 167 if (ip1 > ilimit) { 192 hl1 = ZSTD_hashPtr(ip1, hBitsL, 8); 214 if (ip1 >= nextStep) { 215 PREFETCH_L1(ip1 + 64); 216 PREFETCH_L1(ip1 + 128) [all...] |