HomeSort by relevance Sort by last modified time
    Searched refs:input_pos (Results 1 - 8 of 8) sorted by null

  /external/libxcam/cl_kernel/
kernel_geo_map.cl 26 bool *out_of_bound, float2 *input_pos, float8 *out_y)
36 input_pos[i] = read_imagef (geo_table, sampler, table_pos).xy;
39 (min (input_pos[i].x, input_pos[i].y) < 0.0f) ||
40 (max (input_pos[i].x, input_pos[i].y) > 1.0f);
41 //need convert input_pos to (0.0 ~ 1.0)????
42 output_data[i] = out_of_bound[i] ? CONST_DATA_Y : read_imagef (input, sampler, input_pos[i]).x;
80 float2 input_pos[8];
88 get_geo_mapped_y (input_y, geo_table, out_map_pos, table_scale_step.x, out_of_bound, input_pos, &output_data)
    [all...]
  /external/webrtc/webrtc/common_audio/
audio_ring_buffer_unittest.cc 32 size_t input_pos = 0; local
34 while (input_pos + buf.WriteFramesAvailable() < total_frames) {
37 buf.Write(input.Slice(slice.get(), input_pos), num_channels,
39 input_pos += num_write_chunk_frames;
51 if (input_pos < total_frames) {
52 buf.Write(input.Slice(slice.get(), input_pos), num_channels,
53 total_frames - input_pos);
  /external/protobuf/src/google/protobuf/compiler/
subprocess.cc 160 int input_pos = 0; local
191 input_data.data() + input_pos,
192 input_data.size() - input_pos,
196 input_pos = input_data.size();
198 input_pos += n;
201 if (input_pos == input_data.size()) {
363 int input_pos = 0;
388 int n = write(child_stdin_, input_data.data() + input_pos,
389 input_data.size() - input_pos);
393 input_pos = input_data.size()
    [all...]
  /external/elfutils/libdwfl/
gzip.c 79 off_t input_pos; member in struct:unzip_state
107 if (state->input_pos == (off_t) state->mapped_size)
183 .input_pos = 0
198 state.input_pos = n;
205 state.input_pos = state.mapped_size = *whole_size;
241 start_offset + state.input_pos);
249 state.input_pos += n;
  /external/tensorflow/tensorflow/core/grappler/optimizers/
layout_optimizer.cc 336 std::vector<int> input_pos; local
340 input_pos.push_back(i);
342 return input_pos;
613 std::vector<int> input_pos = GetInputPos(); local
614 for (const auto& pos : input_pos) {
1221 std::vector<int> input_pos; variable
1467 std::vector<int> input_pos; variable
    [all...]
  /art/compiler/optimizing/
nodes.cc 488 for (size_t input_pos = first_nonbackedge_pred_pos + 1;
489 input_pos < header_phi->InputCount();
490 input_pos++) {
491 HInstruction* input = header_phi->InputAt(input_pos);
492 HBasicBlock* pred_block = header->GetPredecessors()[input_pos];
498 header_phi->RemoveInputAt(input_pos);
499 input_pos--;
    [all...]
  /external/libvpx/libvpx/
vpxenc.c 2193 const int64_t input_pos = ftello(input.file); local
    [all...]
  /external/python/cpython3/Objects/
unicodeobject.c     [all...]

Completed in 347 milliseconds