Home
last modified time | relevance | path

Searched refs:table_entry (Results 1 – 12 of 12) sorted by relevance

/third_party/flutter/skia/third_party/externals/wuffs/script/
Dwuffs-deflate-decoder-decode-huffman.c316 uint32_t table_entry = self->private_data.f_huffs[0][bits & lmask]; in c_wuffs_deflate__decoder__decode_huffman_fast() local
318 uint32_t n = table_entry & 0x0F; in c_wuffs_deflate__decoder__decode_huffman_fast()
321 if ((table_entry >> 31) != 0) { in c_wuffs_deflate__decoder__decode_huffman_fast()
323 *pdst++ = (uint8_t)(table_entry >> 8); in c_wuffs_deflate__decoder__decode_huffman_fast()
326 if ((table_entry >> 30) != 0) { in c_wuffs_deflate__decoder__decode_huffman_fast()
330 if ((table_entry >> 29) != 0) { in c_wuffs_deflate__decoder__decode_huffman_fast()
335 if ((table_entry >> 24) != 0x10) { in c_wuffs_deflate__decoder__decode_huffman_fast()
340 uint32_t top = (table_entry >> 8) & 0xFFFF; in c_wuffs_deflate__decoder__decode_huffman_fast()
341 uint32_t mask = MASK((table_entry >> 4) & 0x0F); in c_wuffs_deflate__decoder__decode_huffman_fast()
342 table_entry = self->private_data.f_huffs[0][top + (bits & mask)]; in c_wuffs_deflate__decoder__decode_huffman_fast()
[all …]
/third_party/flutter/skia/third_party/externals/wuffs/std/deflate/
Ddecode_huffman_slow.wuffs18 var table_entry base.u32
54 table_entry = this.huffs[0][bits & lmask]
55 table_entry_n_bits = table_entry & 0x0F
67 if (table_entry >> 31) <> 0 {
69 args.dst.write_u8?(x:((table_entry >> 8) & 0xFF) as base.u8)
71 } else if (table_entry >> 30) <> 0 {
73 } else if (table_entry >> 29) <> 0 {
77 } else if (table_entry >> 28) <> 0 {
79 redir_top = (table_entry >> 8) & 0xFFFF
80 redir_mask = ((1 as base.u32) << ((table_entry >> 4) & 0x0F)) - 1
[all …]
Ddecode_huffman_fast.wuffs25 var table_entry base.u32
95 table_entry = this.huffs[0][bits & lmask]
96 table_entry_n_bits = table_entry & 0x0F
100 if (table_entry >> 31) <> 0 {
102 args.dst.write_fast_u8!(x:((table_entry >> 8) & 0xFF) as base.u8)
104 } else if (table_entry >> 30) <> 0 {
107 } else if (table_entry >> 29) <> 0 {
111 } else if (table_entry >> 28) <> 0 {
131 redir_top = (table_entry >> 8) & 0xFFFF
132 redir_mask = ((1 as base.u32) << ((table_entry >> 4) & 0x0F)) - 1
[all …]
Ddecode_deflate.wuffs338 var table_entry base.u32
405 table_entry = this.huffs[0][bits & mask]
406 table_entry_n_bits = table_entry & 15
419 if (table_entry >> 24) <> 0x80 {
422 table_entry = (table_entry >> 8) & 0xFF
425 if table_entry < 16 {
426 this.code_lengths[i] = table_entry as base.u8
435 if table_entry == 16 {
443 } else if table_entry == 17 {
448 } else if table_entry == 18 {
/third_party/gettext/gettext-runtime/intl/
Dlocalcharset.c86 struct table_entry struct
93 static const struct table_entry alias_table[] = argument
577 struct table_entry struct
584 static const struct table_entry locale_table[] = argument
1030 const struct table_entry * const table = alias_table; in locale_charset()
1032 sizeof (alias_table) / sizeof (struct table_entry); in locale_charset()
1104 const struct table_entry * const table = locale_table; in locale_charset()
1106 sizeof (locale_table) / sizeof (struct table_entry); in locale_charset()
Dsetlocale.c262 struct table_entry struct
267 static const struct table_entry language_table[] = argument
439 static const struct table_entry country_table[] =
590 search (const struct table_entry *table, size_t table_size, const char *string, in search()
/third_party/libunwind/src/dwarf/
DGfind_proc_info-lsb.c41 struct table_entry struct
385 struct table_entry *e = &fdesc->index[count]; in debug_frame_index_make()
406 struct table_entry *a = fdesc->index; in debug_frame_index_sort()
407 struct table_entry t; in debug_frame_index_sort()
745 assert (sizeof (struct table_entry) % sizeof (unw_word_t) == 0); in dwarf_callback()
746 di->u.rti.table_len = (fde_count * sizeof (struct table_entry) in dwarf_callback()
833 static inline const struct table_entry *
834 lookup (const struct table_entry *table, size_t table_size, int32_t rel_ip) in lookup()
836 unsigned long table_len = table_size / sizeof (struct table_entry); in lookup()
837 const struct table_entry *e = NULL; in lookup()
[all …]
/third_party/mesa3d/src/mesa/vbo/
Dvbo_minmax_index.c183 struct hash_entry *table_entry; in vbo_minmax_cache_store() local
211 table_entry = _mesa_hash_table_search_pre_hashed(bufferObj->MinMaxCache, in vbo_minmax_cache_store()
213 if (table_entry) { in vbo_minmax_cache_store()
222 table_entry = _mesa_hash_table_insert_pre_hashed(bufferObj->MinMaxCache, in vbo_minmax_cache_store()
224 if (!table_entry) in vbo_minmax_cache_store()
/third_party/freetype/src/sfnt/
Dsfwoff2.c1518 FT_Byte* table_entry = NULL; in reconstruct_font() local
1560 if ( FT_NEW_ARRAY( table_entry, 16 ) ) in reconstruct_font()
1680 buf_cursor = &table_entry[0]; in reconstruct_font()
1686 WRITE_SFNT_BUF_AT( table_entry_offset, table_entry, 16 ); in reconstruct_font()
1689 font_checksum += compute_ULong_sum( table_entry, 16 ); in reconstruct_font()
1725 FT_FREE( table_entry ); in reconstruct_font()
1738 FT_FREE( table_entry ); in reconstruct_font()
/third_party/skia/third_party/externals/freetype/src/sfnt/
Dsfwoff2.c1507 FT_Byte* table_entry = NULL; in reconstruct_font() local
1549 if ( FT_NEW_ARRAY( table_entry, 16 ) ) in reconstruct_font()
1669 buf_cursor = &table_entry[0]; in reconstruct_font()
1675 WRITE_SFNT_BUF_AT( table_entry_offset, table_entry, 16 ); in reconstruct_font()
1678 font_checksum += compute_ULong_sum( table_entry, 16 ); in reconstruct_font()
1714 FT_FREE( table_entry ); in reconstruct_font()
1727 FT_FREE( table_entry ); in reconstruct_font()
/third_party/libunwind/include/
Ddwarf.h392 struct table_entry *index;
/third_party/chromium/patch/
D0001-cve.patch22794 - FT_Byte* table_entry = NULL;
22798 + FT_Byte table_entry[16];
22807 - if ( FT_NEW_ARRAY( table_entry, 16 ) )
22817 - FT_FREE( table_entry );
22825 - FT_FREE( table_entry );