Searched refs:dtable (Results 1 - 6 of 6) sorted by relevance
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/ |
H A D | sae_pk.c | 119 u8 dtable[256]; in d_check_char() local 123 os_memset(dtable, 0x80, 256); in d_check_char() 125 dtable[(u8) sae_pk_base32_table[i]] = i; in d_check_char() 130 c = dtable[(u8) str[j]]; in d_check_char() 147 u8 dtable[256]; in sae_pk_valid_password() local 149 os_memset(dtable, 0x80, 256); in sae_pk_valid_password() 151 dtable[(u8) sae_pk_base32_table[i]] = i; in sae_pk_valid_password() 169 if (dtable[(u8) pw[pos]] == 0x80) { in sae_pk_valid_password() 184 sec_1b = dtable[(u8) pw[0]] & BIT(4); in sae_pk_valid_password() 186 if (sec_1b != (dtable[(u in sae_pk_valid_password() 252 u8 dtable[256], *out, *pos, tmp; sae_pk_base32_decode() local [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/ |
H A D | base64.c | 90 unsigned char dtable[256], *out, *pos, block[4], tmp; in base64_gen_decode() local 95 os_memset(dtable, 0x80, 256); in base64_gen_decode() 97 dtable[table[i]] = (unsigned char) i; in base64_gen_decode() 98 dtable['='] = 0; in base64_gen_decode() 102 if (dtable[src[i]] != 0x80) in base64_gen_decode() 123 tmp = dtable[val]; in base64_gen_decode()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/ |
H A D | base64.c | 92 unsigned char dtable[256], *out, *pos, block[4], tmp; in base64_gen_decode() local 97 os_memset(dtable, 0x80, 256); in base64_gen_decode() 99 dtable[(unsigned char) table[i]] = (unsigned char) i; in base64_gen_decode() 100 dtable['='] = 0; in base64_gen_decode() 104 if (dtable[(unsigned char) src[i]] != 0x80) in base64_gen_decode() 125 tmp = dtable[val]; in base64_gen_decode()
|
/third_party/node/deps/ngtcp2/nghttp3/lib/ |
H A D | nghttp3_qpack.c | 853 rv = nghttp3_ringbuf_init(&ctx->dtable, len2, sizeof(nghttp3_qpack_entry *), in qpack_context_init() 873 size_t i, len = nghttp3_ringbuf_len(&ctx->dtable); in qpack_context_free() 876 ent = *(nghttp3_qpack_entry **)nghttp3_ringbuf_get(&ctx->dtable, i); in qpack_context_free() 880 nghttp3_ringbuf_free(&ctx->dtable); in qpack_context_free() 983 nghttp3_ringbuf *dtable = &encoder->ctx.dtable; in nghttp3_qpack_encoder_shrink_dtable() local 998 len = nghttp3_ringbuf_len(dtable); in nghttp3_qpack_encoder_shrink_dtable() 999 ent = *(nghttp3_qpack_entry **)nghttp3_ringbuf_get(dtable, len - 1); in nghttp3_qpack_encoder_shrink_dtable() 1007 nghttp3_ringbuf_pop_back(dtable); in nghttp3_qpack_encoder_shrink_dtable() 1183 /* TODO If max_cnt == 0, no reference is made to dtable in nghttp3_qpack_encoder_encode() 1344 nghttp3_ringbuf *dtable = &encoder->ctx.dtable; qpack_encoder_can_index() local [all...] |
H A D | nghttp3_qpack.h | 148 /* dtable is a dynamic table */ 149 nghttp3_ringbuf dtable; member 152 /* dtable_size is abstracted buffer size of dtable as described in 153 the spec. This is the sum of length of name/value in dtable +
|
/third_party/ffmpeg/libavcodec/ |
H A D | huffyuvdec.c | 593 #define GET_VLC_DUAL(dst0, dst1, name, gb, dtable, table1, table2, \ 597 int code, n = dtable[index].len; \ 607 code = dtable[index].sym; \
|
Completed in 8 milliseconds