/prebuilts/go/darwin-x86/test/ken/ |
rob2.go | 237 func atoi() int { // BUG: uses tokenbuf; should take argument) func 262 slist = atom(atoi())
|
/prebuilts/go/linux-x86/src/runtime/ |
runtime-gdb_test.go | 34 major, err1 := strconv.Atoi(string(matches[1])) 35 minor, err2 := strconv.Atoi(string(matches[2]))
|
/prebuilts/go/linux-x86/src/strconv/ |
atoi.go | 198 // Atoi is shorthand for ParseInt(s, 10, 0). 199 func Atoi(s string) (i int, err error) {
|
/prebuilts/go/linux-x86/test/ken/ |
rob2.go | 237 func atoi() int { // BUG: uses tokenbuf; should take argument) func 262 slist = atom(atoi())
|
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ |
cstdlib | 84 #undef atoi 130 using ::atoi;
|
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libcxx/include/ |
cstdlib | 36 int atoi (const char* nptr); 104 using ::atoi;
|
/system/core/fastboot/ |
usbtest.cpp | 156 arg_count = atoi(arg + 6); 158 arg_size = atoi(arg + 5);
|
/device/lge/bullhead/power/ |
power.c | 113 int soc_id = atoi(buf); 402 saved_dcvs_cpu0_slack_max = atoi(tmp_str); 412 saved_dcvs_cpu0_slack_min = atoi(tmp_str); 422 saved_mpdecision_slack_max = atoi(tmp_str); 432 saved_mpdecision_slack_min = atoi(tmp_str);
|
/frameworks/av/services/audioflinger/ |
test-resample.cpp | 82 values.editItemAt(0) = atoi(p = optarg); 85 values.editItemAt(i++) = atoi(p); 132 channels = atoi(optarg); 157 input_freq = atoi(optarg); 160 output_freq = atoi(optarg);
|
/hardware/intel/common/utils/ISV/profile/ |
isv_profile.cpp | 167 width = atoi(p); 170 height = atoi(p); 225 mFrcRates[mCurrentFrcTab].input_fps = atoi(atts[attIndex + 1]); 279 mDefaultVPPStatus = atoi(atts[attIndex + 3]); 282 mDefaultFRCStatus = atoi(atts[attIndex + 3]);
|
/hardware/qcom/camera/QCamera2/stack/mm-lib2d-interface/test/ |
mm_lib2d_test.c | 388 width = (uint32_t)atoi(argv[2]); 389 height = (uint32_t)atoi(argv[3]); 390 input_yuv_stride = (uint32_t)atoi(argv[4]); 391 offset = (uint32_t)atoi(argv[5]); 392 format = (uint32_t)atoi(argv[6]);
|
/hardware/ti/omap3/omx/audio/src/openmax_il/g722_enc/tests/ |
G722EncTest.c | 393 inBufSize = atoi(argv[4])<<1; 394 outBufSize = atoi(argv[5])<<1; 396 numInputBuffers = atoi(argv[7]); 397 numOutputBuffers = atoi(argv[8]); 399 nbDASFframes = atoi(argv[10]); 400 if (atoi(argv[3]) > 0 && atoi(argv[3]) < 7) { 401 switch (atoi(argv[3])) { 481 if (atoi(argv[3]) == 5){ 486 if (atoi(argv[9]) == 0 || atoi(argv[9]) == 1) [all...] |
/device/huawei/angler/camera/QCamera2/stack/mm-jpeg-interface/test/ |
mm_jpeg_test.c | 514 p_test->width = atoi(optarg); 518 p_test->height = atoi(optarg); 522 p_test->col_fmt = color_formats[atoi(optarg)]; 534 p_test->tmb_width = atoi(optarg); 538 p_test->tmb_height = atoi(optarg); 542 p_test->main_quality = atoi(optarg); 546 p_test->thumb_quality = atoi(optarg);
|
/device/lge/bullhead/camera/QCamera2/stack/mm-jpeg-interface/test/ |
mm_jpeg_test.c | 514 p_test->width = atoi(optarg); 518 p_test->height = atoi(optarg); 522 p_test->col_fmt = color_formats[atoi(optarg)]; 534 p_test->tmb_width = atoi(optarg); 538 p_test->tmb_height = atoi(optarg); 542 p_test->main_quality = atoi(optarg); 546 p_test->thumb_quality = atoi(optarg);
|
/device/moto/shamu/camera/QCamera2/stack/mm-jpeg-interface/test/ |
mm_jpeg_test.c | 511 p_test->width = atoi(optarg); 515 p_test->height = atoi(optarg); 519 p_test->col_fmt = color_formats[atoi(optarg)]; 531 p_test->tmb_width = atoi(optarg); 535 p_test->tmb_height = atoi(optarg); 539 p_test->main_quality = atoi(optarg); 543 p_test->thumb_quality = atoi(optarg);
|
/external/compiler-rt/lib/asan/ |
asan_interceptors.cc | 637 INTERCEPTOR(int, atoi, const char *nptr) { 639 ASAN_INTERCEPTOR_ENTER(ctx, atoi); 641 if (UNLIKELY(!asan_inited)) return REAL(atoi)(nptr); 645 return REAL(atoi)(nptr); 648 // "man atoi" tells that behavior of atoi(nptr) is the same as 766 ASAN_INTERCEPT_FUNC(atoi);
|
/external/iputils/ |
ping_common.c | 263 npackets = atoi(optarg); 306 deadline = atoi(optarg); 313 preload = atoi(optarg); 329 sndbuf = atoi(optarg); 353 datalen = atoi(optarg); 372 ttl = atoi(optarg); 385 lingertime = atoi(optarg);
|
/external/llvm/test/Transforms/SampleProfile/ |
branch.ll | 12 ; int limit = atoi(argv[1]); 14 ; double s = 23.041968 * atoi(argv[2]); 22 ; result = atoi(argv[2]); 64 %call = call i32 @atoi(i8* %2) #4, !dbg !31 77 %call4 = call i32 @atoi(i8* %5) #4, !dbg !40 126 %call11 = call i32 @atoi(i8* %17) #4, !dbg !74 146 declare i32 @atoi(i8*) #2
|
/frameworks/wilhelm/tests/sandbox/ |
xaplay.c | 267 discPacket = atoi(&arg[2]); 270 afterDiscPacket = atoi(&arg[2]); 273 firstPacket = atoi(&arg[2]); 276 formatPacket = atoi(&arg[2]); 282 numPackets = atoi(&arg[2]); 285 pauseMs = atoi(&arg[2]); 288 seekPos = atoi(&arg[2]); [all...] |
/hardware/libhardware/tests/vehicle/ |
vehicle-hal-tool.c | 275 vehicle_data.value.boolean_value = atoi(data); 282 vehicle_data.value.int64_value = atoi(data); 303 vehicle_data.value.int32_value = atoi(data); 468 property = atoi(optarg); 471 type = atoi(optarg); 477 wait_time_in_sec = atoi(optarg); 480 sample_rate = atoi(optarg);
|
/system/netd/server/ |
MDnsSdListener.cpp | 141 int requestId = atoi(argv[2]); 425 int requestId = atoi(argv[2]); 437 int requestId = atoi(argv[2]); 440 int port = atoi(argv[5]); 466 int requestId = atoi(argv[2]); 492 int requestId = atoi(argv[2]); 503 int requestId = atoi(argv[2]);
|
/hardware/ti/omap3/omx/video/src/openmax_il/video_encode/test/ |
VideoEncTest.c | [all...] |
/external/icu/icu4c/source/tools/tzcode/ |
icuzdump.cpp | 336 high = atoi(options[kOptCutover].value); 339 low = atoi(options[kOptCutover].value); 340 high = atoi(comma + 1);
|
/external/ipsec-tools/src/racoon/ |
main.c | 328 lcconf->port_isakmp = atoi(optarg); 331 lcconf->port_isakmp_natt = atoi(optarg); 335 lcconf->port_admin = atoi(optarg);
|
/external/llvm/test/DebugInfo/X86/ |
live-debug-values.ll | 15 ; n = atoi(argv[1]); 54 %call = tail call i32 (i8*, ...) bitcast (i32 (...)* @atoi to i32 (i8*, ...)*)(i8* %0) #4, !dbg !32 81 declare i32 @atoi(...) #1
|