Home
last modified time | relevance | path

Searched refs:blen (Results 101 - 118 of 118) sorted by relevance

12345

/third_party/astc-encoder/Source/
H A Dstb_image.h1650 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 Dwps_supplicant.c374 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 Dwps_supplicant.c385 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 Dps.c1078 // 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 Dps.c1121 // 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 Ddiracdec.c1562 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 Dip.c162 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 Dcnumtst.c3651 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 Dcmsccoll.c1202 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 Dumax1220u-common.c419 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 Dhp5590.c2425 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 Durldata.h821 CURLcode (*write_resp)(struct Curl_easy *data, const char *buf, size_t blen,
H A Dftp.c2072 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 Dcoap_block.c398 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 Dposixmodule.c10016 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 Decp_curves_new.c4527 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 Decp_curves.c4517 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 Dicu4j-4_8_1_1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/ibm/ com/ibm/icu/ com/ibm/icu/impl/ ...

Completed in 95 milliseconds

12345