| /xsrc/external/mit/brotli/dist/c/enc/ |
| H A D | compress_fragment_two_pass.h | 29 If "is_last" is 1, emits an additional empty last meta-block. 31 REQUIRES: "input_size" is greater than zero, or "is_last" is 1. 42 BROTLI_BOOL is_last,
|
| H A D | compress_fragment.h | 26 If "is_last" is 1, emits an additional empty last meta-block. 30 If "is_last" is 0, they are updated to reflect the statistics 36 command and distance prefix codes. If "is_last" is 0, these are also 39 REQUIRES: "input_size" is greater than zero, or "is_last" is 1. 48 BROTLI_BOOL is_last,
|
| H A D | brotli_bit_stream.h | 46 uint8_t prev_byte, uint8_t prev_byte2, BROTLI_BOOL is_last, 57 BROTLI_BOOL is_last, const BrotliEncoderParams* params, 67 BROTLI_BOOL is_last, const BrotliEncoderParams* params,
|
| H A D | encode.c | 558 const BROTLI_BOOL is_last, 588 BrotliStoreUncompressedMetaBlock(is_last, data, 599 bytes, mask, is_last, params, 605 bytes, mask, is_last, params, 641 is_last, 656 BrotliStoreUncompressedMetaBlock(is_last, data, 953 data. If |is_last| or |force_flush| is BROTLI_TRUE, an output meta-block is 954 always created. However, until |is_last| is BROTLI_TRUE encoder may retain up 961 BrotliEncoderState* s, const BROTLI_BOOL is_last, 977 if (is_last) 553 WriteMetaBlockInternal(MemoryManager * m,const uint8_t * data,const size_t mask,const uint64_t last_flush_pos,const size_t bytes,const BROTLI_BOOL is_last,ContextType literal_context_mode,const BrotliEncoderParams * params,const uint8_t prev_byte,const uint8_t prev_byte2,const size_t num_literals,const size_t num_commands,Command * commands,const int * saved_dist_cache,int * dist_cache,size_t * storage_ix,uint8_t * storage) argument 960 EncodeData(BrotliEncoderState * s,const BROTLI_BOOL is_last,const BROTLI_BOOL force_flush,size_t * out_size,uint8_t ** output) argument 1266 BROTLI_BOOL is_last; local in function:BrotliCompressBufferQuality10 1651 BROTLI_BOOL is_last = local in function:BrotliEncoderCompressStreamFast 1868 BROTLI_BOOL is_last = TO_BROTLI_BOOL( local in function:BrotliEncoderCompressStream [all...] |
| H A D | hash.h | 422 size_t input_size, BROTLI_BOOL is_last) { 423 BROTLI_BOOL one_shot = (position == 0 && is_last); 468 BROTLI_BOOL is_last) { 469 HasherSetup(m, hasher, params, data, position, input_size, is_last); 420 HasherSetup(MemoryManager * m,Hasher * hasher,BrotliEncoderParams * params,const uint8_t * data,size_t position,size_t input_size,BROTLI_BOOL is_last) argument 465 InitOrStitchToPreviousBlock(MemoryManager * m,Hasher * hasher,const uint8_t * data,size_t mask,BrotliEncoderParams * params,size_t position,size_t input_size,BROTLI_BOOL is_last) argument
|
| H A D | compress_fragment.c | 427 BROTLI_BOOL is_last, int* table, size_t table_bits, uint8_t cmd_depth[128], 721 if (!is_last) { 736 BROTLI_BOOL is_last, int* table, uint8_t cmd_depth[128], \ 739 BrotliCompressFragmentFastImpl(m, input, input_size, is_last, table, B, \ 747 BROTLI_BOOL is_last, int* table, size_t table_size, uint8_t cmd_depth[128], 754 BROTLI_DCHECK(is_last); 765 m, input, input_size, is_last, table, cmd_depth, cmd_bits, \ 779 if (is_last) { 425 BrotliCompressFragmentFastImpl(MemoryManager * m,const uint8_t * input,size_t input_size,BROTLI_BOOL is_last,int * table,size_t table_bits,uint8_t cmd_depth[128],uint16_t cmd_bits[128],size_t * cmd_code_numbits,uint8_t * cmd_code,size_t * storage_ix,uint8_t * storage) argument
|
| H A D | compress_fragment_two_pass.c | 559 BROTLI_BOOL is_last, uint32_t* command_buf, uint8_t* literal_buf, 565 BROTLI_UNUSED(is_last); 601 BROTLI_BOOL is_last, uint32_t* command_buf, uint8_t* literal_buf, \ 604 BrotliCompressFragmentTwoPassImpl(m, input, input_size, is_last, command_buf,\ 612 BROTLI_BOOL is_last, uint32_t* command_buf, uint8_t* literal_buf, 620 m, input, input_size, is_last, command_buf, \ 634 if (is_last) { 557 BrotliCompressFragmentTwoPassImpl(MemoryManager * m,const uint8_t * input,size_t input_size,BROTLI_BOOL is_last,uint32_t * command_buf,uint8_t * literal_buf,int * table,size_t table_bits,size_t min_match,size_t * storage_ix,uint8_t * storage) argument
|
| H A D | brotli_bit_stream.c | 937 uint8_t prev_byte, uint8_t prev_byte2, BROTLI_BOOL is_last, 955 StoreCompressedMetaBlockHeader(is_last, length, storage_ix, storage); 1064 if (is_last) { 1136 BROTLI_BOOL is_last, const BrotliEncoderParams* params, 1151 StoreCompressedMetaBlockHeader(is_last, length, storage_ix, storage); 1182 if (is_last) { 1189 BROTLI_BOOL is_last, const BrotliEncoderParams* params, 1196 StoreCompressedMetaBlockHeader(is_last, length, storage_ix, storage); 1272 if (is_last) { 935 BrotliStoreMetaBlock(MemoryManager * m,const uint8_t * input,size_t start_pos,size_t length,size_t mask,uint8_t prev_byte,uint8_t prev_byte2,BROTLI_BOOL is_last,const BrotliEncoderParams * params,ContextType literal_context_mode,const Command * commands,size_t n_commands,const MetaBlockSplit * mb,size_t * storage_ix,uint8_t * storage) argument 1134 BrotliStoreMetaBlockTrivial(MemoryManager * m,const uint8_t * input,size_t start_pos,size_t length,size_t mask,BROTLI_BOOL is_last,const BrotliEncoderParams * params,const Command * commands,size_t n_commands,size_t * storage_ix,uint8_t * storage) argument 1187 BrotliStoreMetaBlockFast(MemoryManager * m,const uint8_t * input,size_t start_pos,size_t length,size_t mask,BROTLI_BOOL is_last,const BrotliEncoderParams * params,const Command * commands,size_t n_commands,size_t * storage_ix,uint8_t * storage) argument
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r600/sfn/ |
| H A D | sfn_instruction_alu.h | 111 bool is_last() const {return m_flags.test(alu_last_instr);} function in class:r600::AluInstruction
|
| /xsrc/external/mit/MesaLib/dist/src/panfrost/bifrost/ |
| H A D | bi_pack.c | 721 bool is_last = (clause->link.next == &block->clauses); local in function:bi_pack 729 if (is_last) { 741 if (!is_last)
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/radeonsi/ |
| H A D | si_shader_llvm_ps.c | 409 bool is_last, unsigned color_type, struct si_ps_exports *exp) 451 if (is_last && last == c) { 465 if (is_last) { 407 si_export_mrt_color(struct si_shader_context * ctx,LLVMValueRef * color,unsigned index,unsigned compacted_mrt_index,unsigned samplemask_param,bool is_last,unsigned color_type,struct si_ps_exports * exp) argument
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/radeonsi/ |
| H A D | si_shader.c | 3689 bool is_last, struct si_ps_exports *exp) 3728 if (is_last && last == c) { 3742 if (is_last) { 3686 si_export_mrt_color(struct lp_build_tgsi_context * bld_base,LLVMValueRef * color,unsigned index,unsigned samplemask_param,bool is_last,struct si_ps_exports * exp) argument
|