Home
last modified time | relevance | path

Searched refs:strtol (Results 1 - 25 of 472) sorted by relevance

12345678910>>...19

/third_party/musl/libc-test/src/functional/
H A Dstrtol.c32 TEST(l, strtol("2147483647", 0, 0), 2147483647L, "max 32bit signed %ld != %ld"); in main()
36 TEST(l, strtol(s="2147483648", &c, 0), 2147483647L, "uncaught overflow %ld != %ld"); in main()
39 TEST(l, strtol(s="-2147483649", &c, 0), -2147483647L-1, "uncaught overflow %ld != %ld"); in main()
61 TEST(l, strtol(s="9223372036854775808", &c, 0), 9223372036854775807L, "uncaught overflow %ld != %ld"); in main()
64 TEST(l, strtol(s="-9223372036854775809", &c, 0), -9223372036854775807L-1, "uncaught overflow %ld != %ld"); in main()
118 TEST(l, strtol("z", 0, 36), 35, "%ld != %ld"); in main()
119 TEST(l, strtol("00010010001101000101011001111000", 0, 2), 0x12345678, "%ld != %ld"); in main()
120 TEST(l, strtol(s="0F5F", &c, 16), 0x0f5f, "%ld != %ld"); in main()
122 TEST(l, strtol(s="0xz", &c, 16), 0, "%ld != %ld"); in main()
125 TEST(l, strtol( in main()
[all...]
/third_party/backends/sanei/
H A Dsanei_config2.c110 bus = strtol (name, &end, 10); in sanei_config_attach_matching_devices()
118 channel = strtol (name, &end, 10); in sanei_config_attach_matching_devices()
126 id = strtol (name, &end, 10); in sanei_config_attach_matching_devices()
134 lun = strtol (name, &end, 10); in sanei_config_attach_matching_devices()
/third_party/mesa3d/src/vulkan/overlay-layer/
H A Doverlay_params.c72 return strtol(str, NULL, 0) * 1000; in parse_fps_sampling_period()
78 return strtol(str, NULL, 0) != 0; in parse_no_display()
84 return strtol(str, NULL, 0); in parse_unsigned()
183 strtol(value, NULL, 0); \ in parse_overlay_env()
/third_party/mesa3d/src/freedreno/afuc/
H A Dasm.h85 ret = strtol(str + 1, &retstr, 16); in parse_reg()
101 ret = strtol(str + 1, &retstr, 16); in parse_literal()
114 return strtol(str + 1, NULL, 10); in parse_bit()
/third_party/ffmpeg/libavformat/
H A Drtpproto.c122 rtcp_port = strtol(buf, NULL, 10); in ff_rtp_set_remote_url()
249 s->ttl = strtol(buf, NULL, 10); in rtp_open()
252 s->rtcp_port = strtol(buf, NULL, 10); in rtp_open()
255 s->local_rtpport = strtol(buf, NULL, 10); in rtp_open()
258 s->local_rtpport = strtol(buf, NULL, 10); in rtp_open()
261 s->local_rtcpport = strtol(buf, NULL, 10); in rtp_open()
264 s->pkt_size = strtol(buf, NULL, 10); in rtp_open()
267 s->connect = strtol(buf, NULL, 10); in rtp_open()
270 s->write_to_source = strtol(buf, NULL, 10); in rtp_open()
273 s->dscp = strtol(bu in rtp_open()
[all...]
H A Dlibsrt.c546 s->pbkeylen = strtol(buf, NULL, 10); in libsrt_open()
554 s->enforced_encryption = strtol(buf, NULL, 10); in libsrt_open()
557 s->kmrefreshrate = strtol(buf, NULL, 10); in libsrt_open()
560 s->kmpreannounce = strtol(buf, NULL, 10); in libsrt_open()
567 s->mss = strtol(buf, NULL, 10); in libsrt_open()
570 s->ffs = strtol(buf, NULL, 10); in libsrt_open()
573 s->ipttl = strtol(buf, NULL, 10); in libsrt_open()
576 s->iptos = strtol(buf, NULL, 10); in libsrt_open()
582 s->oheadbw = strtol(buf, NULL, 10); in libsrt_open()
597 s->tlpktdrop = strtol(bu in libsrt_open()
[all...]
H A Dudp.c407 return strtol(sbuf, NULL, 10); in udp_port()
446 s->is_connected = strtol(buf, NULL, 10); in ff_udp_set_remote_url()
677 s->reuse_socket = strtol(buf, &endptr, 10); in udp_open()
684 s->overrun_nonfatal = strtol(buf, &endptr, 10); in udp_open()
694 s->ttl = strtol(buf, NULL, 10); in udp_open()
702 s->udplite_coverage = strtol(buf, NULL, 10); in udp_open()
705 s->local_port = strtol(buf, NULL, 10); in udp_open()
708 s->pkt_size = strtol(buf, NULL, 10); in udp_open()
711 s->buffer_size = strtol(buf, NULL, 10); in udp_open()
714 s->is_connected = strtol(bu in udp_open()
[all...]
/third_party/libcoap/tests/
H A Dtest_tls.c74 p1 = strtol(vers, &endptr, 10); in t_tls2()
76 p2 = strtol(endptr+1, &endptr, 10); in t_tls2()
78 p3 = strtol(endptr+1, &endptr, 10); in t_tls2()
/third_party/alsa-lib/src/control/
H A Dctlparse.c65 val = strtol(s, &p, 0); in get_integer()
68 (void)strtol(p, &p, 10); in get_integer()
93 val = strtol(s, &p, 0); in get_integer64()
96 (void)strtol(p, &p, 10); in get_integer64()
/third_party/mbedtls/programs/util/
H A Dstrerror.c53 val = strtol(argv[1], &end, 10); in main()
55 val = strtol(argv[1], &end, 16); in main()
/third_party/mesa3d/src/gallium/frontends/dri/
H A Ddri_query_renderer.c35 v[0] = strtol(ver, &endptr, 10); in driQueryRendererIntegerCommon()
40 v[1] = strtol(endptr + 1, &endptr, 10); in driQueryRendererIntegerCommon()
45 v[2] = strtol(endptr + 1, &endptr, 10); in driQueryRendererIntegerCommon()
/third_party/ffmpeg/libavcodec/
H A Dpnm.c116 w = strtol(buf1, NULL, 10); in ff_pnm_decode_header()
119 h = strtol(buf1, NULL, 10); in ff_pnm_decode_header()
122 depth = strtol(buf1, NULL, 10); in ff_pnm_decode_header()
125 maxval = strtol(buf1, NULL, 10); in ff_pnm_decode_header()
H A Dmicrodvddec.c123 tag.data1 = strtol(s, &s, 16) & 0x00ffffff; in microdvd_load_tags()
147 tag.data1 = strtol(s, &s, 10); in microdvd_load_tags()
180 tag.data1 = strtol(s, &s, 10); in microdvd_load_tags()
184 tag.data2 = strtol(s, &s, 10); in microdvd_load_tags()
/third_party/elfutils/tests/
H A Ddwelf_elf_e_machine_string.c47 val = strtol (&argv[i][2], NULL, 16); in main()
49 val = strtol (argv[i], NULL, 10); in main()
54 perror ("strtol"); in main()
/third_party/musl/porting/liteos_m/kernel/src/stdlib/
H A Dstrtol.c36 long strtol(const char *restrict s, char **restrict p, int base) in strtol() function
41 weak_alias(strtol, __strtol_internal);
/third_party/musl/porting/uniproton/kernel/src/stdlib/
H A Dstrtol.c36 long strtol(const char *restrict s, char **restrict p, int base) in strtol() function
41 weak_alias(strtol, __strtol_internal);
/third_party/musl/porting/liteos_a/kernel/src/stdlib/
H A Dstrtol.c36 long strtol(const char *restrict s, char **restrict p, int base) in strtol() function
51 weak_alias(strtol, __strtol_internal);
/third_party/ltp/testcases/lib/
H A Dtst_random.c55 max = strtol(argv[1], &end, 10); in main()
64 min = strtol(argv[2], &end, 10); in main()
/third_party/backends/backend/
H A Du12-if.c240 v = strtol( &(u12Devices[i].vp)[0], 0, 0 ); in usbDev_autodetect()
241 p = strtol( &(u12Devices[i].vp)[7], 0, 0 ); in usbDev_autodetect()
291 vendor = strtol( &dev->usbId[0], 0, 0 ); in u12if_open()
292 product = strtol( &dev->usbId[7], 0, 0 ); in u12if_open()
357 vendor = strtol( &dev->usbId[0], 0, 0 ); in u12if_open()
358 product = strtol( &dev->usbId[7], 0, 0 ); in u12if_open()
/third_party/node/deps/v8/src/debug/wasm/gdb-server/
H A Dtarget.cc529 static_cast<uint32_t>(strtol(toks[1].data(), nullptr, 10)); in ProcessQueryPacket()
531 static_cast<uint32_t>(strtol(toks[2].data(), nullptr, 10)); in ProcessQueryPacket()
550 static_cast<uint32_t>(strtol(toks[1].data(), nullptr, 10)); in ProcessQueryPacket()
552 static_cast<uint32_t>(strtol(toks[2].data(), nullptr, 10)); in ProcessQueryPacket()
571 static_cast<uint32_t>(strtol(toks[1].data(), nullptr, 10)); in ProcessQueryPacket()
573 static_cast<uint32_t>(strtol(toks[2].data(), nullptr, 10)); in ProcessQueryPacket()
/third_party/ffmpeg/tools/
H A Dvenc_data_dump.c83 stream_idx = strtol(argv[2], NULL, 0); in main()
84 max_frames = strtol(argv[3], NULL, 0); in main()
/third_party/musl/porting/linux/user/src/stdlib/
H A Dstrtol.c36 long strtol(const char *restrict s, char **restrict p, int base) in strtol() function
51 weak_alias(strtol, __strtol_internal);
/third_party/musl/src/stdlib/
H A Dstrtol.c40 long strtol(const char *restrict s, char **restrict p, int base) in strtol() function
63 weak_alias(strtol, __strtol_internal);
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/cl/
H A Dcl_util.cpp27 const long major = std::strtol(&version[spacePos + 1u], nullptr, 10); in ExtractCLVersion()
28 const long minor = std::strtol(&version[dotPos + 1u], nullptr, 10); in ExtractCLVersion()
/third_party/ffmpeg/libavfilter/
H A Dvf_cover_rect.c136 x = strtol(ex->value, &xendptr, 10); in filter_frame()
137 y = strtol(ey->value, &yendptr, 10); in filter_frame()
138 w = strtol(ew->value, &wendptr, 10); in filter_frame()
139 h = strtol(eh->value, &hendptr, 10); in filter_frame()

Completed in 15 milliseconds

12345678910>>...19