/aosp_15_r20/external/jackson-core/src/main/java/com/fasterxml/jackson/core/io/ |
H A D | NumberOutput.java | 99 int ones = (v - (newValue * 1000)); // == value % 1000 in outputInt() local 145 int ones = (v - (newValue * 1000)); // == value % 1000 in outputInt() local 313 int ones = v - (thousands * 1000); // == value % 1000 in _outputUptoBillion() local 317 int ones = (v - (thousands * 1000)); // == value % 1000 in _outputUptoBillion() local 339 int ones = (v - (thousands * 1000)); // == value % 1000 in _outputFullBillion() local 368 int ones = v - (thousands * 1000); // == value % 1000 in _outputUptoBillion() local 372 int ones = (v - (thousands * 1000)); // == value % 1000 in _outputUptoBillion() local 394 int ones = (v - (thousands * 1000)); // == value % 1000 in _outputFullBillion() local 416 private static int _outputUptoMillion(char[] b, int off, int thousands, int ones) in _outputUptoMillion() 434 private static int _outputUptoMillion(byte[] b, int off, int thousands, int ones) in _outputUptoMillion()
|
/aosp_15_r20/external/webrtc/modules/audio_processing/ |
H A D | residual_echo_detector_unittest.cc | 23 std::vector<float> ones(160, 1.f); in TEST() local 50 std::vector<float> ones(160, 1.f); in TEST() local 72 std::vector<float> ones(160, 1.f); in TEST() local 109 std::vector<float> ones(160, 1.f); in TEST() local
|
/aosp_15_r20/external/rust/android-crates-io/crates/fixedbitset/tests/ |
D | tests.rs | 46 let ones: Vec<_> = fb.ones().collect(); in with_blocks() localVariable 49 let ones: Vec<_> = fb.ones().rev().collect(); in with_blocks() localVariable 52 let ones: Vec<_> = fb.ones().rev().alternate().collect(); in with_blocks() localVariable 307 fn ones() { in ones() function 319 let ones: Vec<_> = fb.ones().collect(); in ones() localVariable 349 let ones: Vec<_> = create().into_ones().collect(); in into_ones() localVariable 419 let ones: Vec<_> = fb.ones().collect(); in iter_ones_range() localVariable 1116 let ones = fbs.ones().collect::<Vec<usize>>(); in extend_on_empty() localVariable 1132 let ones = fbs.ones().collect::<Vec<usize>>(); in extend() localVariable
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/iterator/test/ |
D | function_input_iterator_test.cpp | 28 struct ones { struct 29 typedef int result_type; 30 result_type operator() () { in operator ()()
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/classic/example/fundamental/ |
D | roman_numerals.cpp | 81 struct ones : symbols<unsigned> struct 83 ones() in ones() argument
|
/aosp_15_r20/external/libvpx/vpx_dsp/mips/ |
H A D | loopfilter_masks_dspr2.h | 35 uint32_t ones = 0xFFFFFFFF; in filter_hev_mask_dspr2() local 134 uint32_t ones = 0xFFFFFFFF; in filter_hev_mask_flatmask4_dspr2() local 273 uint32_t ones = 0xFFFFFFFF; in flatmask5() local
|
/aosp_15_r20/external/mesa3d/src/util/tests/ |
H A D | u_atomic_test.cpp | 51 const TypeParam ones = TypeParam(-1); in TYPED_TEST() local 93 const TypeParam ones = TypeParam(-1); in TYPED_TEST() local
|
/aosp_15_r20/libcore/ojluni/src/test/java/math/BigDecimal/ |
H A D | ZeroScalingTests.java | 215 BigDecimal[] ones = { in multiplyTests() local 256 BigDecimal [] ones = { in divideTests() local
|
/aosp_15_r20/external/tensorflow/tensorflow/compiler/xla/tests/ |
H A D | pad_test.cc | 303 auto ones = std::make_unique<Array4D<int32_t>>(2, 3, 3, 2); in XLA_TEST_F() local 322 auto ones = std::make_unique<Array2D<float>>(4, 4); in XLA_TEST_P() local 446 auto ones = std::make_unique<Array4D<float>>(2, 2, 2, 2); in XLA_TEST_P() local
|
/aosp_15_r20/external/mesa3d/src/gallium/auxiliary/gallivm/ |
H A D | lp_bld_logic.c | 88 LLVMValueRef ones = LLVMConstAllOnes(int_vec_type); in lp_build_compare_ext() local 179 LLVMValueRef ones = LLVMConstAllOnes(int_vec_type); in lp_build_compare() local
|
/aosp_15_r20/external/coreboot/src/device/ |
H A D | pci_device.c | 32 u8 value, ones, zeroes; in pci_moving_config8() local 49 u16 value, ones, zeroes; in pci_moving_config16() local 66 u32 value, ones, zeroes; in pci_moving_config32() local
|
/aosp_15_r20/external/tensorflow/tensorflow/compiler/xla/client/lib/ |
H A D | pooling.cc | 53 auto ones = Broadcast(One(b, dtype), input_dim_sizes); in AvgPoolDivideByCountWithGeneralPadding() local 274 std::vector<int64_t> ones(num_dims, 1LL); in AvgPoolGrad() local
|
/aosp_15_r20/external/tensorflow/tensorflow/compiler/tf2xla/kernels/ |
H A D | conv_op_helpers.cc | 342 std::vector<int64_t> ones(attrs.num_spatial_dims, 1); in MakeXlaBackpropInputConvOp() local 440 std::vector<int64_t> ones(attrs.num_spatial_dims, 1); in MakeXlaBackpropFilterConvOp() local
|
/aosp_15_r20/external/pytorch/aten/src/ATen/cpu/vec/vec256/ |
H A D | vec256_bfloat16.h | 51 __m256i ones = _mm256_set1_epi32(0x1); in cvtfp32_bf16() local 74 __m256i ones = _mm256_set1_epi32(0x1); in cvtfp32_bf16() local 595 auto ones = _mm256_set1_ps(1); in reciprocal() local 603 auto ones = _mm256_set1_ps(1); in rsqrt() local
|
/aosp_15_r20/external/eigen/doc/snippets/ |
H A D | SelfAdjointView_operatorNorm.cpp | 1 MatrixXd ones = MatrixXd::Ones(3,3); variable
|
H A D | EigenSolver_eigenvalues.cpp | 1 MatrixXd ones = MatrixXd::Ones(3,3); variable
|
H A D | SelfAdjointEigenSolver_eigenvalues.cpp | 1 MatrixXd ones = MatrixXd::Ones(3,3); variable
|
H A D | MatrixBase_operatorNorm.cpp | 1 MatrixXd ones = MatrixXd::Ones(3,3); variable
|
H A D | ComplexEigenSolver_eigenvalues.cpp | 1 MatrixXcf ones = MatrixXcf::Ones(3,3); variable
|
H A D | SelfAdjointEigenSolver_eigenvectors.cpp | 1 MatrixXd ones = MatrixXd::Ones(3,3); variable
|
H A D | EigenSolver_eigenvectors.cpp | 1 MatrixXd ones = MatrixXd::Ones(3,3); variable
|
H A D | ComplexEigenSolver_eigenvectors.cpp | 1 MatrixXcf ones = MatrixXcf::Ones(3,3); variable
|
H A D | MatrixBase_eigenvalues.cpp | 1 MatrixXd ones = MatrixXd::Ones(3,3); variable
|
H A D | SelfAdjointView_eigenvalues.cpp | 1 MatrixXd ones = MatrixXd::Ones(3,3); variable
|
/aosp_15_r20/external/llvm/test/MC/X86/ |
H A D | pr28547.s | 3 ones: label
|