| /third_party/astc-encoder/Source/ |
| H A D | stb_image.h | 1650 int blen = (int) (s->img_buffer_end - s->img_buffer); in stbi__skip() local 1651 if (blen < n) { in stbi__skip() 1653 (s->io.skip)(s->io_user_data, n - blen); in stbi__skip() 1667 int blen = (int) (s->img_buffer_end - s->img_buffer); in stbi__getn() local 1668 if (blen < n) { in stbi__getn() 1671 memcpy(buffer, s->img_buffer, blen); in stbi__getn() 1673 count = (s->io.read)(s->io_user_data, (char*) buffer + blen, n - blen); in stbi__getn() 1674 res = (count == (n-blen)); in stbi__getn()
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/ |
| H A D | wps_supplicant.c | 374 size_t blen = cred->cred_attr_len * 2 + 1; in wpa_supplicant_wps_cred() local 375 char *buf = os_malloc(blen); in wpa_supplicant_wps_cred() 377 wpa_snprintf_hex(buf, blen, in wpa_supplicant_wps_cred()
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/ |
| H A D | wps_supplicant.c | 385 size_t blen = cred->cred_attr_len * 2 + 1; in wpa_supplicant_wps_cred() local 386 char *buf = os_malloc(blen); in wpa_supplicant_wps_cred() 388 wpa_snprintf_hex(buf, blen, in wpa_supplicant_wps_cred()
|
| /third_party/toybox/porting/liteos_a/toys/posix/ |
| H A D | ps.c | 1078 // Write FIELD list into display header string (truncating at blen), 1080 static long long get_headers(struct ofields *field, char *buf, int blen) in get_headers() argument 1086 len += snprintf(buf+len, blen-len, " %*s"+!bits, field->len, in get_headers()
|
| /third_party/toybox/toys/posix/ |
| H A D | ps.c | 1121 // Write FIELD list into display header string (truncating at blen), 1123 static long long get_headers(struct ofields *field, char *buf, int blen) in get_headers() argument 1129 len += snprintf(buf+len, blen-len, " %*s"+!bits, field->len, in get_headers()
|
| /third_party/ffmpeg/libavcodec/ |
| H A D | diracdec.c | 1562 static int weight(int i, int blen, int offset) in weight() argument 1569 else if (i > blen-1 - 2*offset) in weight() 1570 return ROLLOFF(blen-1 - i); in weight()
|
| /third_party/toybox/toys/pending/ |
| H A D | ip.c | 162 void *buf, int blen) in send_nlmesg() 176 blen = sizeof(req); in send_nlmesg() 178 if (send(TT.sockfd , (void*)buf, blen, 0) < 0) in send_nlmesg() 161 send_nlmesg(int type, int flags, int family, void *buf, int blen) send_nlmesg() argument
|
| /third_party/icu/icu4c/source/test/cintltst/ |
| H A D | cnumtst.c | 3651 int32_t ppos, blen; in TestParseWithEmptyCurr() local 3657 blen = unum_parseDecimal(unum, text, -1, &ppos, bbuf, kBBufMax, &status); in TestParseWithEmptyCurr() 3660 } else if (ppos != 1 || blen != 1 || bbuf[0] != '3') { in TestParseWithEmptyCurr() 3661 log_err("unum_parseDecimal expect ppos 1, blen 1, str 3; get %d, %d, %s\n", ppos, blen, bbuf); in TestParseWithEmptyCurr()
|
| H A D | cmsccoll.c | 1202 uint32_t i, blen = 0; 1209 blen = u_unescape(caseBitData[i], b, 256); 1210 res = ucol_uprv_getCaseBits(UCA, b, blen, &status);
|
| /third_party/backends/backend/ |
| H A D | umax1220u-common.c | 419 bescape (const unsigned char *data, int dlen, unsigned char *buf, int blen) in bescape() argument 424 i = blen; /* Eliminate compiler warning about unused param */ in bescape()
|
| H A D | hp5590.c | 2425 SANE_Int blen = MY_MIN(max_lines - shift1, (SANE_Int) *n_lines1_ptr); in append_and_move_lines() local 2428 for (SANE_Int i = 0; i < blen; ++i) { in append_and_move_lines()
|
| /third_party/curl/lib/ |
| H A D | urldata.h | 821 CURLcode (*write_resp)(struct Curl_easy *data, const char *buf, size_t blen,
|
| H A D | ftp.c | 2072 char *buf, size_t blen) in client_write_header() 2091 result = Curl_client_write(data, CLIENTWRITE_HEADER, buf, blen); in client_write_header() 2071 client_write_header(struct Curl_easy *data, char *buf, size_t blen) client_write_header() argument
|
| /third_party/libcoap/src/ |
| H A D | coap_block.c | 398 const uint8_t *b, size_t blen) { in full_match() 399 return alen == blen && (alen == 0 || memcmp(a, b, alen) == 0); in full_match() 397 full_match(const uint8_t *a, size_t alen, const uint8_t *b, size_t blen) full_match() argument
|
| /third_party/python/Modules/ |
| H A D | posixmodule.c | 10016 Py_ssize_t blen = sf.headers[i].iov_len; in os_sendfile_impl() local 10018 if (sbytes >= OFF_T_MAX - blen) { in os_sendfile_impl() 10023 sbytes += blen; in os_sendfile_impl()
|
| /third_party/mbedtls/library/ |
| H A D | ecp_curves_new.c | 4527 const mbedtls_mpi_uint *b, size_t blen, in ecp_group_load() 4537 ecp_mpi_load(&grp->B, b, blen); in ecp_group_load() 4524 ecp_group_load(mbedtls_ecp_group *grp, const mbedtls_mpi_uint *p, size_t plen, const mbedtls_mpi_uint *a, size_t alen, const mbedtls_mpi_uint *b, size_t blen, const mbedtls_mpi_uint *gx, size_t gxlen, const mbedtls_mpi_uint *gy, size_t gylen, const mbedtls_mpi_uint *n, size_t nlen, const mbedtls_ecp_point *T) ecp_group_load() argument
|
| H A D | ecp_curves.c | 4517 const mbedtls_mpi_uint *b, size_t blen, in ecp_group_load() 4527 ecp_mpi_load(&grp->B, b, blen); in ecp_group_load() 4514 ecp_group_load(mbedtls_ecp_group *grp, const mbedtls_mpi_uint *p, size_t plen, const mbedtls_mpi_uint *a, size_t alen, const mbedtls_mpi_uint *b, size_t blen, const mbedtls_mpi_uint *gx, size_t gxlen, const mbedtls_mpi_uint *gy, size_t gylen, const mbedtls_mpi_uint *n, size_t nlen, const mbedtls_ecp_point *T) ecp_group_load() argument
|
| /third_party/skia/third_party/externals/sfntly/java/lib/ |
| H A D | icu4j-4_8_1_1.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/ibm/
com/ibm/icu/
com/ibm/icu/impl/
... |