/third_party/python/Python/ |
H A D | suggestions.c | 39 levenshtein_distance(const char *a, size_t a_size, in levenshtein_distance() argument 51 while (a_size && b_size && a[0] == b[0]) { in levenshtein_distance() 52 a++; a_size--; in levenshtein_distance() 55 while (a_size && b_size && a[a_size-1] == b[b_size-1]) { in levenshtein_distance() 56 a_size--; in levenshtein_distance() 59 if (a_size == 0 || b_size == 0) { in levenshtein_distance() 60 return (a_size + b_size) * MOVE_COST; in levenshtein_distance() 62 if (a_size > MAX_STRING_SIZE || b_size > MAX_STRING_SIZE) { in levenshtein_distance() 67 if (b_size < a_size) { in levenshtein_distance() [all...] |
/third_party/libabigail/include/ |
H A D | abg-diff-utils.h | 536 a_size() const in a_size() function in abigail::diff_utils::d_path_vec 549 {return max_d() + abs((long long) a_size() - (long long) b_size());} in offset() 709 unsigned a_size, 917 if (x >= (int) v.a_size() in end_of_fr_d_path_in_k() 989 int a_size = a_end - a_begin; in end_of_frr_d_path_in_k_plus_delta() local 991 int delta = a_size - b_size; in end_of_frr_d_path_in_k_plus_delta() 1092 int a_size = a_end - a_begin, b_size = b_end - b_begin; in is_match_point() local 1095 || point.x () >= a_size in is_match_point() 1146 int a_size = a_end - a_begin; in compute_middle_snake() local 1147 int N = a_size; in compute_middle_snake() 1329 unsigned a_size = a_end - a_begin; ses_len() local 1492 int a_size = a_end - a_begin; compute_diff() local [all...] |
/third_party/skia/third_party/externals/libwebp/src/dec/ |
H A D | buffer_dec.c | 59 const uint64_t a_size = MIN_BUFFER_SIZE(width, height, a_stride); in CheckDecBuffer() local 71 ok &= (a_size <= buf->a_size); in CheckDecBuffer() 99 uint64_t uv_size = 0, a_size = 0, total_size; in AllocateBuffer() local 115 a_size = (uint64_t)a_stride * h; in AllocateBuffer() 118 total_size = size + 2 * uv_size + a_size; in AllocateBuffer() 140 buf->a_size = (size_t)a_size; in AllocateBuffer()
|
H A D | idec_dec.c | 719 uint8_t* a, size_t a_size, int a_stride) { in WebPINewYUVA() 725 luma_size = u_size = v_size = a_size = 0; in WebPINewYUVA() 734 if (a_size == 0 || a_stride == 0) return NULL; in WebPINewYUVA() 755 idec->output_.u.YUVA.a_size = a_size; in WebPINewYUVA() 716 WebPINewYUVA(uint8_t* luma, size_t luma_size, int luma_stride, uint8_t* u, size_t u_size, int u_stride, uint8_t* v, size_t v_size, int v_stride, uint8_t* a, size_t a_size, int a_stride) WebPINewYUVA() argument
|
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_opt_large_constants.c | 50 uint32_t a_size = a->constant_data_size; in var_info_cmp() local 55 } else if (a_size < b_size) { in var_info_cmp() 57 } else if (a_size > b_size) { in var_info_cmp() 59 } else if (a_size == 0) { in var_info_cmp() 63 return memcmp(a->constant_data, b->constant_data, a_size); in var_info_cmp()
|
/third_party/skia/third_party/externals/libwebp/src/enc/ |
H A D | picture_enc.c | 98 uint64_t y_size, uv_size, a_size, total_size; in WebPPictureAllocYUVA() local 115 a_size = (uint64_t)a_stride * height; in WebPPictureAllocYUVA() 117 total_size = y_size + a_size + 2 * uv_size; in WebPPictureAllocYUVA() 145 if (a_size > 0) { in WebPPictureAllocYUVA() 147 mem += a_size; in WebPPictureAllocYUVA()
|
/third_party/libabigail/src/ |
H A D | abg-diff-utils.cc | 43 /// @param a_size the size of abscissas. That is, the size of the 53 unsigned a_size, in point_is_valid_in_graph() 57 && p.x() < (int) a_size in point_is_valid_in_graph() 52 point_is_valid_in_graph(point& p, unsigned a_size, unsigned b_size) point_is_valid_in_graph() argument
|
/third_party/node/deps/openssl/openssl/crypto/ |
H A D | punycode.c | 326 size_t a_size = sizeof(a_ulabel); in ossl_a2ucompare() local 328 if (ossl_a2ulabel(a, a_ulabel, &a_size) <= 0) in ossl_a2ucompare()
|
/third_party/openssl/crypto/ |
H A D | punycode.c | 326 size_t a_size = sizeof(a_ulabel); in ossl_a2ucompare() local 328 if (ossl_a2ulabel(a, a_ulabel, &a_size) <= 0) in ossl_a2ucompare()
|
/third_party/python/Objects/ |
H A D | longobject.c | 2956 Py_ssize_t a_size, a_bits, shift_digits, shift_bits, x_size; in _PyLong_Frexp() local 2966 a_size = Py_ABS(Py_SIZE(a)); in _PyLong_Frexp() 2967 if (a_size == 0) { in _PyLong_Frexp() 2972 a_bits = bit_length_digit(a->ob_digit[a_size-1]); in _PyLong_Frexp() 2974 "if ((a_size - 1) * PyLong_SHIFT + a_bits > PY_SSIZE_T_MAX) ..." */ in _PyLong_Frexp() 2975 if (a_size >= (PY_SSIZE_T_MAX - 1) / PyLong_SHIFT + 1 && in _PyLong_Frexp() 2976 (a_size > (PY_SSIZE_T_MAX - 1) / PyLong_SHIFT + 1 || in _PyLong_Frexp() 2979 a_bits = (a_size - 1) * PyLong_SHIFT + a_bits; in _PyLong_Frexp() 2987 1 + a_size + (DBL_MANT_DIG + 2 - a_bits) // PyLong_SHIFT in _PyLong_Frexp() 2991 a_size in _PyLong_Frexp() 3986 Py_ssize_t a_size, b_size, shift, extra_bits, diff, x_size, x_bits; long_true_divide() local [all...] |
/third_party/vixl/src/ |
H A D | pool-manager-impl.h | 353 int a_size = a.label_base_->GetPoolObjectSizeInBytes(); in PoolObjectLessThan() local 355 if (a_size != b_size) return (a_size < b_size); in PoolObjectLessThan()
|
/third_party/skia/third_party/externals/libwebp/src/webp/ |
H A D | decode.h | 196 size_t a_size; // alpha-plane size member 314 uint8_t* a, size_t a_size, int a_stride);
|
/third_party/googletest/googletest/include/gtest/internal/ |
H A D | gtest-internal.h | 1138 void InitCopy(const Element* array, size_t a_size) { in InitCopy() argument 1139 Element* const copy = new Element[a_size]; in InitCopy() 1140 CopyArray(array, a_size, copy); in InitCopy() 1142 size_ = a_size; in InitCopy() 1147 void InitRef(const Element* array, size_t a_size) { in InitRef() argument 1149 size_ = a_size; in InitRef()
|
/third_party/mesa3d/src/gtest/include/gtest/internal/ |
H A D | gtest-internal.h | 1077 void InitCopy(const Element* array, size_t a_size) { in InitCopy() argument 1078 Element* const copy = new Element[a_size]; in InitCopy() 1079 CopyArray(array, a_size, copy); in InitCopy() 1081 size_ = a_size; in InitCopy() 1086 void InitRef(const Element* array, size_t a_size) { in InitRef() argument 1088 size_ = a_size; in InitRef()
|
/third_party/node/deps/googletest/include/gtest/internal/ |
H A D | gtest-internal.h | 1125 void InitCopy(const Element* array, size_t a_size) { in InitCopy() argument 1126 Element* const copy = new Element[a_size]; in InitCopy() 1127 CopyArray(array, a_size, copy); in InitCopy() 1129 size_ = a_size; in InitCopy() 1134 void InitRef(const Element* array, size_t a_size) { in InitRef() argument 1136 size_ = a_size; in InitRef()
|
/third_party/skia/third_party/externals/libwebp/examples/ |
H A D | dwebp.c | 159 output_buffer->u.YUVA.a_size = stride * h; in AllocateExternalBuffer() 160 tmp += output_buffer->u.YUVA.a_size; in AllocateExternalBuffer()
|
/third_party/skia/third_party/externals/libwebp/imageio/ |
H A D | webpdec.c | 210 output_buffer->u.YUVA.a_size = pic->height * pic->a_stride; in ReadWebP()
|
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | flow.c | 417 unsigned int a_size = a->size; in overlapping_memop() local 420 if (a_size + a_start <= b_start) in overlapping_memop()
|
/third_party/mesa3d/src/amd/compiler/ |
H A D | aco_insert_NOPs.cpp | 207 regs_intersect(PhysReg a_reg, unsigned a_size, PhysReg b_reg, unsigned b_size) in regs_intersect() argument 209 return a_reg > b_reg ? (a_reg - b_reg < b_size) : (b_reg - a_reg < a_size); in regs_intersect()
|
H A D | aco_lower_to_hw_instr.cpp | 1011 get_intersection_mask(int a_start, int a_size, int b_start, int b_size) in get_intersection_mask() argument 1015 if (intersection_start >= a_size || intersection_end == 0) in get_intersection_mask() 1018 uint32_t mask = u_bit_consecutive(0, a_size); in get_intersection_mask()
|
/third_party/python/Lib/test/ |
H A D | test_pydoc.py | 769 def a_size(self): member in PydocDocTest.test_method_aliases.A 775 b_size = A.a_size 791 | b_size = a_size(self) 801 | a_size(self) 831 b_size = a_size(self) 837 a_size(self)
|
/third_party/mesa3d/src/amd/llvm/ |
H A D | ac_llvm_build.c | 610 unsigned a_size = ac_get_llvm_num_components(a); in ac_build_concat() local 613 LLVMValueRef *elems = alloca((a_size + b_size) * sizeof(LLVMValueRef)); in ac_build_concat() 614 for (unsigned i = 0; i < a_size; i++) in ac_build_concat() 617 elems[a_size + i] = ac_llvm_extract_elem(ctx, b, i); in ac_build_concat() 619 return ac_build_gather_values(ctx, elems, a_size + b_size); in ac_build_concat()
|
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
H A D | gl4cEnhancedLayoutsTests.cpp | 10004 const GLuint a_size = a_type.GetActualAlignment(1 /* align */, false /* is_array*/); in test() local 10006 const GLuint b_offset = lcm(b_size, a_size); in test() 10008 const GLuint a_after_off = a_type.GetActualOffset(a_after_start, a_size); in test() 10010 const GLuint a_before_off = a_type.GetActualOffset(a_before_start, a_size); in test() 10019 if ((b_offset > a_before_off) && (b_offset < a_before_off + a_size)) in test()
|