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

1 2 3 4 5 6 7 8 91011>>

  /external/syslinux/com32/lib/
strtoul.c 2 #define NAME strtoul
  /external/e2fsprogs/lib/uuid/
parse.c 66 uuid.time_low = strtoul(in, NULL, 16);
67 uuid.time_mid = strtoul(in+9, NULL, 16);
68 uuid.time_hi_and_version = strtoul(in+14, NULL, 16);
69 uuid.clock_seq = strtoul(in+19, NULL, 16);
75 uuid.node[i] = strtoul(buf, NULL, 16);
  /external/syslinux/dos/
strtoul.c 2 * strtoul.c
4 * strtoul() function
12 unsigned long strtoul(const char *nptr, char **endptr, int base) function
stdlib.h 20 extern unsigned long int strtoul(const char *nptr,
  /external/vboot_reference/tests/futility/
binary_editor.c 27 offset = (uint32_t)strtoul(argv[1], 0, 0);
32 c = (uint8_t)strtoul(argv[curarg++], 0, 0);
  /external/google-breakpad/src/processor/
windows_frame_info.h 135 uint32_t prolog_size = strtoul(tokens[3], NULL, 16);
136 uint32_t epilog_size = strtoul(tokens[4], NULL, 16);
137 uint32_t parameter_size = strtoul(tokens[5], NULL, 16);
138 uint32_t saved_register_size = strtoul(tokens[6], NULL, 16);
139 uint32_t local_size = strtoul(tokens[7], NULL, 16);
140 uint32_t max_stack_size = strtoul(tokens[8], NULL, 16);
141 int has_program_string = strtoul(tokens[9], NULL, 16);
148 allocates_base_pointer = strtoul(tokens[10], NULL, 16);
  /external/libnl/src/
nl-fib-lookup.c 57 table = strtoul(optarg, NULL, 0);
60 fwmark = strtoul(optarg, NULL, 0);
63 scope = strtoul(optarg, NULL, 0);
66 tos = strtoul(optarg, NULL, 0);
  /toolchain/binutils/binutils-2.27/gas/
itbl-lex.l 64 yylval.processor = strtoul (yytext+1, 0, 0);
69 yylval.num = strtoul (yytext, 0, 0);
74 yylval.num = strtoul (yytext, 0, 0);
  /external/e2fsprogs/lib/e2p/
percent.c 50 percent = strtoul(argv[1], &p, 0);
56 base = strtoul(argv[2], &p, 0);
  /external/iw/
offch.c 20 strtoul(argv[0], &end, 10));
28 strtoul(argv[0], &end, 10));
  /external/syslinux/com32/modules/
cpuid.c 42 leaf = strtoul(argv[1], NULL, 0);
43 counter = (argc > 2) ? strtoul(argv[2], NULL, 0) : 0;
ethersel.c 69 vid = strtoul(p, &p, 16);
72 did = strtoul(p + 1, &p, 16);
77 m1 = strtoul(p + 1, &p, 16);
81 m2 = strtoul(p + 1, &p, 16);
95 r0 = strtoul(p, &p, 16);
97 r1 = strtoul(p + 1, &p, 16);
  /external/dtc/tests/
boot-cpuid.c 40 cpuid = strtoul(argv[2], NULL, 0);
  /prebuilts/ndk/r16/sources/android/support/src/
locale_support.cpp 8 return strtoul(nptr, endptr, base);
  /external/fio/t/
gen-rand.c 28 start = strtoul(argv[1], NULL, 10);
29 end = strtoul(argv[2], NULL, 10);
38 nvalues = strtoul(argv[3], NULL, 10);
  /external/libmtp/examples/
newplaylist.c 61 ids[(idcount-1)] = strtoul(optarg, &rest, 0);
67 storageid = (uint32_t) strtoul(optarg, NULL, 0);
70 parentid = (uint32_t) strtoul(optarg, NULL, 0);
trexist.c 46 id = strtoul(argv[1], &endptr, 10);
  /toolchain/binutils/binutils-2.27/libiberty/
