/external/apache-xml/src/main/java/org/apache/xpath/objects/ |
XNumber.java | 55 * @param num Value of the object 57 public XNumber(Number num) 62 m_val = num.doubleValue(); 63 setObject(num); 92 public double num() method in class:XNumber 104 public double num(XPathContext xctxt) method in class:XNumber 214 // BigDecimal num = new BigDecimal(s); 215 // int newScale = num.scale() - (sigDig - PRECISION); 218 // s = num.setScale(newScale, BigDecimal.ROUND_HALF_UP).toString(); 292 double num = m_val local [all...] |
/external/boringssl/src/crypto/fipsmodule/bn/asm/ |
co-586.pl | 118 local($name,$num)=@_; 135 $tot=$num+$num-1; 174 $na=$as+($i < ($num-1)); 175 $nb=$bs+($i >= ($num-1)); 189 $as++ if ($i < ($num-1)); 190 $ae++ if ($i >= ($num-1)); 192 $bs++ if ($i >= ($num-1)); 193 $be++ if ($i < ($num-1)); 209 local($name,$num)=@_ [all...] |
/external/cmockery/cmockery_0_1_2/src/example/ |
allocate_module.c | 25 #define calloc(num, size) _test_calloc(num, size, __FILE__, __LINE__)
|
/external/elfutils/libasm/ |
asm_adduint8.c | 51 UFCT(SIZE) (AsmScn_t *asmscn, UTYPE(SIZE) num) 53 return INTUSE(FCT(SIZE)) (asmscn, (TYPE(SIZE)) num);
|
/external/icu/icu4c/source/tools/toolutil/ |
denseranges.cpp | 137 int32_t num; local 138 for(i=0, num=2;; ++i, ++num) { 145 if(length>num*2 && length>=(density*maxLength)/0x100) { 149 // Use the num ranges with the num-1 largest gaps. 150 gaps.truncate(num-1); 152 for(i=0; i<=num-2; ++i) { 158 ranges[num-1][1]=maxValue; 159 return num; [all...] |
/external/ltp/testcases/network/stress/dns/ |
dns-stress01-rmt | 56 num=0 58 while [ $num -lt $connect_quantity ]; do 63 num=$(($num + 1))
|
dns-stress02-rmt | 60 num=0 62 while [ $num -lt $connect_quantity ]; do 67 num=$(($num + 1))
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
memory_pool.h | 52 * and reserved counters to accommodate up to num new element. 66 #define memory_pool_array_reserve(pool, type, array, size, reserved, num) do { \ 67 unsigned int _num = (num); \
|
/external/python/cpython2/Tools/ssl/ |
make_ssl_data.py | 27 code, name, num = match.groups() 28 num = int(num) 30 codes.append((code, (libcode, name, num))) 50 new_code_nums = set((libcode, num) 51 for (code, (libcode, name, num)) in new_codes) 78 for errcode, (libcode, name, num) in sorted(codes.items()): 82 w(' {"%s", %s, %d},' % (name, libcode, num))
|
/external/python/cpython3/Tools/ssl/ |
make_ssl_data.py | 27 code, name, num = match.groups() 28 num = int(num) 30 codes.append((code, (libcode, name, num))) 50 new_code_nums = set((libcode, num) 51 for (code, (libcode, name, num)) in new_codes) 78 for errcode, (libcode, name, num) in sorted(codes.items()): 82 w(' {"%s", %s, %d},' % (name, libcode, num))
|
/external/syzkaller/vendor/golang.org/x/sys/unix/ |
mksysnum_dragonfly.pl | 31 my $num = $1; 44 print " $name = $num; // $proto\n";
|
mksysnum_freebsd.pl | 31 my $num = $1; 44 print " $name = $num; // $proto\n";
|
mksysnum_openbsd.pl | 31 my $num = $1; 44 print " $name = $num; // $proto\n";
|
/external/tensorflow/tensorflow/core/kernels/ |
constant_op_test.cc | 94 // Returns graph containing "num" const nodes. If 'sequential' is 97 static Graph* ManyConsts(int num, bool sequential) { 100 for (int i = 0; i < num; ++i) { 112 static void BM_ManyConsts_Parallel(int iters, int num) { 113 testing::ItemsProcessed(static_cast<int64>(iters) * num); 114 test::Benchmark("cpu", ManyConsts(num, false /* !sequential */)).Run(iters); 118 static void BM_ManyConsts_Sequential(int iters, int num) { 119 testing::ItemsProcessed(static_cast<int64>(iters) * num); 120 test::Benchmark("cpu", ManyConsts(num, true /* sequential */)).Run(iters);
|
/external/tensorflow/tensorflow/core/lib/strings/ |
ordered_code.h | 57 static void WriteNumIncreasing(string* dest, uint64 num); 58 static void WriteSignedNumIncreasing(string* dest, int64 num);
|
/external/toolchain-utils/ |
perf-to-inst-page.sh | 74 num=$(awk 'END {print NR+1}' out.txt) 84 plot 'out.txt' using (\$0/$num*10):(\$3/1024/1024) with dots notitle
|
/external/u-boot/drivers/misc/ |
fsl_devdis.c | 14 void device_disable(const struct devdis_table *tbl, uint32_t num) 22 for (i = 0; i < num; i++) {
|
/external/webrtc/webrtc/modules/video_processing/ |
video_decimator.cc | 126 int32_t num = 0; local 128 for (num = 1; num < (kFrameCountHistory_size - 1); num++) { 130 if (incoming_frame_times_[num] <= 0 || 131 now - incoming_frame_times_[num] > kFrameHistoryWindowMs) { 137 if (num > 1) { 138 int64_t diff = now - incoming_frame_times_[num - 1];
|
/frameworks/av/media/libstagefright/ |
SkipCutBuffer.cpp | 137 void SkipCutBuffer::write(const char *src, size_t num) { 145 if (available < num) { 146 int32_t newcapacity = mCapacity + (num - available); 156 if (copyfirst > num) copyfirst = num; 159 num -= copyfirst; 164 if (num) { 165 memcpy(mCutBuffer, src, num); 166 mWriteHead += num; 171 size_t SkipCutBuffer::read(char *dst, size_t num) { [all...] |
/external/boringssl/src/crypto/fipsmodule/bn/ |
montgomery.c | 426 int num = mont->N.width; local 427 if (num >= (128 / BN_BITS2) && 428 a->width == num && 429 b->width == num) { 430 if (!bn_wexpand(r, num)) { 433 if (!bn_mul_mont(r->d, a->d, b->d, mont->N.d, mont->n0, num)) { 440 r->width = num; 453 void bn_to_montgomery_small(BN_ULONG *r, const BN_ULONG *a, size_t num, 455 bn_mod_mul_montgomery_small(r, a, mont->RR.d, num, mont); 458 void bn_from_montgomery_small(BN_ULONG *r, const BN_ULONG *a, size_t num, [all...] |
/external/python/cpython2/Lib/lib-tk/ |
SimpleDialog.py | 23 self.num = default 27 for num in range(len(buttons)): 28 s = buttons[num] 30 command=(lambda self=self, num=num: self.done(num))) 31 if num == default: 71 return self.num 85 def done(self, num): 86 self.num = nu [all...] |
/external/u-boot/include/ |
netdev.h | 82 int num = 0; local 87 num += eepro100_initialize(bis); 90 num += dc21x4x_initialize(bis); 93 num += e1000_initialize(bis); 96 num += pcnet_initialize(bis); 99 num += natsemi_initialize(bis); 102 num += ns8382x_initialize(bis); 105 num += rtl8139_initialize(bis); 108 num += rtl8169_initialize(bis); 111 num += uli526x_initialize(bis) [all...] |
tsec.h | 32 #define TSEC_GET_REGS(num, offset) \ 34 (TSEC_BASE_ADDR + (((num) - 1) * (offset))) 36 #define TSEC_GET_REGS_BASE(num) \ 37 TSEC_GET_REGS((num), TSEC_SIZE) 39 #define TSEC_GET_MDIO_REGS(num, offset) \ 41 (CONFIG_SYS_MDIO_BASE_ADDR + ((num) - 1) * (offset)) 43 #define TSEC_GET_MDIO_REGS_BASE(num) \ 44 TSEC_GET_MDIO_REGS((num), TSEC_MDIO_OFFSET) 48 #define STD_TSEC_INFO(num) \ 50 .regs = TSEC_GET_REGS_BASE(num), \ [all...] |
/device/generic/goldfish/wifi/wifi_hal/ |
info.h | 35 wifi_error getInterfaces(int* num, wifi_interface_handle** interfaces);
|
/device/google/contexthub/firmware/variant/argonkey/src/os/ |
led.c | 28 .num = ARRAY_SIZE(local_leds_array),
|