HomeSort by relevance Sort by last modified time
    Searched refs:num (Results 1 - 25 of 1767) 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);
  /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...]
  /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) {
lldiv.c 53 lldiv(long long int num, long long int denom)
59 r.quot = num / denom;
60 r.rem = num % denom;
61 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))
  /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...]
  /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) {}
  /external/elfutils/0.153/libasm/
asm_adduleb128.c 38 asm_adduleb128 (asmscn, num)
40 uint32_t num;
45 if (asmscn->type == SHT_NOBITS && unlikely (num != 0))
52 fprintf (asmscn->ctx->out.file, "\t.uleb128\t%" PRIu32 "\n", num);
55 char tmpbuf[(sizeof (num) * 8 + 6) / 7];
61 byte = num & 0x7f;
63 num >>= 7;
64 if (num == 0)
  /external/kernel-headers/original/uapi/linux/hsi/
hsi_char.h 28 #define HSC_IOW(num, dtype) _IOW(HSI_CHAR_MAGIC, num, dtype)
29 #define HSC_IOR(num, dtype) _IOR(HSI_CHAR_MAGIC, num, dtype)
30 #define HSC_IOWR(num, dtype) _IOWR(HSI_CHAR_MAGIC, num, dtype)
31 #define HSC_IO(num) _IO(HSI_CHAR_MAGIC, num)
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
pmu.l 11 long num;
14 num = strtoul(perf_pmu_text, NULL, base);
18 perf_pmu_lval.num = num;
  /external/openssl/crypto/asn1/
t_pkey.c 65 int ASN1_bn_print(BIO *bp, const char *number, const BIGNUM *num,
71 if (num == NULL) return(1);
72 neg = (BN_is_negative(num))?"-":"";
75 if (BN_is_zero(num))
82 if (BN_num_bytes(num) <= BN_BYTES)
85 (unsigned long)num->d[0],neg,(unsigned long)num->d[0])
94 n=BN_bn2bin(num,&buf[1]);
  /external/libcxx/test/utilities/ratio/ratio.ratio/
ratio1.fail.cpp 17 const std::intmax_t t1 = std::ratio<1, 0>::num;
ratio2.fail.cpp 18 const std::intmax_t t1 = std::ratio<0x8000000000000000ULL, 1>::num;
ratio3.fail.cpp 18 const std::intmax_t t1 = std::ratio<1, 0x8000000000000000ULL>::num;

Completed in 687 milliseconds

1 2 3 4 5 6 7 8 91011>>