Searched refs:strtoul (Results 126 - 150 of 259) sorted by relevance

1234567891011

/external/eigen/test/
H A Dmain.h413 g_repeat = int(strtoul(str, 0, 10));
425 g_seed = int(strtoul(str, 0, 10));
/external/openssl/crypto/asn1/
H A Dasn1_gen.c393 tag_num = strtoul(vstart, &eptr, 10);
839 bitnum = strtoul(elem, &eptr, 10);
/external/openssl/crypto/
H A Dcryptlib.c699 if (!sscanf(env+off,"%I64i",&vec)) vec = strtoul(env+off,NULL,0);
701 if (!sscanf(env+off,"%lli",(long long *)&vec)) vec = strtoul(env+off,NULL,0);
/external/yaffs2/yaffs2/utils/
H A Dmkyaffs2image.c549 chunkSize = (unsigned)strtoul(optarg, NULL, 0);
552 spareSize = (unsigned)strtoul(optarg, NULL, 0);
/external/chromium_org/third_party/webrtc/base/
H A Djson.cc72 val = strtoul(c_str, &end_ptr, 10); // NOLINT
H A Dstringutils.h61 // strchr, vsnprintf, strtoul, tolowercase
101 inline unsigned long strtoul(const wchar_t* snum, wchar_t** end, int base) { function
/external/e2fsprogs/lib/blkid/
H A Dtag.c421 blkid_debug_mask = strtoul (optarg, &tmp, 0);
/external/libcap-ng/libcap-ng-0.7/utils/
H A Dnetcap.c191 inode = strtoul(s, NULL, 10);
/external/lldb/tools/debugserver/source/
H A DDNB.cpp1216 //min_field_width = strtoul(f, &end, 10);
1217 strtoul(f, &end, 10);
1233 //precision = strtoul(f, &end, 10);
1234 strtoul(f, &end, 10);
1253 actual_byte_size = strtoul(f, &end, 10);
1539 ch = strtoul(f, &end, 8);
/external/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h613 /// unsigned long int strtoul(const char *nptr, char **endptr, int base);
614 strtoul, enumerator in enum:llvm::LibFunc::Func
/external/openssl/crypto/sha/
H A Dsha512t.c87 OPENSSL_ia32cap = strtoul (env,NULL,0);
/external/qemu/android/
H A Dconfig-file.c91 return strtoul(n->value, 0, 0);
/external/qemu/distrib/sdl-1.2.15/
H A Dandroid-configure.sh364 sdl_check_funcs _uitoa _ultoa strtol strtoul _i64toa _ui64toa strtoll strtoull
/external/qemu/hw/pci/
H A Dpci.c178 val = strtoul(p, &e, 16);
184 val = strtoul(p, &e, 16);
191 val = strtoul(p, &e, 16);
/external/lldb/source/Core/
H A DDebugger.cpp1296 *index_lower = ::strtoul (*open_bracket_position+1, &end, 0);
1304 *index_lower = ::strtoul (*open_bracket_position+1, &end, 0);
1305 *index_higher = ::strtoul (*separator_position+1, &end, 0);
2550 unsigned long octal_value = ::strtoul (oct_str, NULL, 8);
2574 unsigned long hex_value = strtoul (hex_str, NULL, 16);
/external/qemu/
H A Dgdbstub.c1632 s->signal = gdb_signal_to_target (strtoul(p, (char **)&p, 16));
1754 type = strtoul(p, (char **)&p, 16);
1829 type = strtoul(p, (char **)&p, 16);
1916 addr = strtoul(p, (char **)&p, 16);
1919 len = strtoul(p, (char **)&p, 16);
/external/iproute2/tc/
H A Df_u32.c58 htid = strtoul(str, &tmp, 16);
65 hash = strtoul(str, &tmp, 16);
72 nodeid = strtoul(str, &tmp, 16);
H A Dm_ematch.c522 l = strtoul(buf, &inv, 0);
/external/iptables/libxtables/
H A Dxtoptions.c791 cb->val.ethermac[i] = strtoul(arg, &end, 16);
797 cb->val.ethermac[i] = strtoul(arg, &end, 16);
1128 id = strtoul(cur, &nxt, strncmp(cur, "0x", 2) == 0 ? 16 : 10);
/external/android-clat/
H A Dclatd.c469 *out = strtoul(str, &end_ptr, 0);
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_util.c88 addr->address[i] = (uint8_t)strtoul(str, &str, 16);
/external/e2fsprogs/lib/ext2fs/
H A Dtst_bitmaps.c127 ret = strtoul(str, &tmp, 0);
/external/e2fsprogs/misc/
H A Dfilefrag.c467 blocksize = strtoul(optarg, &end, 0);
/external/eigen/test/eigen2/
H A Dmain.h361 seed = int(std::strtoul(argv[i]+1, 0, 10));
/external/libcxx/src/
H A Dstring.cpp114 return as_integer_helper<unsigned long>( func, s, idx, base, strtoul );

Completed in 675 milliseconds

1234567891011