HomeSort by relevance Sort by last modified time
    Searched refs:num (Results 51 - 75 of 2925) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/apache-xml/src/main/java/org/apache/xpath/operations/
Div.java 48 return new XNumber(left.num() / right.num());
60 public double num(XPathContext xctxt) method in class:Div
64 return (m_left.num(xctxt) / m_right.num(xctxt));
Minus.java 49 return new XNumber(left.num() - right.num());
61 public double num(XPathContext xctxt) method in class:Minus
65 return (m_left.num(xctxt) - m_right.num(xctxt));
Mod.java 48 return new XNumber(left.num() % right.num());
60 public double num(XPathContext xctxt) method in class:Mod
64 return (m_left.num(xctxt) % m_right.num(xctxt));
Mult.java 48 return new XNumber(left.num() * right.num());
60 public double num(XPathContext xctxt) method in class:Mult
63 return (m_left.num(xctxt) * m_right.num(xctxt));
Plus.java 48 return new XNumber(left.num() + right.num());
60 public double num(XPathContext xctxt) method in class:Plus
64 return (m_right.num(xctxt) + m_left.num(xctxt));
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
util.c 37 Word32 num = (Word32)L; local
40 }while(--num !=0);
56 Word32 temp1,temp2,num; local
62 num = (Word32)(L>>1);
70 }while(--num!=0);
  /external/chromium_org/third_party/webrtc/common_audio/signal_processing/
