/external/llvm/test/Transforms/SimplifyCFG/ |
D | implied-cond.ll | 9 ; CHECK: br i1 %var29, label %in_bounds, label %out_of_bounds 10 br i1 %var29, label %next, label %out_of_bounds 21 out_of_bounds: 36 ; CHECK: br i1 %var29, label %next, label %out_of_bounds 37 br i1 %var29, label %next, label %out_of_bounds 47 out_of_bounds: 61 ; CHECK: br i1 %var29, label %in_bounds, label %out_of_bounds 62 br i1 %var29, label %next, label %out_of_bounds 71 out_of_bounds:
|
/external/llvm-project/llvm/test/Transforms/SimplifyCFG/ |
D | implied-cond.ll | 9 ; CHECK: br i1 %var29, label %in_bounds, label %out_of_bounds 10 br i1 %var29, label %next, label %out_of_bounds 21 out_of_bounds: 36 ; CHECK: br i1 %var29, label %next, label %out_of_bounds 37 br i1 %var29, label %next, label %out_of_bounds 47 out_of_bounds: 61 ; CHECK: br i1 %var29, label %in_bounds, label %out_of_bounds 62 br i1 %var29, label %next, label %out_of_bounds 71 out_of_bounds:
|
/external/tensorflow/tensorflow/python/data/experimental/kernel_tests/ |
D | take_while_test.py | 59 num_elements=[10], upper_bound=[2], out_of_bounds=[False]) + 61 num_elements=[16], upper_bound=[7], out_of_bounds=[False]) + 63 num_elements=[100], upper_bound=[99], out_of_bounds=[False]) + 65 num_elements=[100], upper_bound=[101], out_of_bounds=[True]) + 67 num_elements=[0], upper_bound=[1], out_of_bounds=[True]))) 68 def testTakeWhileDatasetRange(self, num_elements, upper_bound, out_of_bounds): argument 72 if out_of_bounds:
|
/external/llvm-project/llvm/test/Transforms/IRCE/ |
D | non_known_positive_end.ll | 21 br i1 %rc, label %backedge, label %out_of_bounds 34 out_of_bounds: 55 br i1 %rc, label %backedge, label %out_of_bounds 68 out_of_bounds: 88 br i1 %rc, label %backedge, label %out_of_bounds 101 out_of_bounds: 121 br i1 %rc, label %backedge, label %out_of_bounds 134 out_of_bounds:
|
/external/tensorflow/tensorflow/core/kernels/ |
D | gather_nd_op_cpu_impl.h | 57 bool out_of_bounds = false; in GenerateIndices() local 61 out_of_bounds |= !FastBoundsCheck(ix_i, Tparams_.dimension(i)); in GenerateIndices() 63 return out_of_bounds; in GenerateIndices() 73 const bool out_of_bounds = GenerateIndices(loc, &ix); in operator() local 74 if (TF_PREDICT_FALSE(out_of_bounds)) { in operator()
|
D | gather_nd_op_gpu.cu.cc | 40 bool out_of_bounds = false; in GatherSliceOpKernel() local 45 out_of_bounds |= !FastBoundsCheck(index_j, batch_indices[j]); in GatherSliceOpKernel() 61 out[i] = (out_of_bounds) ? T(0) : ldg(params + offset + loc_offset); in GatherSliceOpKernel()
|
D | scatter_nd_op_cpu_impl.h | 133 bool out_of_bounds = false; 136 out_of_bounds |= !FastBoundsCheck(ix_d, output_shape_prefix[dim]); 139 if (TF_PREDICT_FALSE(out_of_bounds)) {
|
D | scatter_nd_op_gpu.cu.cc | 107 bool out_of_bounds = false; in ScatterNdOpKernel() local 112 out_of_bounds |= !FastBoundsCheck(ix_d, output_shape_prefix[dim]); in ScatterNdOpKernel() 115 if (!out_of_bounds) { in ScatterNdOpKernel()
|
/external/llvm-project/llvm/test/Analysis/ScalarEvolution/ |
D | merge-add-rec-many-inputs.ll | 79 br i1 %cond, label %in_bounds, label %out_of_bounds 120 out_of_bounds: ; preds = %not_zero265 123 bci_565: ; preds = %out_of_bounds 126 not_subtype: ; preds = %out_of_bounds
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_sample_soa.c | 2032 LLVMValueRef *out_of_bounds) in lp_build_layer_coord() argument 2040 if (out_of_bounds) { in lp_build_layer_coord() 2046 *out_of_bounds = lp_build_or(int_coord_bld, out, out1); in lp_build_layer_coord() 2634 LLVMValueRef offset, out_of_bounds, out1; in lp_build_fetch_texel() local 2636 out_of_bounds = int_coord_bld->zero; in lp_build_fetch_texel() 2647 out_of_bound_ret_zero ? &out_of_bounds : NULL); in lp_build_fetch_texel() 2669 out_of_bounds = lp_build_or(int_coord_bld, out_of_bounds, out1); in lp_build_fetch_texel() 2685 out_of_bounds = lp_build_or(int_coord_bld, out_of_bounds, out1); in lp_build_fetch_texel() 2687 out_of_bounds = lp_build_or(int_coord_bld, out_of_bounds, out1); in lp_build_fetch_texel() 2694 out_of_bounds = lp_build_or(int_coord_bld, out_of_bounds, out1); in lp_build_fetch_texel() [all …]
|
D | lp_bld_format.h | 161 LLVMValueRef out_of_bounds,
|
D | lp_bld_sample.c | 945 LLVMValueRef *out_of_bounds) in lp_build_nearest_mip_level() argument 960 if (out_of_bounds) { in lp_build_nearest_mip_level() 966 *out_of_bounds = out; in lp_build_nearest_mip_level() 969 *out_of_bounds = lp_build_broadcast_scalar(&bld->int_coord_bld, out); in lp_build_nearest_mip_level() 973 *out_of_bounds = lp_build_unpack_broadcast_aos_scalars(bld->gallivm, in lp_build_nearest_mip_level() 978 level = lp_build_andnot(&bld->int_coord_bld, level, *out_of_bounds); in lp_build_nearest_mip_level()
|
D | lp_bld_sample.h | 589 LLVMValueRef *out_of_bounds);
|
D | lp_bld_format_soa.c | 1005 LLVMValueRef out_of_bounds, in lp_build_store_rgba_soa() argument 1082 …MBuildAnd(gallivm->builder, exec_mask, LLVMBuildNot(gallivm->builder, out_of_bounds, ""), "store_m… in lp_build_store_rgba_soa()
|
/external/mesa3d/src/intel/compiler/ |
D | brw_nir.c | 37 bool out_of_bounds; in remap_tess_levels() local 45 out_of_bounds = false; in remap_tess_levels() 50 out_of_bounds = component > 0; in remap_tess_levels() 53 out_of_bounds = true; in remap_tess_levels() 63 out_of_bounds = component > 1; in remap_tess_levels() 68 out_of_bounds = component == 3 && primitive_mode == GL_TRIANGLES; in remap_tess_levels() 74 if (out_of_bounds) { in remap_tess_levels()
|
/external/llvm-project/compiler-rt/lib/ubsan_minimal/ |
D | ubsan_minimal_handlers.cpp | 105 HANDLER(out_of_bounds, "out-of-bounds")
|
/external/compiler-rt/lib/ubsan/ |
D | ubsan_handlers.h | 81 RECOVERABLE(out_of_bounds, OutOfBoundsData *Data, ValueHandle Index)
|
/external/llvm-project/compiler-rt/lib/ubsan/ |
D | ubsan_handlers.h | 91 RECOVERABLE(out_of_bounds, OutOfBoundsData *Data, ValueHandle Index)
|
/external/llvm-project/llvm/docs/ |
D | CMakePrimer.rst | 265 foreach(var ${my_list} out_of_bounds) 272 # out_of_bounds 296 foreach(var IN LISTS my_list ITEMS out_of_bounds) 303 # out_of_bounds
|
/external/llvm-project/llvm/test/Transforms/IndVarSimplify/ |
D | post-inc-range.ll | 48 %out_of_bounds = icmp ugt i32 %i, 64 49 br i1 %out_of_bounds, label %for.end, label %continue
|
/external/llvm/docs/ |
D | CMakePrimer.rst | 293 foreach(var ${my_list} out_of_bounds) 300 # out_of_bounds 324 foreach(var IN LISTS my_list ITEMS out_of_bounds) 331 # out_of_bounds
|
/external/llvm-project/mlir/test/Dialect/Shape/ |
D | canonicalize.mlir | 276 // CHECK-LABEL: func @out_of_bounds 277 func @out_of_bounds() -> index { 312 // CHECK-LABEL: func @out_of_bounds 313 func @out_of_bounds() -> !shape.size {
|
/external/llvm-project/mlir/test/Transforms/ |
D | memref-bound-check.mlir | 187 // CHECK-LABEL: func @out_of_bounds 188 func @out_of_bounds() {
|
/external/angle/src/tests/deqp_support/ |
D | deqp_egl_test_expectations.txt | 176 3711 : dEQP-EGL.functional.robustness.reset_context.shaders.out_of_bounds.reset_status.reads.* = FA… 177 3711 : dEQP-EGL.functional.robustness.reset_context.shaders.out_of_bounds.reset_status.writes.* = F…
|
/external/deqp/external/openglcts/data/mustpass/egl/aosp_mustpass/3.2.3.x/ |
D | egl-master.txt | 3587 dEQP-EGL.functional.robustness.reset_context.shaders.out_of_bounds.reset_status.reads.uniform_block… 3588 dEQP-EGL.functional.robustness.reset_context.shaders.out_of_bounds.reset_status.reads.uniform_block… 3589 dEQP-EGL.functional.robustness.reset_context.shaders.out_of_bounds.reset_status.reads.uniform_block… 3590 dEQP-EGL.functional.robustness.reset_context.shaders.out_of_bounds.reset_status.reads.uniform_block… 3591 dEQP-EGL.functional.robustness.reset_context.shaders.out_of_bounds.reset_status.reads.shader_storag… 3592 dEQP-EGL.functional.robustness.reset_context.shaders.out_of_bounds.reset_status.reads.shader_storag… 3593 dEQP-EGL.functional.robustness.reset_context.shaders.out_of_bounds.reset_status.reads.shader_storag… 3594 dEQP-EGL.functional.robustness.reset_context.shaders.out_of_bounds.reset_status.reads.shader_storag… 3595 dEQP-EGL.functional.robustness.reset_context.shaders.out_of_bounds.reset_status.reads.local_array.v… 3596 dEQP-EGL.functional.robustness.reset_context.shaders.out_of_bounds.reset_status.reads.local_array.f… [all …]
|