Home
last modified time | relevance | path

Searched refs:temp_ptr (Results 1 – 16 of 16) sorted by relevance

/external/u-boot/fs/ext4/
Dext4_write.c847 char *temp_ptr = NULL; in ext4fs_write() local
927 temp_ptr = zalloc(fs->blksz); in ext4fs_write()
928 if (!temp_ptr) in ext4fs_write()
938 temp_ptr); in ext4fs_write()
939 if (ext4fs_log_journal(temp_ptr, itable_blkno)) in ext4fs_write()
942 memcpy(temp_ptr + blkoff, inode_buffer, fs->inodesz); in ext4fs_write()
943 if (ext4fs_put_metadata(temp_ptr, itable_blkno)) in ext4fs_write()
959 memset(temp_ptr, '\0', fs->blksz); in ext4fs_write()
961 0, fs->blksz, temp_ptr); in ext4fs_write()
962 if (ext4fs_log_journal(temp_ptr, parent_itable_blkno)) in ext4fs_write()
[all …]
Dext4_common.c198 unsigned char *temp_ptr = NULL; in put_ext4() local
220 temp_ptr = sec_buf; in put_ext4()
221 memcpy((temp_ptr + remainder), (unsigned char *)buf, size); in put_ext4()
229 temp_ptr = sec_buf; in put_ext4()
230 memcpy(temp_ptr, buf, size); in put_ext4()
/external/webrtc/webrtc/modules/video_processing/
Dvideo_processing_impl.cc101 uint8_t* temp_ptr = frame->buffer(kYPlane); in Brighten() local
103 *temp_ptr = static_cast<uint8_t>(look_up[*temp_ptr]); in Brighten()
104 temp_ptr++; in Brighten()
/external/mesa3d/src/intel/compiler/
Dbrw_clip_line.c180 struct brw_indirect temp_ptr = brw_indirect(7, 0); in clip_and_emit_line() local
181 brw_ADD(p, get_addr_reg(temp_ptr), get_addr_reg(vtx0), c->reg.clipdistance_offset); in clip_and_emit_line()
182 brw_MOV(p, c->reg.dp0, deref_1f(temp_ptr, 0)); in clip_and_emit_line()
183 brw_ADD(p, get_addr_reg(temp_ptr), get_addr_reg(vtx1), c->reg.clipdistance_offset); in clip_and_emit_line()
184 brw_MOV(p, c->reg.dp1, deref_1f(temp_ptr, 0)); in clip_and_emit_line()
Dbrw_clip_tri.c238 struct brw_indirect temp_ptr = brw_indirect(7, 0); in load_clip_distance() local
239 brw_ADD(p, get_addr_reg(temp_ptr), get_addr_reg(vtx), c->reg.clipdistance_offset); in load_clip_distance()
240 brw_MOV(p, vec1(dst), deref_1f(temp_ptr, 0)); in load_clip_distance()
/external/mesa3d/src/gallium/drivers/radeonsi/
Dsi_shader_tgsi_setup.c454 LLVMValueRef temp_ptr; in store_value_to_array() local
462 temp_ptr = ctx->outputs[i + range.First][chan_index]; in store_value_to_array()
468 temp_ptr = ctx->temps[(i + range.First) * TGSI_NUM_CHANNELS + chan_index]; in store_value_to_array()
476 LLVMBuildStore(builder, value, temp_ptr); in store_value_to_array()
824 LLVMValueRef temp_ptr, temp_ptr2 = NULL; in si_llvm_emit_store() local
857 temp_ptr = ctx->addrs[reg->Register.Index][chan_index]; in si_llvm_emit_store()
858 LLVMBuildStore(builder, value, temp_ptr); in si_llvm_emit_store()
873 temp_ptr = ctx->outputs[reg->Register.Index][chan_index]; in si_llvm_emit_store()
883 temp_ptr = ctx->temps[ TGSI_NUM_CHANNELS * reg->Register.Index + chan_index]; in si_llvm_emit_store()
893 LLVMBuildStore(builder, value, temp_ptr); in si_llvm_emit_store()
[all …]
/external/libvpx/libvpx/vpx_dsp/mips/
Dfwd_dct32x32_msa.c132 static void fdct8x32_1d_column_odd_store(int16_t *input, int16_t *temp_ptr) { in fdct8x32_1d_column_odd_store() argument
189 ST_SH(vec5, temp_ptr); in fdct8x32_1d_column_odd_store()
190 ST_SH(vec4, temp_ptr + 960); in fdct8x32_1d_column_odd_store()
195 ST_SH(vec5, temp_ptr + 448); in fdct8x32_1d_column_odd_store()
196 ST_SH(vec4, temp_ptr + 512); in fdct8x32_1d_column_odd_store()
203 ST_SH(vec4, temp_ptr + 704); in fdct8x32_1d_column_odd_store()
204 ST_SH(vec5, temp_ptr + 256); in fdct8x32_1d_column_odd_store()
209 ST_SH(vec4, temp_ptr + 192); in fdct8x32_1d_column_odd_store()
210 ST_SH(vec5, temp_ptr + 768); in fdct8x32_1d_column_odd_store()
223 ST_SH(vec5, temp_ptr + 832); in fdct8x32_1d_column_odd_store()
[all …]
/external/libxaac/decoder/
Dixheaacd_block.c1342 WORD32 *temp_ptr = &p_spectrum[0]; in ixheaacd_right_shift_block() local
1346 temp1 = *temp_ptr; in ixheaacd_right_shift_block()
1347 temp2 = *(temp_ptr + 1); in ixheaacd_right_shift_block()
1348 *temp_ptr++ = temp1 >> shift_val; in ixheaacd_right_shift_block()
1349 temp1 = *(temp_ptr + 1); in ixheaacd_right_shift_block()
1350 *temp_ptr++ = temp2 >> shift_val; in ixheaacd_right_shift_block()
1351 temp2 = *(temp_ptr + 1); in ixheaacd_right_shift_block()
1352 *temp_ptr++ = temp1 >> shift_val; in ixheaacd_right_shift_block()
1353 *temp_ptr++ = temp2 >> shift_val; in ixheaacd_right_shift_block()
/external/flatbuffers/include/flatbuffers/
Dstl_emulation.h249 T* temp_ptr = ptr_;
251 u.ptr_ = temp_ptr;
/external/mesa3d/src/gallium/auxiliary/draw/
Ddraw_llvm.c1691 LLVMValueRef vb_buffer_offset, buffer_size, temp_ptr; in draw_llvm_generate() local
1756 temp_ptr = lp_build_alloca_undef(gallivm, in draw_llvm_generate()
1761 LLVMBuildStore(builder, fake_buf_ptr, temp_ptr); in draw_llvm_generate()
1766 LLVMBuildStore(builder, map_ptr[j], temp_ptr); in draw_llvm_generate()
1769 map_ptr[j] = LLVMBuildLoad(builder, temp_ptr, "map_ptr"); in draw_llvm_generate()
/external/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_tgsi_aos.c208 LLVMValueRef temp_ptr = bld->temps[reg->Register.Index]; in emit_fetch_temporary() local
209 LLVMValueRef res = LLVMBuildLoad(builder, temp_ptr, ""); in emit_fetch_temporary()
Dlp_bld_tgsi_soa.c1578 LLVMValueRef temp_ptr; in emit_fetch_temporary() local
1579 temp_ptr = lp_get_temp_ptr_soa(bld, reg->Register.Index, swizzle); in emit_fetch_temporary()
1580 res = LLVMBuildLoad(builder, temp_ptr, ""); in emit_fetch_temporary()
1848 LLVMValueRef temp_ptr; in emit_store_chan() local
1849 temp_ptr = lp_get_temp_ptr_soa(bld, reg->Register.Index, chan_index); in emit_store_chan()
1855 emit_store_64bit_chan(bld_base, temp_ptr, temp_ptr2, in emit_store_chan()
1859 lp_exec_mask_store(&bld->exec_mask, float_bld, value, temp_ptr); in emit_store_chan()
/external/mesa3d/src/gallium/drivers/etnaviv/
Detnaviv_compiler.c320 int temp_ptr = 0, num_temps; in assign_inouts_to_temporaries() local
328 while (inout_ptr < num_inouts && temp_ptr < num_temps) { in assign_inouts_to_temporaries()
330 struct etna_reg_desc *temp = temps_order[temp_ptr].ptr; in assign_inouts_to_temporaries()
346 temp_ptr++; in assign_inouts_to_temporaries()
/external/libhevc/common/x86/
Dihevc_itrans_recon_32x32_ssse3_intr.c134 WORD16 *temp_ptr; in ihevc_itrans_recon_32x32_ssse3() local
248 temp_ptr = (pi2_tmp + 1024); in ihevc_itrans_recon_32x32_ssse3()
1815 WORD16 *pi2_dst_scratch = temp_ptr; in ihevc_itrans_recon_32x32_ssse3()
2301 WORD16 *pi2_dst_scratch = temp_ptr; in ihevc_itrans_recon_32x32_ssse3()
2852 WORD16 *pi2_dst_scratch = temp_ptr; in ihevc_itrans_recon_32x32_ssse3()
3796 WORD16 *pi2_src_scratch = temp_ptr; in ihevc_itrans_recon_32x32_ssse3()
4098 WORD16 *pi2_dst_scratch = temp_ptr; in ihevc_itrans_recon_32x32_ssse3()
4686 WORD16 *pi2_dst_scratch = temp_ptr; in ihevc_itrans_recon_32x32_ssse3()
5507 WORD16 *pi2_dst_scratch = temp_ptr; in ihevc_itrans_recon_32x32_ssse3()
6388 WORD16 *pi2_src_scratch = temp_ptr; in ihevc_itrans_recon_32x32_ssse3()
Dihevc_32x32_itrans_recon_sse42_intr.c126 WORD16 *temp_ptr; in ihevc_itrans_recon_32x32_sse42() local
240 temp_ptr = (pi2_tmp + 1024); in ihevc_itrans_recon_32x32_sse42()
1804 WORD16 *pi2_dst_scratch = temp_ptr; in ihevc_itrans_recon_32x32_sse42()
2291 WORD16 *pi2_dst_scratch = temp_ptr; in ihevc_itrans_recon_32x32_sse42()
2844 WORD16 *pi2_dst_scratch = temp_ptr; in ihevc_itrans_recon_32x32_sse42()
3789 WORD16 *pi2_src_scratch = temp_ptr; in ihevc_itrans_recon_32x32_sse42()
4092 WORD16 *pi2_dst_scratch = temp_ptr; in ihevc_itrans_recon_32x32_sse42()
4680 WORD16 *pi2_dst_scratch = temp_ptr; in ihevc_itrans_recon_32x32_sse42()
5501 WORD16 *pi2_dst_scratch = temp_ptr; in ihevc_itrans_recon_32x32_sse42()
6381 WORD16 *pi2_src_scratch = temp_ptr; in ihevc_itrans_recon_32x32_sse42()
/external/mesa3d/src/amd/common/
Dac_nir_to_llvm.c3297 LLVMValueRef temp_ptr, value; in visit_store_var() local
3358 temp_ptr = ctx->outputs[idx + chan + const_index * stride]; in visit_store_var()
3360 LLVMBuildStore(ctx->ac.builder, value, temp_ptr); in visit_store_var()
3383 temp_ptr = ctx->locals[idx + chan + const_index * 4]; in visit_store_var()
3385 LLVMBuildStore(ctx->ac.builder, value, temp_ptr); in visit_store_var()