HomeSort by relevance Sort by last modified time
    Searched defs:out_of_bounds (Results 1 - 7 of 7) sorted by null

  /external/tensorflow/tensorflow/core/kernels/
gather_nd_op_cpu_impl.h 57 bool out_of_bounds = false; local
61 out_of_bounds |= !FastBoundsCheck(ix_i, Tparams_.dimension(i));
63 return out_of_bounds;
73 const bool out_of_bounds = GenerateIndices(loc, &ix); local
74 if (TF_PREDICT_FALSE(out_of_bounds)) {
gather_nd_op_gpu.cu.cc 40 bool out_of_bounds = false; local
45 out_of_bounds |= !FastBoundsCheck(index_j, batch_indices[j]);
61 out[i] = (out_of_bounds) ? T(0) : ldg(params + offset + loc_offset);
scatter_nd_op_cpu_impl.h 117 bool out_of_bounds = false; local
120 out_of_bounds |= !FastBoundsCheck(ix_d, output_shape_prefix[dim]);
123 if (TF_PREDICT_FALSE(out_of_bounds)) {
199 bool out_of_bounds = false; local
202 out_of_bounds |= !FastBoundsCheck(ix_d, output_shape_prefix[dim]);
205 if (TF_PREDICT_FALSE(out_of_bounds)) {
scatter_nd_op_gpu.cu.cc 91 bool out_of_bounds = false; local
96 out_of_bounds |= !FastBoundsCheck(ix_d, output_shape_prefix[dim]);
99 if (!out_of_bounds) {
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_nir.c 147 bool out_of_bounds; local
155 out_of_bounds = false;
160 out_of_bounds = component > 0;
163 out_of_bounds = true;
173 out_of_bounds = component > 1;
178 out_of_bounds = component == 3 && primitive_mode == GL_TRIANGLES;
184 if (out_of_bounds) {
  /external/v8/src/ic/
accessor-assembler.cc 204 Label* out_of_bounds = miss; local
208 out_of_bounds, miss, exit_point);
985 GotoIf(IntPtrLessThan(intptr_index, IntPtrConstant(0)), out_of_bounds); local
1013 GotoIfNot(UintPtrLessThan(intptr_index, length), out_of_bounds); local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_sample_soa.c 2320 LLVMValueRef offset, out_of_bounds, out1; local
    [all...]

Completed in 381 milliseconds