Home
last modified time | relevance | path

Searched refs:count_buf (Results 1 – 5 of 5) sorted by relevance

/external/wpa_supplicant_8/src/crypto/
Dsha1-pbkdf2.c20 unsigned char count_buf[4]; in pbkdf2_sha1_f() local
27 addr[1] = count_buf; in pbkdf2_sha1_f()
36 count_buf[0] = (count >> 24) & 0xff; in pbkdf2_sha1_f()
37 count_buf[1] = (count >> 16) & 0xff; in pbkdf2_sha1_f()
38 count_buf[2] = (count >> 8) & 0xff; in pbkdf2_sha1_f()
39 count_buf[3] = count & 0xff; in pbkdf2_sha1_f()
/external/libaom/libaom/av1/encoder/
Dintra_mode_search.c828 int count_buf[1 << 12]; // Maximum (1 << 12) color levels. in rd_pick_palette_intra_sby() local
832 count_buf); in rd_pick_palette_intra_sby()
834 colors = av1_count_colors(src, src_stride, rows, cols, count_buf); in rd_pick_palette_intra_sby()
883 if (count_buf[j] > max_count) { in rd_pick_palette_intra_sby()
884 max_count = count_buf[j]; in rd_pick_palette_intra_sby()
889 count_buf[top_colors[i]] = 0; in rd_pick_palette_intra_sby()
1033 int count_buf[1 << 12]; // Maximum (1 << 12) color levels. in rd_pick_palette_intra_sbuv() local
1036 seq_params->bit_depth, count_buf); in rd_pick_palette_intra_sbuv()
1038 seq_params->bit_depth, count_buf); in rd_pick_palette_intra_sbuv()
1040 colors_u = av1_count_colors(src_u, src_stride, rows, cols, count_buf); in rd_pick_palette_intra_sbuv()
[all …]
Dencoder.c4031 int count_buf[1 << 12]; // Maximum (1 << 12) color levels. in av1_set_screen_content_options() local
4035 count_buf) in av1_set_screen_content_options()
4036 : av1_count_colors(this_src, stride, blk_w, blk_h, count_buf); in av1_set_screen_content_options()
/external/mesa3d/src/freedreno/vulkan/
Dtu_cmd_buffer.c3639 TU_FROM_HANDLE(tu_buffer, count_buf, countBuffer); in tu_CmdDrawIndirectCount()
3659 tu_cs_emit_qw(cs, count_buf->bo->iova + count_buf->bo_offset + countBufferOffset); in tu_CmdDrawIndirectCount()
3674 TU_FROM_HANDLE(tu_buffer, count_buf, countBuffer); in tu_CmdDrawIndexedIndirectCount()
3691 tu_cs_emit_qw(cs, count_buf->bo->iova + count_buf->bo_offset + countBufferOffset); in tu_CmdDrawIndexedIndirectCount()
/external/wpa_supplicant_8/src/common/
Ddpp_crypto.c292 u8 count_buf[4]; in dpp_pbkdf2_f() local
298 addr[1] = count_buf; in dpp_pbkdf2_f()
307 WPA_PUT_BE32(count_buf, count); in dpp_pbkdf2_f()