HomeSort by relevance Sort by last modified time
    Searched refs:input_offset (Results 1 - 25 of 62) sorted by null

1 2 3

  /external/brotli/java/org/brotli/wrapper/dec/
decoder_jni.cc 19 size_t input_offset; member in struct:__anon14422::DecoderHandle
56 handle->input_offset = 0;
116 if (handle->input_offset < handle->input_length) {
119 handle->input_offset = 0;
124 const uint8_t* in = handle->input_start + handle->input_offset;
125 size_t in_size = handle->input_length - handle->input_offset;
129 handle->input_offset = handle->input_length - in_size;
133 context[1] = (handle->input_offset == handle->input_length) ? 1 : 0;
170 context[1] = (handle->input_offset == handle->input_length) ? 1 : 0;
173 context[1] = (handle->input_offset == handle->input_length) ? 2 : 4
    [all...]
  /external/brotli/java/org/brotli/wrapper/enc/
encoder_jni.cc 19 size_t input_offset; member in struct:__anon14423::EncoderHandle
56 handle->input_offset = 0;
130 if (handle->input_offset < handle->input_last) {
133 handle->input_offset = 0;
138 const uint8_t* in = handle->input_start + handle->input_offset;
139 size_t in_size = handle->input_last - handle->input_offset;
143 handle->input_offset = handle->input_last - in_size;
147 context[3] = (handle->input_offset != handle->input_last) ? 1 : 0;
171 context[3] = (handle->input_offset != handle->input_last) ? 1 : 0;
  /external/tensorflow/tensorflow/contrib/lite/kernels/internal/reference/
depthwiseconv_uint8.h 30 int32 input_offset, const uint8* filter_data,
72 (filter_val + filter_offset) * (input_val + input_offset);
96 int32 input_offset, const uint8* filter_data,
108 DepthwiseConv(input_data, input_dims, input_offset, filter_data, filter_dims,
119 int32 input_offset, const uint8* filter_data,
127 DepthwiseConv<Ac>(input_data, input_dims, input_offset, filter_data,
  /toolchain/binutils/binutils-2.27/gold/
merge.cc 88 section_offset_type input_offset,
93 map->add_mapping(input_offset, length, output_offset);
98 section_offset_type input_offset, section_size_type length,
106 section_size_type input_offset_u = input_offset;
111 if (input_offset_u < entry.input_offset + entry.length)
113 gold_assert(input_offset < entry.input_offset);
115 <= static_cast<section_size_type>(entry.input_offset));
118 else if (entry.input_offset + entry.length == input_offset_u
129 entry.input_offset = input_offset
    [all...]
ehframe.h 167 Fde(Relobj* object, unsigned int shndx, section_offset_type input_offset,
173 this->u_.from_object.input_offset = input_offset;
200 this->u_.from_object.input_offset, this->length(),
233 section_offset_type input_offset; member in struct:gold::Fde::__anon4443::__anon4444
270 Cie(Relobj* object, unsigned int shndx, section_offset_type input_offset,
275 input_offset_(input_offset),
merge.h 92 section_offset_type input_offset; member in struct:gold::Object_merge_map::Input_merge_entry
102 void add_mapping(section_offset_type input_offset, section_size_type length,
129 // Whether the ENTRIES field is sorted by input_offset.
149 { return i1.input_offset < i2.input_offset; }
  /external/tensorflow/tensorflow/contrib/lite/kernels/internal/optimized/
depthwiseconv_uint8.h 35 const uint8* input_ptr, int16 input_offset,
55 // Load the inputs, add input_offset.
59 const int16x8_t input = vaddq_s16(input_s16, vdupq_n_s16(input_offset));
82 const uint8* input_ptr, int16 input_offset,
98 // Load the inputs, add input_offset.
109 input[i] = vaddq_s16(input[i], vdupq_n_s16(input_offset));
131 // Load the inputs, add input_offset.
135 const int16x8_t input = vaddq_s16(input_s16, vdupq_n_s16(input_offset));
150 const uint8* input_ptr, int16 input_offset,
166 // Load the inputs, add input_offset
    [all...]
optimized_ops.h 380 const uint8* input_data, const Dims<4>& input_dims, int32 input_offset,
411 const int16x8_t input_offset_vec = vdupq_n_s16(input_offset);
480 const int32 input_val = input_data[in] + input_offset;
561 int32 input_offset, const uint8* filter_data,
581 input_data, input_dims, input_offset, filter_data, filter_dims,
610 input_offset, output_pipeline);
616 int32 input_offset, const uint8* filter_data,
629 FullyConnected(input_data, input_dims, input_offset, filter_data, filter_dims,
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
quantized_conv_ops.cc 56 int input_depth, int input_offset, const T2* filter_data,
151 static_cast<int32>(input_source_value) - input_offset;
202 int input_depth, int input_offset, const T2* filter_data,
207 if (input_offset < 0) {
223 input_width, input_depth, input_offset, filter_data,
321 memset(im2col_row_start, input_offset,
350 memset(im2col_left_start, input_offset,
366 memset(im2col_right_start, input_offset,
393 -input_offset, -filter_offset, lda, ldb, ldc);
432 &context, lhs, rhs, &result, -input_offset, -filter_offset
    [all...]
depthwise_conv_op_gpu.cu.cc 121 const int input_offset =
128 sum += ldg(input + input_offset) * ldg(filter + filter_offset);
143 const int input_offset =
150 sum += ldg(input + input_offset) * ldg(filter + filter_offset);
396 const int input_offset =
402 sum += ldg(input + input_offset) * ldg(filter + filter_offset);
422 const int input_offset =
429 sum += ldg(input + input_offset) * ldg(filter + filter_offset);
    [all...]
mkl_conv_grad_input_ops.cc 171 mkl_context.input_offset[0] = static_cast<int>(-pad_left);
172 mkl_context.input_offset[1] = static_cast<int>(-pad_top);
202 mkl_context.input_offset, dnnBorderZeros),
243 int input_offset[2]; member in struct:tensorflow::MklConv2DCustomBackpropInputOp::__anon39840
mkl_conv_ops.cc 223 mkl_context.input_offset[0] = static_cast<int>(-pad_cols);
224 mkl_context.input_offset[1] = static_cast<int>(-pad_rows);
262 mkl_context.input_offset, dnnBorderZeros),
270 mkl_context.input_offset, dnnBorderZeros),
343 int input_offset[2]; member in struct:tensorflow::MklConv2DOp::__anon39841
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_prim_assembler.c 103 unsigned input_offset = asmblr->input_verts->stride * idx; local
104 memcpy(output + output_offset, input + input_offset,
119 unsigned input_offset = asmblr->input_verts->stride * idx; local
120 struct vertex_header *v = (struct vertex_header*)(input + input_offset);
draw_pt_fetch_emit.c 122 unsigned input_offset = src->src_offset; local
134 input_offset = 0;
140 key.element[i].input_offset = input_offset;
draw_vs_variant.c 328 fetch.element[i].input_offset = key->element[i].in.offset;
344 emit.element[i].input_offset = key->element[i].out.vs_output * 4 * sizeof(float);
348 assert(emit.element[i].input_offset <= fetch.output_stride);
354 emit.element[i].input_offset = 0;
draw_pt_fetch.c 99 key.element[nr].input_offset = draw->pt.vertex_element[ei].src_offset;
110 key.element[nr].input_offset = draw->pt.vertex_element[ei].src_offset;
121 key.element[nr].input_offset = draw->pt.vertex_element[ei].src_offset;
  /external/mesa3d/src/gallium/auxiliary/translate/
translate.h 66 unsigned input_offset:24; member in struct:translate_element
  /external/python/cpython2/Lib/
subprocess.py     [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
subprocess.py     [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
subprocess.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
subprocess.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
subprocess.py     [all...]
  /external/tensorflow/tensorflow/contrib/lite/kernels/
depthwise_conv.cc 201 auto input_offset = -input->params.zero_point; local
216 GetTensorData<uint8_t>(input), GetTensorDims(input), input_offset, local
fully_connected.cc 184 int32_t input_offset = -input->params.zero_point; local
189 GetTensorData<uint8_t>(input), GetTensorDims(input), input_offset, \
conv.cc 298 auto input_offset = -input->params.zero_point; local
305 GetTensorData<uint8_t>(input), GetTensorDims(input), input_offset, local
320 GetTensorData<uint8_t>(input), GetTensorDims(input), input_offset, local

Completed in 507 milliseconds

1 2 3