Home
last modified time | relevance | path

Searched refs:xlen (Results 1 - 25 of 31) sorted by relevance

12

/third_party/node/deps/openssl/openssl/ssl/
H A Dt1_trce.c710 size_t xlen, share_len; in ssl_print_extension() local
721 xlen = extlen; in ssl_print_extension()
722 return ssl_trace_list(bio, indent + 2, ext, xlen, 1, ssl_mfl_tbl); in ssl_print_extension()
727 xlen = ext[0]; in ssl_print_extension()
728 if (extlen != xlen + 1) in ssl_print_extension()
730 return ssl_trace_list(bio, indent + 2, ext + 1, xlen, 1, ssl_point_tbl); in ssl_print_extension()
735 xlen = (ext[0] << 8) | ext[1]; in ssl_print_extension()
736 if (extlen != xlen + 2) in ssl_print_extension()
738 return ssl_trace_list(bio, indent + 2, ext + 2, xlen, 2, ssl_groups_tbl); in ssl_print_extension()
742 xlen in ssl_print_extension()
1287 size_t xlen; ssl_print_cert_request() local
[all...]
/third_party/openssl/ssl/
H A Dt1_trce.c710 size_t xlen, share_len; in ssl_print_extension() local
721 xlen = extlen; in ssl_print_extension()
722 return ssl_trace_list(bio, indent + 2, ext, xlen, 1, ssl_mfl_tbl); in ssl_print_extension()
727 xlen = ext[0]; in ssl_print_extension()
728 if (extlen != xlen + 1) in ssl_print_extension()
730 return ssl_trace_list(bio, indent + 2, ext + 1, xlen, 1, ssl_point_tbl); in ssl_print_extension()
735 xlen = (ext[0] << 8) | ext[1]; in ssl_print_extension()
736 if (extlen != xlen + 2) in ssl_print_extension()
738 return ssl_trace_list(bio, indent + 2, ext + 2, xlen, 2, ssl_groups_tbl); in ssl_print_extension()
742 xlen in ssl_print_extension()
1287 size_t xlen; ssl_print_cert_request() local
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/
H A Daes-gcm.c103 static void ghash(const u8 *h, const u8 *x, size_t xlen, u8 *y) in ghash() argument
109 m = xlen / 16; in ghash()
123 if (x + xlen > xpos) { in ghash()
125 size_t last = x + xlen - xpos; in ghash()
143 static void aes_gctr(void *aes, const u8 *icb, const u8 *x, size_t xlen, u8 *y) in aes_gctr() argument
150 if (xlen == 0) in aes_gctr()
153 n = xlen / 16; in aes_gctr()
165 last = x + xlen - xpos; in aes_gctr()
H A Dfips_prf_internal.c17 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) in fips186_2_prf() argument
39 m = xlen / 40; in fips186_2_prf()
H A Dfips_prf_wolfssl.c36 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) in fips186_2_prf() argument
58 m = xlen / 40; in fips186_2_prf()
H A Dfips_prf_openssl.c48 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) in fips186_2_prf() argument
70 m = xlen / 40; in fips186_2_prf()
H A Dcrypto.h61 * @xlen: Output length in bytes
69 size_t xlen);
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/
H A Daes-gcm.c103 static void ghash(const u8 *h, const u8 *x, size_t xlen, u8 *y) in ghash() argument
109 m = xlen / 16; in ghash()
123 if (x + xlen > xpos) { in ghash()
125 size_t last = x + xlen - xpos; in ghash()
143 static void aes_gctr(void *aes, const u8 *icb, const u8 *x, size_t xlen, u8 *y) in aes_gctr() argument
150 if (xlen == 0) in aes_gctr()
153 n = xlen / 16; in aes_gctr()
165 last = x + xlen - xpos; in aes_gctr()
H A Dfips_prf_internal.c17 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) in fips186_2_prf() argument
39 m = xlen / 40; in fips186_2_prf()
H A Dfips_prf_wolfssl.c36 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) in fips186_2_prf() argument
58 m = xlen / 40; in fips186_2_prf()
H A Dfips_prf_openssl.c48 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) in fips186_2_prf() argument
70 m = xlen / 40; in fips186_2_prf()
H A Dcrypto.h61 * @xlen: Output length in bytes
69 size_t xlen);
/third_party/ltp/testcases/network/lib6/
H A Dasapi_01.c246 int offset, len, xlen; in client() local
284 xlen = (cstab[i].cs_sndresult < 0) ? -1 : len; in client()
285 if (TEST_RETURN != xlen) { in client()
289 TEST_RETURN, xlen); in client()
323 ph.ph_len = htonl(xlen); in client()
325 cs = csum(~cs, rpbuf, xlen); in client()
326 if (!csum(0, rpbuf, xlen)) { in client()
/third_party/libwebsockets/lib/secure-streams/
H A Dsecure-streams-process.c614 unsigned int xlen = conn->ss->conmon_len; in callback_ss_proxy() local
616 if (xlen > sizeof(s) - 3) in callback_ss_proxy()
617 xlen = sizeof(s) - 3; in callback_ss_proxy()
621 lws_ser_wu16be(&p[1], (uint16_t)xlen); in callback_ss_proxy()
622 memcpy(&p[3], conn->ss->conmon_json, xlen); in callback_ss_proxy()
625 n = (int)(xlen + 3); in callback_ss_proxy()
/third_party/libwebsockets/lib/tls/openssl/
H A Dopenssl-x509.c88 long xlen, loc; in lws_tls_openssl_cert_info() local
219 xlen = val->length; in lws_tls_openssl_cert_info()
221 buf->ns.len = (int)xlen; in lws_tls_openssl_cert_info()
327 if (ASN1_get_object(&dp, &xlen, in lws_tls_openssl_cert_info()
336 buf->ns.len = (int)xlen; in lws_tls_openssl_cert_info()
/third_party/lame/libmp3lame/
H A Dtakehiro.c453 unsigned int const linbits = ht[t1].xlen * 65536u + ht[t2].xlen; in count_bit_ESC()
515 const unsigned int xlen = ht[t1].xlen; in count_bit_noESC_from2() local
522 sum += table[ x0 * xlen + x1 ]; in count_bit_noESC_from2()
546 const unsigned int xlen = ht[t1].xlen; in count_bit_noESC_from3() local
555 unsigned int x = x0 * xlen + x1; in count_bit_noESC_from3()
H A Dtables.h71 const unsigned int xlen; /* max. x-index+ */ member
73 const uint16_t *table; /* pointer to array[xlen][ylen] */
74 const uint8_t *hlen; /* pointer to array[xlen][ylen] */
H A Dbitstream.c565 unsigned int const linbits = h->xlen; in Huffmancode()
575 unsigned int xlen = h->xlen; in Huffmancode() local
607 xlen = 16; in Huffmancode()
619 x1 = x1 * xlen + x2; in Huffmancode()
/third_party/node/deps/v8/src/execution/riscv64/
H A Dsimulator-riscv64.h89 #define xlen 32 macro
93 #define xlen 64
100 #define sext_xlen(x) (((sreg_t)(x) << (64 - xlen)) >> (64 - xlen))
101 #define zext_xlen(x) (((reg_t)(x) << (64 - xlen)) >> (64 - xlen))
/third_party/pulseaudio/speex/libspeexdsp/
H A Dresample.c937 const spx_uint32_t xlen = st->mem_alloc_size - filt_offs; in speex_resampler_process_int() local
944 spx_uint32_t ichunk = (ilen > xlen) ? xlen : ilen; in speex_resampler_process_int()
979 const spx_uint32_t xlen = st->mem_alloc_size - (st->filt_len - 1); in speex_resampler_process_float() local
992 spx_uint32_t ichunk = (ilen > xlen) ? xlen : ilen; in speex_resampler_process_float()
/third_party/node/deps/openssl/openssl/ssl/statem/
H A Dstatem_dtls.c276 size_t xlen; in dtls1_do_write() local
289 xlen = written; in dtls1_do_write()
292 xlen = written - DTLS1_HM_HEADER_LENGTH; in dtls1_do_write()
295 if (!ssl3_finish_mac(s, p, xlen)) in dtls1_do_write()
/third_party/openssl/ssl/statem/
H A Dstatem_dtls.c280 size_t xlen; in dtls1_do_write() local
293 xlen = written; in dtls1_do_write()
296 xlen = written - DTLS1_HM_HEADER_LENGTH; in dtls1_do_write()
299 if (!ssl3_finish_mac(s, p, xlen)) in dtls1_do_write()
/third_party/mksh/
H A Dfuncs.c724 size_t xlen = strlen(xcwd); in do_whence() local
726 char *xp = alloc(xlen + 1 + clen, ATEMP); in do_whence()
728 memcpy(xp, xcwd, xlen); in do_whence()
729 if (mksh_cdirsep(xp[xlen - 1])) in do_whence()
730 --xlen; in do_whence()
731 xp[xlen++] = '/'; in do_whence()
732 memcpy(xp + xlen, tp->val.s, clen); in do_whence()
/third_party/node/deps/v8/src/bigint/
H A Dmul-fft.cc639 bool ShouldBeNegative(const digit_t* x, int xlen, digit_t threshold, int s) {
641 for (int i = 2 * s + 1; i < xlen; i++) {
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
H A DAPInt.cpp326 /// the integer array dest. Note that dest's size must be >= xlen + ylen.
328 static void mul(uint64_t dest[], uint64_t x[], unsigned xlen, uint64_t y[], in mul() argument
330 dest[xlen] = mul_1(dest, x, xlen, y[0]); in mul()
334 for (unsigned j = 0; j < xlen; ++j) { in mul()
354 dest[i+xlen] = carry; in mul()

Completed in 32 milliseconds

12