Searched defs:sample_id (Results 1 - 6 of 6) sorted by relevance

/external/tensorflow/tensorflow/contrib/resampler/kernels/
H A Dresampler_ops_gpu.cu.cc52 // sample_id * num_chans + chan_id,
53 // with sample_id = [0, ... ,num_sampling_points)
61 const int sample_id = index_in_batch / data_channels; local
64 const T x = warp[batch_id * warp_batch_stride + sample_id * 2];
65 const T y = warp[batch_id * warp_batch_stride + sample_id * 2 + 1];
158 // sample_id * num_chans + chan_id,
159 // with sample_id = [0, ... ,num_sampling_points)
167 const int sample_id = index_in_batch / data_channels; local
170 const int warp_id_x = batch_id * warp_batch_stride + sample_id * 2;
/external/esd/include/
H A Desd.h225 int sample_id; /* either a stream fd or sample id */ member in struct:esd_sample_info
298 int esd_set_default_sample_pan( int esd, int sample_id,
/external/perf_data_converter/src/quipper/
H A Dtest_perf_data.h209 // or as the sample_id of another event.
252 const SampleInfo& sample_id)
258 sample_id_(sample_id) {}
277 const SampleInfo& sample_id)
278 : ExampleMmap2Event(pid, pid, start, len, pgoff, filename, sample_id) {}
280 string filename, const SampleInfo& sample_id)
290 sample_id_(sample_id) {}
322 const SampleInfo& sample_id)
329 sample_id_(sample_id) {}
344 const SampleInfo& sample_id)
251 ExampleMmapEvent(u32 pid, u64 start, u64 len, u64 pgoff, string filename, const SampleInfo& sample_id) argument
276 ExampleMmap2Event(u32 pid, u64 start, u64 len, u64 pgoff, string filename, const SampleInfo& sample_id) argument
279 ExampleMmap2Event(u32 pid, u32 tid, u64 start, u64 len, u64 pgoff, string filename, const SampleInfo& sample_id) argument
321 ExampleForkExitEvent(u32 type, u32 pid, u32 ppid, u32 tid, u32 ptid, u64 time, const SampleInfo& sample_id) argument
343 ExampleForkEvent(u32 pid, u32 ppid, u32 tid, u32 ptid, u64 time, const SampleInfo& sample_id) argument
352 ExampleExitEvent(u32 pid, u32 ppid, u32 tid, u32 ptid, u64 time, const SampleInfo& sample_id) argument
[all...]
/external/mesa3d/src/gallium/drivers/r600/
H A Dr600_shader.c1235 static int load_sample_position(struct r600_shader_ctx *ctx, struct r600_shader_src *sample_id, int chan_sel) argument
1248 if (sample_id == NULL) {
1257 r600_bytecode_src(&alu.src[0], sample_id, chan_sel);
/external/mesa3d/src/amd/common/
H A Dac_nir_to_llvm.c2736 LLVMValueRef sample_id)
2738 /* offset = sample_id * 8 (8 = 2 floats containing samplepos.xy) */
2739 LLVMValueRef offset0 = LLVMBuildMul(ctx->builder, sample_id, LLVMConstInt(ctx->i32, 8, false), "");
2735 load_sample_position(struct nir_to_llvm_context *ctx, LLVMValueRef sample_id) argument
/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_shader.c1604 static LLVMValueRef load_sample_position(struct si_shader_context *radeon_bld, LLVMValueRef sample_id) argument
1615 /* offset = sample_id * 8 (8 = 2 floats containing samplepos.xy) */
1616 LLVMValueRef offset0 = lp_build_mul_imm(uint_bld, sample_id, 8);
5190 LLVMValueRef sample_id; local
5196 sample_id = lp_build_emit_fetch(bld_base,
5198 sample_id = LLVMBuildBitCast(gallivm->builder, sample_id,
5200 sample_position = load_sample_position(ctx, sample_id);

Completed in 318 milliseconds