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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
2004-02-20-Builtins.c 3 void zsqrtxxx(float num) {
4 num = sqrt(num);
  /sdk/emulator/opengl/host/libs/Translator/GLcommon/
GLutils.cpp 18 bool isPowerOf2(int num) {
19 return (num & (num -1)) == 0;
  /frameworks/native/opengl/libs/tools/
gltracegen 40 for (my $num = 0; $num < $len; $num++) {
41 if ($args[$num] ne "void") {
52 for (my $num = 0; $num < $len; $num++) {
53 if ($args[$num] ne "void") {
54 if ($num > 0) {
64 if ($args[$num] =~ /(\S+\s)+\**\s*([\w]+)/)
    [all...]
  /external/libnfc-nci/halimpl/bcm2079x/adaptation/
OverrideLog.cpp 53 unsigned long num = 0; local
56 num = 1;
57 if (GetNumValue (NAME_APPL_TRACE_LEVEL, &num, sizeof(num)))
58 appl_trace_level = (unsigned char) num;
64 sscanf (valueStr, "%lu", &num);
65 appl_trace_level = (unsigned char) num;
  /external/libnfc-nci/src/adaptation/
OverrideLog.cpp 51 unsigned long num = 0; local
54 num = 1;
55 if (GetNumValue (NAME_APPL_TRACE_LEVEL, &num, sizeof(num)))
56 appl_trace_level = (unsigned char) num;
62 sscanf (valueStr, "%lu", &num);
63 appl_trace_level = (unsigned char) num;
  /external/e2fsprogs/lib/e2p/
parse_num.c 19 unsigned long long num; local
21 num = strtoull(arg, &p, 0);
28 num <<= 10;
31 num <<= 10;
34 num <<= 10;
38 num <<= 10;
40 num >>= log_block_size;
44 num <<= 9;
46 num >>= (1+log_block_size);
53 return num;
67 unsigned long num; local
    [all...]
hashstr.c 21 int num; member in struct:hash
32 const char *e2p_hash2string(int num)
38 if (num == p->num)
41 sprintf(buf, "HASHALG_%d", num);
52 int num; local
56 return p->num;
64 num = strtol(string+8, &eptr, 10);
65 if (num > 255 || num < 0
    [all...]
  /ndk/tests/device/test-stlport_shared-exception/jni/
array5.cpp 12 int num; variable
18 if (count == num)
42 for (num = 0; num <= 8; ++num) {
new23.cpp 12 const unsigned num = 10; local
13 unsigned *data = new unsigned[2 * num];
15 for (unsigned i = 0; i < 2 * num; ++i)
17 if (ptr - data != num)
  /ndk/tests/device/test-stlport_static-exception/jni/
array5.cpp 12 int num; variable
18 if (count == num)
42 for (num = 0; num <= 8; ++num) {
new23.cpp 12 const unsigned num = 10; local
13 unsigned *data = new unsigned[2 * num];
15 for (unsigned i = 0; i < 2 * num; ++i)
17 if (ptr - data != num)
  /external/openssl/crypto/lhash/
num.pl 10 $num{$a[3]}++;
13 @a=sort {$a <=> $b } keys %num;
16 printf "%4d:%4d\n",$_,$num{$_};
  /bionic/libc/upstream-netbsd/lib/libc/stdlib/
div.c 47 div(int num, int denom)
51 r.quot = num / denom;
52 r.rem = num % denom;
63 * sign of num; if both are negative and r.quot has been
65 * have the opposite sign of num). These are considered
68 * If both are num and denom are positive, r will always
72 * if num >= 0, but r.rem < 0, we got the wrong answer.
76 if (num >= 0 && r.rem < 0) {
ldiv.c 47 ldiv(long num, long denom)
53 r.quot = num / denom;
54 r.rem = num % denom;
55 if (num >= 0 && r.rem < 0) {
  /external/ceres-solver/internal/ceres/
collections_port.cc 33 inline uint32 Hash32NumWithSeed(uint32 num, uint32 c) {
35 mix(num, b, c);
39 inline uint64 Hash64NumWithSeed(uint64 num, uint64 c) {
41 mix(num, b, c);
  /external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
next_available_offset.sh 33 num=$(grep 'offset="' gl_API.xml |\
39 echo $((num + 1))
  /external/e2fsprogs/lib/et/
et_name.c 23 const char * error_table_name(errcode_t num)
29 /* num = aa aaa abb bbb bcc ccc cdd ddd d?? ??? ??? */
31 num >>= ERRCODE_RANGE;
32 /* num = ?? ??? ??? aaa aaa bbb bbb ccc ccc ddd ddd */
33 num &= 077777777L;
34 /* num = 00 000 000 aaa aaa bbb bbb ccc ccc ddd ddd */
36 ch = (int)((num >> BITS_PER_CHAR * i) & ((1 << BITS_PER_CHAR) - 1));
  /external/mesa3d/src/mapi/glapi/gen/
next_available_offset.sh 33 num=$(grep 'offset="' gl_API.xml |\
39 echo $((num + 1))
  /system/core/toolbox/upstream-netbsd/lib/libc/stdlib/
strsuftoll.c 137 long long num, t; local
153 num = strtoll(val, &expr, 10);
162 t = num;
163 num *= 512; /* 1 block */
164 if (t > num)
169 t = num;
170 num *= 1024; /* 1 kibibyte */
171 if (t > num)
176 t = num;
177 num *= 1048576; /* 1 mebibyte *
    [all...]
  /external/openssl/crypto/des/
ofb_enc.c 74 register int num=numbits; local
78 if (num > 64) return;
79 if (num > 32)
82 if (num >= 64)
85 mask1=(1L<<(num-32))-1;
89 if (num == 32)
92 mask0=(1L<<num)-1;
115 if (num == 32)
117 else if (num == 64)
119 else if (num > 32) /* && num != 64 *
    [all...]
  /frameworks/native/opengl/tests/gl_perf/
filltest.cpp 45 for (uint32_t num = 0; num < gFragmentTestCount; num++) {
46 doSingleTest(num, 2);
47 if (gFragmentTests[num]->texCount) {
48 doSingleTest(num, 1);
  /bionic/libc/kernel/uapi/linux/hsi/
hsi_char.h 22 #define HSC_IOW(num, dtype) _IOW(HSI_CHAR_MAGIC, num, dtype)
24 #define HSC_IOR(num, dtype) _IOR(HSI_CHAR_MAGIC, num, dtype)
25 #define HSC_IOWR(num, dtype) _IOWR(HSI_CHAR_MAGIC, num, dtype)
26 #define HSC_IO(num) _IO(HSI_CHAR_MAGIC, num)
  /development/ndk/platforms/android-L/include/linux/hsi/
hsi_char.h 22 #define HSC_IOW(num, dtype) _IOW(HSI_CHAR_MAGIC, num, dtype)
24 #define HSC_IOR(num, dtype) _IOR(HSI_CHAR_MAGIC, num, dtype)
25 #define HSC_IOWR(num, dtype) _IOWR(HSI_CHAR_MAGIC, num, dtype)
26 #define HSC_IO(num) _IO(HSI_CHAR_MAGIC, num)
  /external/chromium_org/third_party/boringssl/src/crypto/asn1/
t_pkey.c 63 int ASN1_bn_print(BIO *bp, const char *number, const BIGNUM *num,
69 if (num == NULL) return(1);
70 neg = (BN_is_negative(num))?"-":"";
73 if (BN_is_zero(num))
80 if (BN_num_bytes(num) <= sizeof(long))
83 (unsigned long)num->d[0],neg,(unsigned long)num->d[0])
92 n=BN_bn2bin(num,&buf[1]);
  /external/chromium_org/third_party/boringssl/src/crypto/rand/
rand.c 22 void RAND_seed(const void *buf, int num) {}
24 void RAND_add(const void *buf, int num, double entropy) {}

Completed in 520 milliseconds

1 2 3 4 5 6 7 8 91011>>