vprintf-support.c 36 extern unsigned long strtoul ();
67 total_width += strtoul (p, (char **) &p, 10);
77 total_width += strtoul (p, (char **) &p, 10);
  /external/boringssl/src/fipstools/
cavp_ctr_drbg_test.cc 40 strtoul(entropy_input_len.c_str(), nullptr, 0) !=
54 entropy.size() * 8 != strtoul(entropy_input_len.c_str(), nullptr, 0) ||
57 strtoul(personalization_str_len.c_str(), nullptr, 0) ||
59 ai1.size() * 8 != strtoul(additional_input_len.c_str(), nullptr, 0)) {
69 uint64_t out_len = strtoul(returned_bits_len.c_str(), nullptr, 0);
cavp_aes_gcm_test.cc 65 key.size() * 8 != strtoul(key_len_str.c_str(), nullptr, 0) ||
66 iv.size() * 8 != strtoul(iv_len_str.c_str(), nullptr, 0) ||
67 pt.size() * 8 != strtoul(pt_len_str.c_str(), nullptr, 0) ||
68 aad.size() * 8 != strtoul(aad_len_str.c_str(), nullptr, 0) ||
73 const size_t tag_len = strtoul(tag_len_str.c_str(), nullptr, 0) / 8;
96 size_t aad_len = strtoul(aad_len_str.c_str(), nullptr, 0) / 8;
97 size_t pt_len = strtoul(pt_len_str.c_str(), nullptr, 0) / 8;
107 key.size() * 8 != strtoul(key_len.c_str(), nullptr, 0) ||
108 iv.size() * 8 != strtoul(iv_len.c_str(), nullptr, 0) ||
111 tag.size() * 8 != strtoul(tag_len.c_str(), nullptr, 0))
    [all...]
cavp_hmac_test.cc 32 const size_t md_len = strtoul(md_len_str.c_str(), nullptr, 0);
65 size_t k_len = strtoul(k_len_str.c_str(), nullptr, 0);
66 size_t t_len = strtoul(t_len_str.c_str(), nullptr, 0);
  /external/libdrm/tests/
drmstat.c 117 count = strtoul(optarg, NULL, 0);
136 if ((r = drmSwitchToContext(fd, strtoul(optarg, NULL, 0)))) {
160 count = strtoul(optarg, &pt, 0);
161 size = strtoul(pt+1, &pt, 0);
162 secs = strtoul(pt+1, NULL, 0);
189 count = strtoul(optarg, &pt, 0);
190 size = strtoul(pt+1, NULL, 0);
243 offset = strtoul(optarg, &pt, 0);
244 size = strtoul(pt+1, NULL, 0);
258 offset = strtoul(optarg, &pt, 0)
    [all...]
  /external/libnl/src/lib/
ct.c 149 nfnl_ct_set_icmp_id(ct, 0, strtoul(argv[idx++], NULL, 0));
152 nfnl_ct_set_icmp_type(ct, 0, strtoul(argv[idx++], NULL, 0));
155 nfnl_ct_set_icmp_code(ct, 0, strtoul(argv[idx++], NULL, 0));
158 nfnl_ct_set_icmp_id(ct, 1, strtoul(argv[idx++], NULL, 0));
161 nfnl_ct_set_icmp_type(ct, 1, strtoul(argv[idx++], NULL, 0));
164 nfnl_ct_set_icmp_code(ct, 1, strtoul(argv[idx++], NULL, 0));
  /external/autotest/client/site_tests/kernel_PerfEventRename/src/
perf-rename-test.c 34 loops = strtoul(argv[2], NULL, 10);
  /external/autotest/client/site_tests/security_Minijail_seccomp/src/
open.c 23 unsigned int access_mode = strtoul(argv[1], NULL, 0);

Completed in 458 milliseconds

1 2 3 4 5 6 7 8 91011>>