Home
last modified time | relevance | path

Searched refs:nums (Results 1 – 13 of 13) sorted by relevance

/external/guava/guava/src/com/google/common/math/
DBigIntegerMath.java339 static BigInteger listProduct(List<BigInteger> nums) { in listProduct() argument
340 return listProduct(nums, 0, nums.size()); in listProduct()
343 static BigInteger listProduct(List<BigInteger> nums, int start, int end) { in listProduct() argument
348 return nums.get(start); in listProduct()
350 return nums.get(start).multiply(nums.get(start + 1)); in listProduct()
352 return nums.get(start).multiply(nums.get(start + 1)).multiply(nums.get(start + 2)); in listProduct()
356 return listProduct(nums, start, m).multiply(listProduct(nums, m, end)); in listProduct()
/external/bluetooth/glib/tests/
Dslist-test.c135 gint nums[10] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 }; in test_slist_reverse() local
141 slist = g_slist_append (slist, &nums[i]); in test_slist_reverse()
159 gint nums[10] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 }; in test_slist_nth() local
165 slist = g_slist_append (slist, &nums[i]); in test_slist_nth()
Dlist-test.c143 gint nums[10] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 }; in test_list_reverse() local
149 list = g_list_append (list, &nums[i]); in test_list_reverse()
167 gint nums[10] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 }; in test_list_nth() local
173 list = g_list_append (list, &nums[i]); in test_list_nth()
/external/llvm/test/CodeGen/X86/
Ddbg-value-inlined-parameter.ll17 define i32 @foo(%struct.S1* nocapture %sp, i32 %nums) nounwind optsize ssp {
20 tail call void @llvm.dbg.value(metadata !{i32 %nums}, i64 0, metadata !18), !dbg !21
22 store i32 %nums, i32* %tmp2, align 4, !dbg !22, !tbaa !24
23 %call = tail call float* @bar(i32 %nums) nounwind optsize, !dbg !27
66 !17 = metadata !{i32 589837, metadata !1, metadata !"nums", metadata !1, i32 3, i64 32, i64 32, i64…
67 !18 = metadata !{i32 590081, metadata !0, metadata !"nums", metadata !1, i32 7, metadata !5, i32 0}…
/external/guava/guava-tests/test/com/google/common/base/
DPredicatesTest.java697 Collection<Integer> nums = Arrays.asList(1, 5); in testIn_apply() local
698 Predicate<Integer> isOneOrFive = Predicates.in(nums); in testIn_apply()
707 Collection<Integer> nums = ImmutableSet.of(1, 5); in testIn_equality() local
713 .addEqualityGroup(Predicates.in(nums), Predicates.in(nums), in testIn_equality()
733 Collection<Integer> nums = new CollectionThatThrowsNPE<Integer>(); in testIn_handlesNullPointerException() local
734 Predicate<Integer> isFalse = Predicates.in(nums); in testIn_handlesNullPointerException()
746 Collection<Integer> nums = new CollectionThatThrowsCCE<Integer>(); in testIn_handlesClassCastException() local
747 nums.add(3); in testIn_handlesClassCastException()
748 Predicate<Integer> isThree = Predicates.in(nums); in testIn_handlesClassCastException()
757 Collection<Number> nums = ImmutableSet.of(); in testIn_compilesWithExplicitSupertype() local
[all …]
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
Dactions.rb221 parser.nums.should == [ 10, 20, 30, 40, 50 ]
/external/bluetooth/glib/glib/
Dgtestutils.c159 g_printerr ("%s%.16Lg", ui ? ";" : "", msg->nums[ui]); in g_test_log_send()
215 msg.nums = largs; in g_test_log()
1841 gstring_append_double (gstring, msg->nums[ui]); in g_test_log_dump()
1885 msg.nums = g_new0 (long double, msg.n_nums); in g_test_log_extract()
1893 msg.nums[ui] = net_double (&p); in g_test_log_extract()
1901 g_free (msg.nums); in g_test_log_extract()
1986 g_free (tmsg->nums); in g_test_log_msg_free()
Dgtestutils.h248 long double *nums; member
/external/javassist/src/test/test/javassist/convert/
DArrayAccessReplaceTest.java391 private Integer[] nums; field in ArrayAccessReplaceTest.Complex
416 ns = nums; in complexRead()
/external/guava/guava-tests/test/com/google/common/collect/
DIterablesTest.java84 List<Integer> nums = asList(1, 2, 3, 4, 5); in testSize_collection_doesntIterate() local
85 List<Integer> collection = new ArrayList<Integer>(nums) { in testSize_collection_doesntIterate()
/external/opencv/cvaux/src/
Dcvepilines.cpp3164 int* nums, in icvStereoCalibration() argument
3188 nums, in icvStereoCalibration()
3200 nums, in icvStereoCalibration()
3219 nums, in icvStereoCalibration()
/external/opencv/cvaux/include/
Dcvaux.h588 int* nums,
/external/dropbear/libtomcrypt/
Dchanges871 …d numbers]. Also added a "low mem" variant that doesn't use more than 20KB [upto 4096 bit nums] of