/third_party/toybox/toys/pending/ |
H A D | mdev.c | 99 char *end2; in make_device() local 111 for (end2 = pos; in make_device() 112 end2<end && !isspace(*end2) && *end2!='#'; end2++); in make_device() 117 char *regex = strndup(pos, end2-pos); in make_device() 141 for(s = pos; s<end2 && *s!=':'; s++); in make_device() 142 if (s==end2) goto end_line; in make_device() 157 if (end2! in make_device() [all...] |
H A D | diff.c | 591 start1, end1, start2, end2; in do_diff() local 684 end2 = ptr2->prev - ptr2->b + ptr2->d; in do_diff() 691 printf("+%ld", (end2 - start2 + 1) ? start2: (start2 -1)); in do_diff() 692 if ((end2 - start2 +1) != 1) printf(",%ld ", (end2 - start2 +1)); in do_diff()
|
/third_party/icu/tools/unicode/c/genprops/misc/ |
H A D | ucdmerge.c | 57 char *end1, *end2; in sameData() local 66 end2=endOfData(l2); in sameData() 70 return length==(end2-l2) && 0==memcmp(l1, l2, length); in sameData()
|
/third_party/lzma/CPP/Common/ |
H A D | StringToInt.cpp | 39 const char *end2;
40 UInt32 res = ConvertStringToUInt32(s2, &end2);
49 *end = end2;
65 const wchar_t *end2;
in ConvertStringToInt32() local 66 UInt32 res = ConvertStringToUInt32(s2, &end2);
in ConvertStringToInt32() 75 *end = end2;
in ConvertStringToInt32()
|
/third_party/gn/src/base/files/ |
H A D | file_util.cc | 104 std::string::size_type end2 = line2.find_last_not_of("\r\n"); in TextContentsEqual() local 105 if (end2 == std::string::npos) in TextContentsEqual() 107 else if (end2 + 1 < line2.length()) in TextContentsEqual() 108 line2.erase(end2 + 1); in TextContentsEqual()
|
/third_party/mbedtls/library/ |
H A D | x509.c | 250 const unsigned char *end, *end2; in mbedtls_x509_get_rsassa_pss_params() local 278 end2 = p + len; in mbedtls_x509_get_rsassa_pss_params() 281 if ((ret = mbedtls_x509_get_alg_null(&p, end2, &alg_id)) != 0) { in mbedtls_x509_get_rsassa_pss_params() 289 if (p != end2) { in mbedtls_x509_get_rsassa_pss_params() 307 end2 = p + len; in mbedtls_x509_get_rsassa_pss_params() 310 if ((ret = mbedtls_x509_get_alg(&p, end2, &alg_id, &alg_params)) != 0) { in mbedtls_x509_get_rsassa_pss_params() 325 if (p != end2) { in mbedtls_x509_get_rsassa_pss_params() 343 end2 = p + len; in mbedtls_x509_get_rsassa_pss_params() 345 if ((ret = mbedtls_asn1_get_int(&p, end2, salt_len)) != 0) { in mbedtls_x509_get_rsassa_pss_params() 349 if (p != end2) { in mbedtls_x509_get_rsassa_pss_params() [all...] |
H A D | x509_crl.c | 240 const unsigned char *end2; in x509_get_entries() local 250 end2 = *p + len2; in x509_get_entries() 252 if ((ret = mbedtls_x509_get_serial(p, end2, &cur_entry->serial)) != 0) { in x509_get_entries() 256 if ((ret = mbedtls_x509_get_time(p, end2, in x509_get_entries() 261 if ((ret = x509_get_crl_entry_ext(p, end2, in x509_get_entries()
|
H A D | pkparse.c | 615 unsigned char *end2; in pk_parse_key_sec1_der() local 686 end2 = p + len; in pk_parse_key_sec1_der() 688 if ((ret = mbedtls_asn1_get_bitstring_null(&p, end2, &len)) != 0) { in pk_parse_key_sec1_der() 692 if (p + len != end2) { in pk_parse_key_sec1_der() 697 if ((ret = mbedtls_pk_ecc_set_pubkey(pk, p, (size_t) (end2 - p))) == 0) { in pk_parse_key_sec1_der()
|
/third_party/ltp/testcases/kernel/syscalls/mlock2/ |
H A D | mlock201.c | 112 goto end2; in verify_mlock2() 133 end2: in verify_mlock2()
|
/third_party/node/deps/openssl/openssl/apps/ |
H A D | gendsa.c | 128 goto end2; in gendsa_main() 161 end2: in gendsa_main()
|
H A D | storeutl.c | 369 goto end2; in process() 378 goto end2; in process() 383 goto end2; in process() 491 end2: in process()
|
/third_party/openssl/apps/ |
H A D | gendsa.c | 128 goto end2; in gendsa_main() 161 end2: in gendsa_main()
|
H A D | storeutl.c | 369 goto end2; in process() 378 goto end2; in process() 383 goto end2; in process() 491 end2: in process()
|
/third_party/ltp/testcases/kernel/mem/lib/ |
H A D | mem.c | 306 int start, int end, int start2, int end2) in verify() 311 s = SAFE_MALLOC((end - start) * (end2 - start2)); in verify() 314 memset(s, value, (end - start) * (end2 - start2)); in verify() 315 if (memcmp(memory[start], s, (end - start) * (end2 - start2)) in verify() 318 for (i = start2; i < end2; i++) in verify() 305 verify(char **memory, char value, int proc, int start, int end, int start2, int end2) verify() argument
|
/third_party/skia/src/pathops/ |
H A D | SkOpSpan.h | 126 const SkOpPtT* end2 = s2->fT < e2->fT ? e2 : s2; in Overlaps() local 127 *eOut = between(s1->fT, end2->fT, e1->fT) ? end2 in Overlaps() 130 SkOPOBJASSERT(s1, start1->fT >= end2->fT || start2->fT >= end1->fT); in Overlaps()
|
H A D | SkPathOpsCubic.cpp | 159 int end2 = hullOrder[hullIndex]; in hullIntersects() local 160 endPt[1] = &fPts[end2]; in hullIntersects() 165 int oddManMask = other_two(end1, end2); in hullIntersects() 168 int oddMan2 = end2 ^ oddManMask; in hullIntersects() 192 end1 = end2; in hullIntersects()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/wps/ |
H A D | httpread.c | 103 int end2 = 0; in word_eq() local 112 end2 = !isgraph(c2); in word_eq() 113 if (end1 || end2 || c1 != c2) in word_eq() 116 return end1 && end2; /* reached end of both words? */ in word_eq()
|
H A D | wps_upnp_ssdp.c | 43 int end2 = 0; in token_eq() local 52 end2 = !(isalnum(c2) || c2 == '_' || c2 == '-'); in token_eq() 53 if (end1 || end2 || c1 != c2) in token_eq() 56 return end1 && end2; /* reached end of both words? */ in token_eq()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/wps/ |
H A D | httpread.c | 103 int end2 = 0; in word_eq() local 112 end2 = !isgraph(c2); in word_eq() 113 if (end1 || end2 || c1 != c2) in word_eq() 116 return end1 && end2; /* reached end of both words? */ in word_eq()
|
H A D | wps_upnp_ssdp.c | 43 int end2 = 0; in token_eq() local 52 end2 = !(isalnum(c2) || c2 == '_' || c2 == '-'); in token_eq() 53 if (end1 || end2 || c1 != c2) in token_eq() 56 return end1 && end2; /* reached end of both words? */ in token_eq()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
H A D | FlattenCFG.cpp | 342 BasicBlock::iterator end2 = Block2->getTerminator()->getIterator(); in CompareIfRegionBlock() local 346 if (iter2 != end2) in CompareIfRegionBlock()
|
/third_party/ffmpeg/libavcodec/ |
H A D | mss3.c | 365 int end, end2; in rac_get_model_sym() local 373 end2 = m->num_syms; in rac_get_model_sym() 380 end2 = end; in rac_get_model_sym() 383 end = (end2 + val) >> 1; in rac_get_model_sym()
|
/third_party/ffmpeg/libswresample/ |
H A D | audioconvert.c | 41 uint8_t *end2 = end - 3*os;\ 42 while(po < end2){\
|
/third_party/mesa3d/src/gallium/tools/trace/ |
H A D | pytracediff.py | 366 for tag, start1, end1, start2, end2 in opcodes: 420 if ncall2 < end2:
|
/third_party/icu/icu4c/source/common/ |
H A D | ucptrie.cpp | 453 UChar32 end2 = getRange(trie, surrEnd + 1, filter, context, &value2); in ucptrie_internalGetRange() local 455 return end2; in ucptrie_internalGetRange()
|