Home
last modified time | relevance | path

Searched refs:scratch_ptr (Results 1 – 13 of 13) sorted by relevance

/external/executorch/kernels/portable/cpu/
Dop_linear_scratch_example.cpp88 scalar_t* scratch_ptr = in linear_scratch_example() local
90 *scratch_ptr = 0; in linear_scratch_example()
98 *scratch_ptr += *input_ptr * *weight_ptr; in linear_scratch_example()
108 scalar_t* scratch_ptr = in linear_scratch_example() local
112 *out_ptr = *scratch_ptr + *bias_ptr; in linear_scratch_example()
/external/libopus/celt/
Dstack_alloc.h133 char *scratch_ptr=0; variable
137 extern char *scratch_ptr;
160 #define RESTORE_STACK (printf("%ld %s:%d\n", global_stack-scratch_ptr, __FILE__, __LINE__),global_s…
164 #define ALLOC_STACK char *_saved_stack; (global_stack = (global_stack==0) ? (scratch_ptr=opus_alloc…
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorScanSycl.h134 auto scratch_ptr = scratch.get_pointer().get(); in operator() local
191 scratch_ptr[2 * local_id + (packetIndex / PacketSize) + scratch_offset] = in operator()
220 accumulator.reduce(scratch_ptr[ai], &accum); in operator()
221 accumulator.reduce(scratch_ptr[bi], &accum); in operator()
222 scratch_ptr[bi] = accumulator.finalize(accum); in operator()
235 tmp_ptr[temp_id] = scratch_ptr[scratch_stride - 1 + scratch_offset]; in operator()
238 scratch_ptr[scratch_stride - 1 + scratch_offset] = accumulator.initialize(); in operator()
249 accumulator.reduce(scratch_ptr[ai], &accum); in operator()
250 accumulator.reduce(scratch_ptr[bi], &accum); in operator()
251 scratch_ptr[ai] = scratch_ptr[bi]; in operator()
[all …]
DTensorContractionSycl.h1038 auto scratch_ptr = scratch.get_pointer();
1056 auto local_output = scratch_ptr + OutScratchOffset;
1062 scratch_ptr, contractGroupOffset,
1068 scratch_ptr, contractGroupOffset,
1078 OutScalar *scratch_ptr, const StorageIndex contractGroupOffset,
1088 …Properties::LocalThreadSizeNC * Properties::LocalThreadSizeC>(vec, scratch_ptr, linearLocalThreadI…
1092 auto in_scratch_ptr = scratch_ptr + contractId;
1256 auto scratch_ptr = scratch.get_pointer().get();
1264 auto out_scratch_ptr = scratch_ptr + localid;
/external/tensorflow/tensorflow/lite/kernels/internal/reference/
Dsvdf.h41 float* const __restrict__ state_ptr, float* const __restrict__ scratch_ptr, in ApplyTimeWeightsBiasAndActivation() argument
46 float* scratch_ptr_batch = scratch_ptr + b * num_filters; in ApplyTimeWeightsBiasAndActivation()
53 tensor_utils::ReductionSumVector(scratch_ptr, output_ptr, in ApplyTimeWeightsBiasAndActivation()
/external/libxaac/decoder/
Dixheaacd_block.c1062 WORD32 *x_invquant, WORD8 *scratch_ptr) { in ixheaacd_huffman_dec_word2() argument
1079 it_bit_buff, width, cb_table, x_invquant, pow_table, scratch_ptr, in ixheaacd_huffman_dec_word2()
1086 scratch_ptr, tbl_sign, idx_table); in ixheaacd_huffman_dec_word2()
1100 it_bit_buff, width, cb_table, x_invquant, pow_table, scratch_ptr, in ixheaacd_huffman_dec_word2()
Dixheaacd_block.h62 WORD32 *x_invquant, WORD8 *scratch_ptr);
/external/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_nir.h292 LLVMValueRef scratch_ptr; member
Dlp_bld_tgsi.h294 LLVMValueRef scratch_ptr; member
Dlp_bld_nir_soa.c2856 bld->scratch_ptr); in emit_load_scratch()
2888 bld->scratch_ptr); in emit_store_scratch()
2977 if (bld->scratch_ptr) { in build_call_context()
2979 … call_context, bld->scratch_ptr, LP_NIR_CALL_CONTEXT_SCRATCH, ""); in build_call_context()
3201 if (params->scratch_ptr) in lp_build_nir_soa_func()
3202 bld.scratch_ptr = params->scratch_ptr; in lp_build_nir_soa_func()
3204 bld.scratch_ptr = lp_build_array_alloca(gallivm, in lp_build_nir_soa_func()
/external/perfetto/src/traced/probes/ftrace/
Dcpu_reader.cc284 const uint8_t* scratch_ptr = curr_page; in ReadAndProcessBatch() local
286 ParsePageHeader(&scratch_ptr, table_->page_header_size_len()); in ReadAndProcessBatch()
/external/tensorflow/tensorflow/lite/kernels/internal/optimized/
Dneon_tensor_utils.cc1433 int32_t* scratch_ptr = scratch; in NeonMatrixBatchVectorMultiplyAccumulate() local
1453 const int32x4_t scratch_val0 = vld1q_s32(scratch_ptr + i); in NeonMatrixBatchVectorMultiplyAccumulate()
1454 const int32x4_t scratch_val1 = vld1q_s32(scratch_ptr + i + 4); in NeonMatrixBatchVectorMultiplyAccumulate()
1469 scratch_ptr += i; in NeonMatrixBatchVectorMultiplyAccumulate()
1476 int32_t dotprod = *(scratch_ptr++); in NeonMatrixBatchVectorMultiplyAccumulate()
/external/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_state_cs.c525 …params.scratch_ptr = LLVMBuildExtractValue(builder, call_context, LP_NIR_CALL_CONTEXT_SCRATCH, ""); in generate_compute()