Home
last modified time | relevance | path

Searched refs:shift_left (Results 1 – 25 of 42) sorted by relevance

12

/external/cronet/buildtools/third_party/libc++/trunk/test/std/algorithms/alg.modifying.operations/alg.shift/
Dshift_left.pass.cpp34 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/
Dixheaacd_mps_res_huffman.h28 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()
Dixheaacd_basic_ops.h51 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/
Dllvm.ml771 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/
Dshift_left.h27 shift_left(_ForwardIterator __first, _ForwardIterator __last, in shift_left() function
/external/llvm/test/CodeGen/Mips/
Dmicromips-shift.ll11 define i32 @shift_left() nounwind {
/external/cronet/buildtools/third_party/libc++/trunk/docs/Status/
DRangesAlgorithms.csv8 C++23,`shift_left <https://wg21.link/p2440r1>`_,Unassigned,No patch yet,Not started
DCxx2bPapers.csv49 "`P2440R1 <https://wg21.link/P2440R1>`__","LWG","``ranges::iota``, ``ranges::shift_left`` and ``ran…
/external/skia/src/core/
DSkMipmap.cpp176 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/
Dhlo-legalize-to-lhlo.mlir355 // 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/
Dlegalize-tf-binary-elementwise.mlir76 // 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/
Dcollectives.cc363 bool shift_left, in CreateConstSrcTargetPair() argument
399 shift_left ? mesh_coordinate - 1 : mesh_coordinate + 1; in CreateConstSrcTargetPair()
/external/eigen/test/
Darray_cwise.cpp630 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/
Ddepthwiseconv_uint8.h1732 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/
Drobust_against_cpp20_hostile_iterators.compile.pass.cpp208 (void) std::shift_left(it, it, 0); in test()
/external/cronet/buildtools/third_party/libc++/trunk/test/std/algorithms/
Drobust_against_adl.compile.pass.cpp203 (void)std::shift_left(first, last, count); in all_the_algorithms()
Drobust_re_difference_type.compile.pass.cpp235 (void)std::shift_left(first, last, count); in all_the_algorithms()
/external/libaom/third_party/libwebm/mkvmuxer/
Dmkvmuxer.cc4148 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/
Dmkvmuxer.cc4148 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/
Dmkvmuxer.cc4148 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/
Dxla.py201 shift_left = _broadcasting_binary_op(bitwise_ops.left_shift) variable
/external/tensorflow/tensorflow/compiler/mlir/xla/tests/hlo_to_lhlo_with_xla/
Dops.mlir544 // 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/
Dops.mlir726 "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/
Dchlo_legalize_to_hlo_broadcasts.mlir278 // CHECK: mhlo.shift_left %arg0, %arg1
/external/cronet/buildtools/third_party/libc++/trunk/include/
DCMakeLists.txt178 __algorithm/shift_left.h

12