/third_party/flutter/skia/third_party/externals/wuffs/script/ |
D | wuffs-deflate-decoder-decode-huffman.c | 316 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/ |
D | decode_huffman_slow.wuffs | 18 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 …]
|
D | decode_huffman_fast.wuffs | 25 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 …]
|
D | decode_deflate.wuffs | 338 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/ |
D | localcharset.c | 86 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()
|
D | setlocale.c | 262 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/ |
D | Gfind_proc_info-lsb.c | 41 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/ |
D | vbo_minmax_index.c | 183 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/ |
D | sfwoff2.c | 1518 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/ |
D | sfwoff2.c | 1507 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/ |
D | dwarf.h | 392 struct table_entry *index;
|
/third_party/chromium/patch/ |
D | 0001-cve.patch | 22794 - 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 );
|