Home
last modified time | relevance | path

Searched refs:block_ptr (Results 1 - 24 of 24) sorted by relevance

/third_party/ffmpeg/libavcodec/
H A Drpza.c86 int block_ptr; in rpza_decode_stream() local
154 block_ptr = row_ptr + pixel_ptr; in rpza_decode_stream()
157 pixels[block_ptr] = colorA; in rpza_decode_stream()
158 block_ptr++; in rpza_decode_stream()
160 block_ptr += row_inc; in rpza_decode_stream()
200 block_ptr = row_ptr + pixel_ptr; in rpza_decode_stream()
205 pixels[block_ptr] = color4[idx]; in rpza_decode_stream()
206 block_ptr++; in rpza_decode_stream()
208 block_ptr += row_inc; in rpza_decode_stream()
219 block_ptr in rpza_decode_stream()
[all...]
H A Dsmc.c105 int block_ptr; in smc_decode_stream() local
174 block_ptr = row_ptr + pixel_ptr; in smc_decode_stream()
178 pixels[block_ptr++] = pixels[prev_block_ptr++]; in smc_decode_stream()
180 block_ptr += row_inc; in smc_decode_stream()
216 block_ptr = row_ptr + pixel_ptr; in smc_decode_stream()
225 pixels[block_ptr++] = pixels[prev_block_ptr++]; in smc_decode_stream()
227 block_ptr += row_inc; in smc_decode_stream()
241 block_ptr = row_ptr + pixel_ptr; in smc_decode_stream()
244 pixels[block_ptr++] = pixel; in smc_decode_stream()
246 block_ptr in smc_decode_stream()
[all...]
H A Dmsvideo1.c90 int block_ptr, pixel_ptr; in msvideo1_decode_8bit() local
116 block_ptr = ((block_y * 4) - 1) * stride; in msvideo1_decode_8bit()
120 block_ptr += block_inc; in msvideo1_decode_8bit()
126 pixel_ptr = block_ptr; in msvideo1_decode_8bit()
178 block_ptr += block_inc; in msvideo1_decode_8bit()
190 int block_ptr, pixel_ptr; in msvideo1_decode_16bit() local
216 block_ptr = ((block_y * 4) - 1) * stride; in msvideo1_decode_16bit()
220 block_ptr += block_inc; in msvideo1_decode_16bit()
226 pixel_ptr = block_ptr; in msvideo1_decode_16bit()
291 block_ptr in msvideo1_decode_16bit()
[all...]
H A Drpzaenc.c195 static void get_max_component_diff(BlockInfo *bi, uint16_t *block_ptr, in get_max_component_diff() argument
210 min_r = FFMIN(R(block_ptr[x]), min_r); in get_max_component_diff()
211 min_g = FFMIN(G(block_ptr[x]), min_g); in get_max_component_diff()
212 min_b = FFMIN(B(block_ptr[x]), min_b); in get_max_component_diff()
214 max_r = FFMAX(R(block_ptr[x]), max_r); in get_max_component_diff()
215 max_g = FFMAX(G(block_ptr[x]), max_g); in get_max_component_diff()
216 max_b = FFMAX(B(block_ptr[x]), max_b); in get_max_component_diff()
218 block_ptr += bi->rowstride; in get_max_component_diff()
265 static int leastsquares(uint16_t *block_ptr, BlockInfo *bi, in leastsquares() argument
281 x = GET_CHAN(block_ptr[ in leastsquares()
318 calc_lsq_max_fit_error(uint16_t *block_ptr, BlockInfo *bi, int min, int max, int tmp_min, int tmp_max, channel_offset xchannel, channel_offset ychannel) calc_lsq_max_fit_error() argument
386 encode_four_color_block(uint8_t *min_color, uint8_t *max_color, PutBitContext *pb, uint16_t *block_ptr, BlockInfo *bi) encode_four_color_block() argument
[all...]
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dinline_pass.h49 // Add unconditional branch to labelId to end of block block_ptr.
50 void AddBranch(uint32_t labelId, std::unique_ptr<BasicBlock>* block_ptr);
52 // Add conditional branch to end of block |block_ptr|.
54 std::unique_ptr<BasicBlock>* block_ptr);
56 // Add unconditional branch to labelId to end of block block_ptr.
58 std::unique_ptr<BasicBlock>* block_ptr);
60 // Add store of valId to ptrId to end of block block_ptr.
62 std::unique_ptr<BasicBlock>* block_ptr,
65 // Add load of ptrId into resultId to end of block block_ptr.
67 std::unique_ptr<BasicBlock>* block_ptr,
[all...]
H A Dcfg.h51 // Return true if |block_ptr| is the pseudo-entry block.
52 bool IsPseudoEntryBlock(BasicBlock* block_ptr) const { in IsPseudoEntryBlock()
53 return block_ptr == &pseudo_entry_block_; in IsPseudoEntryBlock()
56 // Return true if |block_ptr| is the pseudo-exit block.
57 bool IsPseudoExitBlock(BasicBlock* block_ptr) const { in IsPseudoExitBlock()
58 return block_ptr == &pseudo_exit_block_; in IsPseudoExitBlock()
H A Dinline_pass.cpp58 std::unique_ptr<BasicBlock>* block_ptr) { in AddBranch()
62 (*block_ptr)->AddInstruction(std::move(newBranch)); in AddBranch()
67 std::unique_ptr<BasicBlock>* block_ptr) { in AddBranchCond()
73 (*block_ptr)->AddInstruction(std::move(newBranch)); in AddBranchCond()
77 std::unique_ptr<BasicBlock>* block_ptr) { in AddLoopMerge()
83 (*block_ptr)->AddInstruction(std::move(newLoopMerge)); in AddLoopMerge()
87 std::unique_ptr<BasicBlock>* block_ptr, in AddStore()
98 (*block_ptr)->AddInstruction(std::move(newStore)); in AddStore()
102 std::unique_ptr<BasicBlock>* block_ptr, in AddLoad()
112 (*block_ptr) in AddLoad()
57 AddBranch(uint32_t label_id, std::unique_ptr<BasicBlock>* block_ptr) AddBranch() argument
65 AddBranchCond(uint32_t cond_id, uint32_t true_id, uint32_t false_id, std::unique_ptr<BasicBlock>* block_ptr) AddBranchCond() argument
76 AddLoopMerge(uint32_t merge_id, uint32_t continue_id, std::unique_ptr<BasicBlock>* block_ptr) AddLoopMerge() argument
86 AddStore(uint32_t ptr_id, uint32_t val_id, std::unique_ptr<BasicBlock>* block_ptr, const Instruction* line_inst, const DebugScope& dbg_scope) AddStore() argument
101 AddLoad(uint32_t type_id, uint32_t resultId, uint32_t ptr_id, std::unique_ptr<BasicBlock>* block_ptr, const Instruction* line_inst, const DebugScope& dbg_scope) AddLoad() argument
222 CloneSameBlockOps( std::unique_ptr<Instruction>* inst, std::unordered_map<uint32_t, uint32_t>* postCallSB, std::unordered_map<uint32_t, Instruction*>* preCallSB, std::unique_ptr<BasicBlock>* block_ptr) CloneSameBlockOps() argument
[all...]
H A Dinstrument_pass.cpp354 BasicBlock* block_ptr) { in CloneSameBlockOps()
356 (*inst)->ForEachInId([&same_blk_post, &same_blk_pre, &block_ptr, &changed, in CloneSameBlockOps()
373 CloneSameBlockOps(&sb_inst, same_blk_post, same_blk_pre, block_ptr); in CloneSameBlockOps()
374 block_ptr->AddInstruction(std::move(sb_inst)); in CloneSameBlockOps()
350 CloneSameBlockOps( std::unique_ptr<Instruction>* inst, std::unordered_map<uint32_t, uint32_t>* same_blk_post, std::unordered_map<uint32_t, Instruction*>* same_blk_pre, BasicBlock* block_ptr) CloneSameBlockOps() argument
H A Dinstrument_pass.h363 BasicBlock* block_ptr);
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Dinline_pass.h49 // Add unconditional branch to labelId to end of block block_ptr.
50 void AddBranch(uint32_t labelId, std::unique_ptr<BasicBlock>* block_ptr);
52 // Add conditional branch to end of block |block_ptr|.
54 std::unique_ptr<BasicBlock>* block_ptr);
56 // Add unconditional branch to labelId to end of block block_ptr.
58 std::unique_ptr<BasicBlock>* block_ptr);
60 // Add store of valId to ptrId to end of block block_ptr.
62 std::unique_ptr<BasicBlock>* block_ptr,
65 // Add load of ptrId into resultId to end of block block_ptr.
67 std::unique_ptr<BasicBlock>* block_ptr,
[all...]
H A Dcfg.h51 // Return true if |block_ptr| is the pseudo-entry block.
52 bool IsPseudoEntryBlock(BasicBlock* block_ptr) const { in IsPseudoEntryBlock()
53 return block_ptr == &pseudo_entry_block_; in IsPseudoEntryBlock()
56 // Return true if |block_ptr| is the pseudo-exit block.
57 bool IsPseudoExitBlock(BasicBlock* block_ptr) const { in IsPseudoExitBlock()
58 return block_ptr == &pseudo_exit_block_; in IsPseudoExitBlock()
H A Dinline_pass.cpp58 std::unique_ptr<BasicBlock>* block_ptr) { in AddBranch()
62 (*block_ptr)->AddInstruction(std::move(newBranch)); in AddBranch()
67 std::unique_ptr<BasicBlock>* block_ptr) { in AddBranchCond()
73 (*block_ptr)->AddInstruction(std::move(newBranch)); in AddBranchCond()
77 std::unique_ptr<BasicBlock>* block_ptr) { in AddLoopMerge()
83 (*block_ptr)->AddInstruction(std::move(newLoopMerge)); in AddLoopMerge()
87 std::unique_ptr<BasicBlock>* block_ptr, in AddStore()
98 (*block_ptr)->AddInstruction(std::move(newStore)); in AddStore()
102 std::unique_ptr<BasicBlock>* block_ptr, in AddLoad()
112 (*block_ptr) in AddLoad()
57 AddBranch(uint32_t label_id, std::unique_ptr<BasicBlock>* block_ptr) AddBranch() argument
65 AddBranchCond(uint32_t cond_id, uint32_t true_id, uint32_t false_id, std::unique_ptr<BasicBlock>* block_ptr) AddBranchCond() argument
76 AddLoopMerge(uint32_t merge_id, uint32_t continue_id, std::unique_ptr<BasicBlock>* block_ptr) AddLoopMerge() argument
86 AddStore(uint32_t ptr_id, uint32_t val_id, std::unique_ptr<BasicBlock>* block_ptr, const Instruction* line_inst, const DebugScope& dbg_scope) AddStore() argument
101 AddLoad(uint32_t type_id, uint32_t resultId, uint32_t ptr_id, std::unique_ptr<BasicBlock>* block_ptr, const Instruction* line_inst, const DebugScope& dbg_scope) AddLoad() argument
222 CloneSameBlockOps( std::unique_ptr<Instruction>* inst, std::unordered_map<uint32_t, uint32_t>* postCallSB, std::unordered_map<uint32_t, Instruction*>* preCallSB, std::unique_ptr<BasicBlock>* block_ptr) CloneSameBlockOps() argument
[all...]
H A Dinstrument_pass.cpp354 BasicBlock* block_ptr) { in CloneSameBlockOps()
356 (*inst)->ForEachInId([&same_blk_post, &same_blk_pre, &block_ptr, &changed, in CloneSameBlockOps()
373 CloneSameBlockOps(&sb_inst, same_blk_post, same_blk_pre, block_ptr); in CloneSameBlockOps()
374 block_ptr->AddInstruction(std::move(sb_inst)); in CloneSameBlockOps()
350 CloneSameBlockOps( std::unique_ptr<Instruction>* inst, std::unordered_map<uint32_t, uint32_t>* same_blk_post, std::unordered_map<uint32_t, Instruction*>* same_blk_pre, BasicBlock* block_ptr) CloneSameBlockOps() argument
H A Dinstrument_pass.h363 BasicBlock* block_ptr);
/third_party/spirv-tools/source/opt/
H A Dinline_pass.h49 // Add unconditional branch to labelId to end of block block_ptr.
50 void AddBranch(uint32_t labelId, std::unique_ptr<BasicBlock>* block_ptr);
52 // Add conditional branch to end of block |block_ptr|.
54 std::unique_ptr<BasicBlock>* block_ptr);
56 // Add unconditional branch to labelId to end of block block_ptr.
58 std::unique_ptr<BasicBlock>* block_ptr);
60 // Add store of valId to ptrId to end of block block_ptr.
62 std::unique_ptr<BasicBlock>* block_ptr,
65 // Add load of ptrId into resultId to end of block block_ptr.
67 std::unique_ptr<BasicBlock>* block_ptr,
[all...]
H A Dcfg.h51 // Return true if |block_ptr| is the pseudo-entry block.
52 bool IsPseudoEntryBlock(BasicBlock* block_ptr) const { in IsPseudoEntryBlock()
53 return block_ptr == &pseudo_entry_block_; in IsPseudoEntryBlock()
56 // Return true if |block_ptr| is the pseudo-exit block.
57 bool IsPseudoExitBlock(BasicBlock* block_ptr) const { in IsPseudoExitBlock()
58 return block_ptr == &pseudo_exit_block_; in IsPseudoExitBlock()
H A Dinline_pass.cpp58 std::unique_ptr<BasicBlock>* block_ptr) { in AddBranch()
62 (*block_ptr)->AddInstruction(std::move(newBranch)); in AddBranch()
67 std::unique_ptr<BasicBlock>* block_ptr) { in AddBranchCond()
73 (*block_ptr)->AddInstruction(std::move(newBranch)); in AddBranchCond()
77 std::unique_ptr<BasicBlock>* block_ptr) { in AddLoopMerge()
83 (*block_ptr)->AddInstruction(std::move(newLoopMerge)); in AddLoopMerge()
87 std::unique_ptr<BasicBlock>* block_ptr, in AddStore()
98 (*block_ptr)->AddInstruction(std::move(newStore)); in AddStore()
102 std::unique_ptr<BasicBlock>* block_ptr, in AddLoad()
112 (*block_ptr) in AddLoad()
57 AddBranch(uint32_t label_id, std::unique_ptr<BasicBlock>* block_ptr) AddBranch() argument
65 AddBranchCond(uint32_t cond_id, uint32_t true_id, uint32_t false_id, std::unique_ptr<BasicBlock>* block_ptr) AddBranchCond() argument
76 AddLoopMerge(uint32_t merge_id, uint32_t continue_id, std::unique_ptr<BasicBlock>* block_ptr) AddLoopMerge() argument
86 AddStore(uint32_t ptr_id, uint32_t val_id, std::unique_ptr<BasicBlock>* block_ptr, const Instruction* line_inst, const DebugScope& dbg_scope) AddStore() argument
101 AddLoad(uint32_t type_id, uint32_t resultId, uint32_t ptr_id, std::unique_ptr<BasicBlock>* block_ptr, const Instruction* line_inst, const DebugScope& dbg_scope) AddLoad() argument
224 CloneSameBlockOps( std::unique_ptr<Instruction>* inst, std::unordered_map<uint32_t, uint32_t>* postCallSB, std::unordered_map<uint32_t, Instruction*>* preCallSB, std::unique_ptr<BasicBlock>* block_ptr) CloneSameBlockOps() argument
[all...]
H A Dinstrument_pass.cpp327 BasicBlock* block_ptr) { in CloneSameBlockOps()
329 (*inst)->ForEachInId([&same_blk_post, &same_blk_pre, &block_ptr, &changed, in CloneSameBlockOps()
346 CloneSameBlockOps(&sb_inst, same_blk_post, same_blk_pre, block_ptr); in CloneSameBlockOps()
347 block_ptr->AddInstruction(std::move(sb_inst)); in CloneSameBlockOps()
323 CloneSameBlockOps( std::unique_ptr<Instruction>* inst, std::unordered_map<uint32_t, uint32_t>* same_blk_post, std::unordered_map<uint32_t, Instruction*>* same_blk_pre, BasicBlock* block_ptr) CloneSameBlockOps() argument
H A Dinstrument_pass.h225 BasicBlock* block_ptr);
/third_party/mesa3d/src/gallium/drivers/etnaviv/
H A Detnaviv_compiler_nir.c95 c->block_ptr[block] = c->inst_ptr; in etna_emit_block_start()
1182 unsigned block_ptr[nir_shader_get_entrypoint(s)->num_blocks]; in etna_compile_shader() local
1183 c->block_ptr = block_ptr; in etna_compile_shader()
1198 inst->imm = block_ptr[inst->imm]; in etna_compile_shader()
H A Detnaviv_compiler_nir.h43 unsigned *block_ptr; member
/third_party/node/deps/v8/src/maglev/
H A Dmaglev-ir.h1389 BasicBlock* block_ptr() const { in block_ptr() function in v8::internal::maglev::BasicBlockRef
1441 BasicBlock* target() const { return target_.block_ptr(); } in target()
1493 BasicBlock* if_true() const { return if_true_.block_ptr(); } in if_true()
1494 BasicBlock* if_false() const { return if_false_.block_ptr(); } in if_false()
H A Dmaglev-graph-builder.h413 DCHECK_EQ(jump_targets_[block_offset].block_ptr(), block); in ResolveJumpsToBlockAtOffset()
H A Dmaglev-graph-builder.cc741 jump_targets_[target].block_ptr()); in VisitJumpLoop()

Completed in 23 milliseconds