/external/cronet/buildtools/third_party/libc++/trunk/test/std/algorithms/alg.modifying.operations/alg.shift/ |
D | shift_left.pass.cpp | 34 Iter it = std::shift_left(Iter(work), Iter(work+n), k); in test() 51 Iter it = std::shift_left(b, e, 0); in test() 62 Iter it = std::shift_left(b, e, 1); in test() 70 Iter it = std::shift_left(b, e, 2); in test() 78 Iter it = std::shift_left(b, e, 6); in test() 88 Iter it = std::shift_left(b, e, std::size(input)); in test() 99 Iter it = std::shift_left(b, e, std::size(input) + 1); in test()
|
/external/libxaac/decoder/ |
D | ixheaacd_mps_res_huffman.h | 28 static PLATFORM_INLINE WORD32 ixheaacd_res_exts(UWORD32 a, WORD32 shift_left, in ixheaacd_res_exts() argument 31 x = (UWORD32)a << shift_left; in ixheaacd_res_exts()
|
D | ixheaacd_basic_ops.h | 51 static PLATFORM_INLINE UWORD32 ixheaacd_extu(UWORD32 a, WORD32 shift_left, in ixheaacd_extu() argument 54 x = (UWORD32)a << shift_left; in ixheaacd_extu()
|
/external/llvm/bindings/ocaml/llvm/ |
D | llvm.ml | 771 Attribute.Zext -> Int32.shift_left 1l 0 772 | Attribute.Sext -> Int32.shift_left 1l 1 773 | Attribute.Noreturn -> Int32.shift_left 1l 2 774 | Attribute.Inreg -> Int32.shift_left 1l 3 775 | Attribute.Structret -> Int32.shift_left 1l 4 776 | Attribute.Nounwind -> Int32.shift_left 1l 5 777 | Attribute.Noalias -> Int32.shift_left 1l 6 778 | Attribute.Byval -> Int32.shift_left 1l 7 779 | Attribute.Nest -> Int32.shift_left 1l 8 780 | Attribute.Readnone -> Int32.shift_left 1l 9 [all …]
|
/external/cronet/buildtools/third_party/libc++/trunk/include/__algorithm/ |
D | shift_left.h | 27 shift_left(_ForwardIterator __first, _ForwardIterator __last, in shift_left() function
|
/external/llvm/test/CodeGen/Mips/ |
D | micromips-shift.ll | 11 define i32 @shift_left() nounwind {
|
/external/cronet/buildtools/third_party/libc++/trunk/docs/Status/ |
D | RangesAlgorithms.csv | 8 C++23,`shift_left <https://wg21.link/p2440r1>`_,Unassigned,No patch yet,Not started
|
D | Cxx2bPapers.csv | 49 "`P2440R1 <https://wg21.link/P2440R1>`__","LWG","``ranges::iota``, ``ranges::shift_left`` and ``ran…
|
/external/skia/src/core/ |
D | SkMipmap.cpp | 176 template <typename T> T shift_left(const T& x, int bits) { in shift_left() function 180 skvx::float4 shift_left(const skvx::float4& x, int bits) { in shift_left() function 369 auto b = shift_left(add_121(b0, b1, b2), 1); in downsample_3_3()
|
/external/tensorflow/tensorflow/compiler/xla/mlir_hlo/tests/Dialect/mhlo/ |
D | hlo-legalize-to-lhlo.mlir | 355 // CHECK-LABEL: func @shift_left 356 func.func @shift_left(%lhs: tensor<2x2xi32>, %rhs: tensor<2x2xi32>) 358 %result = "mhlo.shift_left"(%lhs, %rhs) 360 // CHECK: "lmhlo.shift_left"(%{{.*}}, %{{.*}})
|
/external/tensorflow/tensorflow/compiler/mlir/xla/tests/ |
D | legalize-tf-binary-elementwise.mlir | 76 // CHECK-LABEL: func @shift_left 77 func.func @shift_left(%arg0: tensor<4xi32>, %arg1: tensor<4xi32>) -> tensor<4xi32> { 78 // CHECK: mhlo.shift_left %arg0, %arg1 : tensor<4xi32>
|
/external/tensorflow/tensorflow/dtensor/mlir/ |
D | collectives.cc | 363 bool shift_left, in CreateConstSrcTargetPair() argument 399 shift_left ? mesh_coordinate - 1 : mesh_coordinate + 1; in CreateConstSrcTargetPair()
|
/external/eigen/test/ |
D | array_cwise.cpp | 630 struct shift_left { struct 654 VERIFY( (m2 == m1.unaryExpr(shift_left<2>())).all() ); in array_integer() argument 656 VERIFY( (m2 == m1.unaryExpr(shift_left<9>())).all() ); in array_integer()
|
/external/tensorflow/tensorflow/lite/kernels/internal/optimized/ |
D | depthwiseconv_uint8.h | 1732 const bool shift_left = (output_shift > 0); 1733 const int32 multiplier_power_of_two = shift_left ? (1 << output_shift) : 1; 1907 if (!shift_left) { 1952 if (!shift_left) { 1990 if (!shift_left) {
|
/external/cronet/buildtools/third_party/libc++/trunk/test/libcxx/algorithms/ |
D | robust_against_cpp20_hostile_iterators.compile.pass.cpp | 208 (void) std::shift_left(it, it, 0); in test()
|
/external/cronet/buildtools/third_party/libc++/trunk/test/std/algorithms/ |
D | robust_against_adl.compile.pass.cpp | 203 (void)std::shift_left(first, last, count); in all_the_algorithms()
|
D | robust_re_difference_type.compile.pass.cpp | 235 (void)std::shift_left(first, last, count); in all_the_algorithms()
|
/external/libaom/third_party/libwebm/mkvmuxer/ |
D | mkvmuxer.cc | 4148 int32_t shift_left = 0; in WriteFramesLessThan() local 4173 ++shift_left; in WriteFramesLessThan() 4183 if (shift_left > 0) { in WriteFramesLessThan() 4184 if (shift_left >= frames_size_) in WriteFramesLessThan() 4187 const int32_t new_frames_size = frames_size_ - shift_left; in WriteFramesLessThan() 4189 frames_[i] = frames_[i + shift_left]; in WriteFramesLessThan()
|
/external/libwebm/mkvmuxer/ |
D | mkvmuxer.cc | 4148 int32_t shift_left = 0; in WriteFramesLessThan() local 4173 ++shift_left; in WriteFramesLessThan() 4183 if (shift_left > 0) { in WriteFramesLessThan() 4184 if (shift_left >= frames_size_) in WriteFramesLessThan() 4187 const int32_t new_frames_size = frames_size_ - shift_left; in WriteFramesLessThan() 4189 frames_[i] = frames_[i + shift_left]; in WriteFramesLessThan()
|
/external/libvpx/third_party/libwebm/mkvmuxer/ |
D | mkvmuxer.cc | 4148 int32_t shift_left = 0; in WriteFramesLessThan() local 4173 ++shift_left; in WriteFramesLessThan() 4183 if (shift_left > 0) { in WriteFramesLessThan() 4184 if (shift_left >= frames_size_) in WriteFramesLessThan() 4187 const int32_t new_frames_size = frames_size_ - shift_left; in WriteFramesLessThan() 4189 frames_[i] = frames_[i + shift_left]; in WriteFramesLessThan()
|
/external/tensorflow/tensorflow/compiler/tf2xla/python/ |
D | xla.py | 201 shift_left = _broadcasting_binary_op(bitwise_ops.left_shift) variable
|
/external/tensorflow/tensorflow/compiler/mlir/xla/tests/hlo_to_lhlo_with_xla/ |
D | ops.mlir | 544 // CHECK: mhlo.shift_left 546 %res = "mhlo.shift_left"(%value0, %value1) : (tensor<2x2xi32>, tensor<2x2xi32>) -> tensor<2x2xi32>
|
/external/tensorflow/tensorflow/compiler/xla/mlir_hlo/tests/Dialect/lhlo/ |
D | ops.mlir | 726 "lmhlo.shift_left"(%arg0, %arg1, %arg_out) : (memref<1xi32>, memref<1xi32>, memref<1xi32>) -> () 734 "lmhlo.shift_left"(%arg0, %arg1, %arg_out) : (memref<1xf32>, memref<1xf32>, memref<1xf32>) -> ()
|
/external/tensorflow/tensorflow/compiler/xla/mlir_hlo/tests/Dialect/chlo/ |
D | chlo_legalize_to_hlo_broadcasts.mlir | 278 // CHECK: mhlo.shift_left %arg0, %arg1
|
/external/cronet/buildtools/third_party/libc++/trunk/include/ |
D | CMakeLists.txt | 178 __algorithm/shift_left.h
|