Searched refs:len_b (Results 1 - 12 of 12) sorted by relevance

/external/libvpx/libvpx/tools/
H A Ddiff.py44 def __init__(self, header, file_a, file_b, start_a, len_a, start_b, len_b):
47 self.right = DiffLines(file_b, start_b, len_b)
112 len_b = int(diffrange.group(6))
115 len_b = int(diffrange.group(4))
118 hunk = DiffHunk(header, a, b, start_a, len_a, start_b, len_b)
/external/sqlite/android/
H A DPhoneNumberUtils.cpp287 size_t len_b = 0; local
296 len_b = strlen(b);
302 size_t tmp_len_b = len_b;
305 int ccc_b = tryGetCountryCallingCode(b, len_b, &tmp_b, &tmp_len_b, accept_thailand_case);
329 tryGetTrunkPrefixOmittedStr(b, len_b, &tmp_b, &tmp_len_b);
340 len_b = tmp_len_b;
344 int i_b = len_b - 1;
/external/python/cpython3/Lib/email/
H A D_encoded_words.py54 'len_b',
129 def len_b(bstring): function
189 'b': len_b,
/external/mmc-utils/3rdparty/hmac_sha/
H A Dsha2.c396 unsigned int len_b; local
405 len_b = (ctx->tot_len + ctx->len) << 3;
410 UNPACK32(len_b, ctx->block + pm_len - 4);
593 unsigned int len_b; local
602 len_b = (ctx->tot_len + ctx->len) << 3;
607 UNPACK32(len_b, ctx->block + pm_len - 4);
695 unsigned int len_b; local
704 len_b = (ctx->tot_len + ctx->len) << 3;
709 UNPACK32(len_b, ctx->block + pm_len - 4);
795 unsigned int len_b; local
[all...]
/external/avb/libavb/
H A Davb_sha256.c357 unsigned int len_b; local
365 len_b = (ctx->tot_len + ctx->len) << 3;
370 UNPACK32(len_b, ctx->block + pm_len - 4);
H A Davb_sha512.c355 unsigned int len_b; local
364 len_b = (ctx->tot_len + ctx->len) << 3;
369 UNPACK32(len_b, ctx->block + pm_len - 4);
/external/vboot_reference/firmware/lib/cryptolib/
H A Dsha256.c280 unsigned int len_b; local
288 len_b = (ctx->tot_len + ctx->len) << 3;
293 UNPACK32(len_b, ctx->block + pm_len - 4);
H A Dsha512.c303 unsigned int len_b; local
312 len_b = (ctx->tot_len + ctx->len) << 3;
317 UNPACK32(len_b, ctx->block + pm_len - 4);
/external/python/cpython2/Modules/
H A Doperator.c252 Py_ssize_t len_a, Py_ssize_t len_b)
265 length = len_b;
251 _tscmp(const unsigned char *a, const unsigned char *b, Py_ssize_t len_a, Py_ssize_t len_b) argument
/external/python/cpython3/Modules/
H A D_operator.c177 Py_ssize_t len_a, Py_ssize_t len_b)
190 length = len_b;
176 _tscmp(const unsigned char *a, const unsigned char *b, Py_ssize_t len_a, Py_ssize_t len_b) argument
/external/python/cpython3/Objects/
H A Dbytesobject.c1552 Py_ssize_t len_a, len_b; local
1614 len_b = Py_SIZE(b);
1615 min_len = Py_MIN(len_a, len_b);
1624 c = (len_a < len_b) ? -1 : (len_a > len_b) ? 1 : 0;
/external/python/cpython2/Objects/
H A Dstringobject.c1195 Py_ssize_t len_a, len_b; local
1226 len_a = Py_SIZE(a); len_b = Py_SIZE(b);
1227 min_len = (len_a < len_b) ? len_a : len_b;
1235 c = (len_a < len_b) ? -1 : (len_a > len_b) ? 1 : 0;

Completed in 531 milliseconds