division_operations.c 26 uint32_t WebRtcSpl_DivU32U16(uint32_t num, uint16_t den)
31 return (uint32_t)(num / den);
38 int32_t WebRtcSpl_DivW32W16(int32_t num, int16_t den)
43 return (int32_t)(num / den);
50 int16_t WebRtcSpl_DivW32W16ResW16(int32_t num, int16_t den)
55 return (int16_t)(num / den);
62 int32_t WebRtcSpl_DivResultInQ31(int32_t num, int32_t den)
64 int32_t L_num = num;
70 if (num == 0)
73 if (num < 0
    [all...]
  /external/webrtc/src/common_audio/signal_processing/
division_operations.c 26 WebRtc_UWord32 WebRtcSpl_DivU32U16(WebRtc_UWord32 num, WebRtc_UWord16 den)
31 return (WebRtc_UWord32)(num / den);
38 WebRtc_Word32 WebRtcSpl_DivW32W16(WebRtc_Word32 num, WebRtc_Word16 den)
43 return (WebRtc_Word32)(num / den);
50 WebRtc_Word16 WebRtcSpl_DivW32W16ResW16(WebRtc_Word32 num, WebRtc_Word16 den)
55 return (WebRtc_Word16)(num / den);
62 WebRtc_Word32 WebRtcSpl_DivResultInQ31(WebRtc_Word32 num, WebRtc_Word32 den)
64 WebRtc_Word32 L_num = num;
70 if (num == 0)
73 if (num < 0
    [all...]
  /external/libcxx/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/
Android.mk 17 test_makefile := external/libcxx/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/Android.mk
19 test_name := localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_pointer
23 test_name := localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_int
27 test_name := localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long_long
31 test_name := localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/test_min_ma
    [all...]
  /external/elfutils/0.153/libasm/
asm_addsleb128.c 38 asm_addsleb128 (asmscn, num)
40 int32_t num;
45 if (asmscn->type == SHT_NOBITS && unlikely (num != 0))
52 fprintf (asmscn->ctx->out.file, "\t.sleb128\t%" PRId32 "\n", num);
55 char tmpbuf[(sizeof (num) * 8 + 6) / 7];
58 int32_t endval = num >> 31;
60 if (num == 0)
65 byte = num & 0x7f;
67 num >>= 7;
68 if (num == endval
    [all...]
  /external/openssl/crypto/rc4/
rc4s.cpp 45 int i,num=64,numm; local
49 num=atoi(argv[1]);
51 if (num == 0) num=256;
52 if (num > 1024-16) num=1024-16;
53 numm=num+8;
64 RC4(&ctx,num,buffer,buffer);
66 RC4(&ctx,num,buffer,buffer);
69 printf("RC4 (%d bytes) %d %d (%d) - 8 bytes\n",num,
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/
virtio_ring.h 65 unsigned int num; member in struct:vring
75 * like this. We assume num is a power of 2.
80 * struct vring_desc desc[num];
85 * __u16 available[num];
93 * struct vring_used_elem used[num];
96 static __inline__ void vring_init(struct vring *vr, unsigned int num, void *p,
99 vr->num = num;
101 vr->avail = p + num*sizeof(struct vring_desc);
102 vr->used = (void *)(((unsigned long)&vr->avail->ring[num] + align-1
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
virtio_ring.h 65 unsigned int num; member in struct:vring
75 * like this. We assume num is a power of 2.
80 * struct vring_desc desc[num];
85 * __u16 available[num];
93 * struct vring_used_elem used[num];
96 static __inline__ void vring_init(struct vring *vr, unsigned int num, void *p,
99 vr->num = num;
101 vr->avail = p + num*sizeof(struct vring_desc);
102 vr->used = (void *)(((unsigned long)&vr->avail->ring[num] + align-1
    [all...]
  /external/libcxx/include/support/win32/
math_win32.h 25 _LIBCPP_ALWAYS_INLINE bool isfinite( double num )
27 return _finite(num) != 0;
29 _LIBCPP_ALWAYS_INLINE bool isinf( double num )
31 return !isfinite(num) && !_isnan(num);
33 _LIBCPP_ALWAYS_INLINE bool isnan( double num )
35 return _isnan(num) != 0;
37 _LIBCPP_ALWAYS_INLINE bool isnormal( double num )
39 int class_ = _fpclass(num);
77 _LIBCPP_ALWAYS_INLINE bool signbit( double num )
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/
math_win32.h 25 _LIBCPP_ALWAYS_INLINE bool isfinite( double num )
27 return _finite(num) != 0;
29 _LIBCPP_ALWAYS_INLINE bool isinf( double num )
31 return !isfinite(num) && !_isnan(num);
33 _LIBCPP_ALWAYS_INLINE bool isnan( double num )
35 return _isnan(num) != 0;
37 _LIBCPP_ALWAYS_INLINE bool isnormal( double num )
39 int class_ = _fpclass(num);
77 _LIBCPP_ALWAYS_INLINE bool signbit( double num )
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/
math_win32.h 25 _LIBCPP_ALWAYS_INLINE bool isfinite( double num )
27 return _finite(num) != 0;
29 _LIBCPP_ALWAYS_INLINE bool isinf( double num )
31 return !isfinite(num) && !_isnan(num);
33 _LIBCPP_ALWAYS_INLINE bool isnan( double num )
35 return _isnan(num) != 0;
37 _LIBCPP_ALWAYS_INLINE bool isnormal( double num )
39 int class_ = _fpclass(num);
77 _LIBCPP_ALWAYS_INLINE bool signbit( double num )
    [all...]
  /external/chromium_org/third_party/skia/src/pathops/
SkQuarticRoot.cpp 64 int num = SkDCubic::RootsReal(t4, t3, t2, t1, roots); local
65 for (int i = 0; i < num; ++i) {
67 return num;
70 roots[num++] = 0;
71 return num;
78 int num = SkDCubic::RootsReal(t4, t4 + t3, -(t1 + t0), -t0, roots); local
79 for (int i = 0; i < num; ++i) {
81 return num;
84 roots[num++] = 1;
85 return num;
105 int num; local
    [all...]
  /external/skia/src/pathops/
SkQuarticRoot.cpp 64 int num = SkDCubic::RootsReal(t4, t3, t2, t1, roots); local
65 for (int i = 0; i < num; ++i) {
67 return num;
70 roots[num++] = 0;
71 return num;
78 int num = SkDCubic::RootsReal(t4, t4 + t3, -(t1 + t0), -t0, roots); local
79 for (int i = 0; i < num; ++i) {
81 return num;
84 roots[num++] = 1;
85 return num;
105 int num; local
    [all...]
  /external/openssl/crypto/des/
enc_read.c 104 long num=0,rnum;
167 /* num=0; */
168 n2l(p,num);
169 /* num should be rounded up to the next group of eight
172 if ((num > MAXWRITE) || (num < 0)) /* error */
174 rnum=(num < 8)?8:((num+7)/8*8);
192 if (len < num)
195 DES_pcbc_encrypt(net,unnet,num,sched,iv,DES_DECRYPT)
    [all...]
  /external/openssl/crypto/aes/
aes_cfb.c 57 * 128bit block we have used is contained in *num;
62 unsigned char *ivec, int *num, const int enc) {
64 CRYPTO_cfb128_encrypt(in,out,length,key,ivec,num,enc,(block128_f)AES_encrypt);
70 unsigned char *ivec, int *num, const int enc)
72 CRYPTO_cfb128_1_encrypt(in,out,length,key,ivec,num,enc,(block128_f)AES_encrypt);
77 unsigned char *ivec, int *num, const int enc)
79 CRYPTO_cfb128_8_encrypt(in,out,length,key,ivec,num,enc,(block128_f)AES_encrypt);
  /external/libexif/test/
test-sorted.c 32 unsigned int i, num; local
34 num = exif_tag_table_count() - 1; /* last entry is a NULL terminator */
35 for (i=0; i < num; ++i) {
  /art/test/005-annotations/src/android/test/anno/
SubNoted.java 3 @AnnoFancyType(num=5) // first occurrence of AnnoFancyType
  /external/libcxx/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.virtuals/
Android.mk 17 test_makefile := external/libcxx/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.virtuals/Android.mk
19 test_name := localization/locale.categories/category.numeric/locale.num.get/facet.num.get.virtuals/tested_elsewhere
  /external/openssl/crypto/rand/
rand_egd.c 76 * num the number of bytes read from the EGD socket. This number is either
89 * num the number of bytes read from the EGD socket. This number is either
140 int len, num, numbytes; local
194 num = write(fd, egdbuf + numbytes, 2 - numbytes);
195 if (num >= 0)
196 numbytes += num;
218 num = read(fd, egdbuf, 1);
219 if (num == 0)
221 else if (num > 0)
222 numbytes += num;
286 int num, ret = 0; local
    [all...]
  /external/chromium_org/sandbox/linux/seccomp-bpf/
syscall_iterator.cc 83 bool SyscallIterator::IsValid(uint32_t num) {
85 if (num >= min_syscall && num <= MAX_PUBLIC_SYSCALL) {
88 if (IsArmPrivate(num)) {
95 bool SyscallIterator::IsArmPrivate(uint32_t num) {
96 return (num >= MIN_PRIVATE_SYSCALL && num <= MAX_PRIVATE_SYSCALL) ||
97 (num >= MIN_GHOST_SYSCALL && num <= MAX_SYSCALL);

Completed in 564 milliseconds

1 23 4 5 6 7 8 91011>>