Home
last modified time | relevance | path

Searched refs:atol (Results 1 – 25 of 113) sorted by relevance

12345

/third_party/ltp/testcases/kernel/fs/mongo/
Dreiser_fract_tree.c478 bytes_to_consume = atol(argv[1]); in main()
479 max_file_size = atol(argv[3]); in main()
480 median_file_size = atol(argv[2]); in main()
489 stats = atol(argv[10]); in main()
490 median_dir_branching = atol(argv[6]); in main()
491 max_dir_branching = atol(argv[7]); in main()
492 median_dir_nr_files = atol(argv[4]); in main()
493 max_dir_nr_files = atol(argv[5]); in main()
Dsumm.c20 n = atol(str); in main()
/third_party/zlib/contrib/testzlib/
Dtestzlib.c175 BlockSizeCompress=atol(argv[2]); in main()
178 BlockSizeUncompress=atol(argv[3]); in main()
181 cprLevel=(int)atol(argv[4]); in main()
/third_party/cups-filters/filter/
Dbannertopdf.c135 media_limits[0] = atol(val) * 72.0 / 2540.0; in get_pagesize()
138 media_limits[1] = atol(val) * 72.0 / 2540.0; in get_pagesize()
141 media_limits[2] = *width - atol(val) * 72.0 / 2540.0; in get_pagesize()
144 media_limits[3] = *length - atol(val) * 72.0 / 2540.0; in get_pagesize()
/third_party/libwebsockets/minimal-examples/api-tests/api-test-lws_smd/
Dmain.c201 how_many_msg = (unsigned int)atol(p); in main()
204 usec_interval = (unsigned int)atol(p); in main()
/third_party/libunwind/tests/
DGperf-simple.c245 maxlevel = atol (argv[1]); in main()
247 iterations = atol (argv[2]); in main()
DGperf-trace.c231 maxlevel = atol (argv[1]); in main()
233 iterations = atol (argv[2]); in main()
Dforker.c42 count = atol (argv[1]); in main()
DGtest-exc.c159 depth = atol (argv[1]); in main()
/third_party/flutter/skia/third_party/externals/libpng/contrib/examples/
Dpngpixel.c153 long x = atol(argv[1]); in main()
154 long y = atol(argv[2]); in main()
/third_party/skia/third_party/externals/libpng/contrib/examples/
Dpngpixel.c153 long x = atol(argv[1]); in main()
154 long y = atol(argv[2]); in main()
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-smd/
Dminimal-secure-streams-smd.c272 how_many_msg = (unsigned int)atol(p); in main()
275 usec_interval = (unsigned int)atol(p); in main()
/third_party/libwebsockets/lib/secure-streams/
Dpolicy-json.c587 a->curr[LTY_METRICS].m->us_decay_unit = (uint32_t)atol(ctx->buf); in lws_ss_policy_parser_cb()
662 a->curr[LTY_POLICY].p->proxy_buflen = (uint32_t)atol(ctx->buf); in lws_ss_policy_parser_cb()
667 (uint32_t)atol(ctx->buf); in lws_ss_policy_parser_cb()
671 (uint32_t)atol(ctx->buf); in lws_ss_policy_parser_cb()
675 a->curr[LTY_POLICY].p->client_buflen = (uint32_t)atol(ctx->buf); in lws_ss_policy_parser_cb()
680 (uint32_t)atol(ctx->buf); in lws_ss_policy_parser_cb()
684 (uint32_t)atol(ctx->buf); in lws_ss_policy_parser_cb()
/third_party/musl/porting/liteos_m/kernel/src/stdlib/
Datol.c4 long atol(const char *s) in atol() function
/third_party/musl/porting/uniproton/kernel/src/stdlib/
Datol.c4 long atol(const char *s) in atol() function
/third_party/musl/src/stdlib/
Datol.c4 long atol(const char *s) in atol() function
/third_party/toybox/toys/other/
Dusleep.c21 long delay = atol(*toys.optargs); in usleep_main()
/third_party/openh264/codec/console/dec/src/
Dh264dec.cpp541 sDecParam.uiTargetDqLayer = (uint8_t)atol (strTag[1].c_str());
543 sDecParam.eEcActiveIdc = (ERROR_CON_IDC)atol (strTag[1].c_str());
545 sDecParam.uiCpuLoad = (uint32_t)atol (strTag[1].c_str());
547 sDecParam.sVideoProperty.eVideoBsType = (VIDEO_BITSTREAM_TYPE)atol (strTag[1].c_str());
/third_party/cups-filters/cupsfilters/
Draster.c507 h->MediaWeight = atol(val); in cupsRasterParseIPPOptions()
551 h->NumCopies = atol(val); in cupsRasterParseIPPOptions()
674 size = atol(val) * 72.0 / 2540.0; in cupsRasterParseIPPOptions()
688 size = atol(val) * 72.0 / 2540.0; in cupsRasterParseIPPOptions()
702 size = atol(val) * 72.0 / 2540.0; in cupsRasterParseIPPOptions()
714 size = atol(val) * 72.0 / 2540.0; in cupsRasterParseIPPOptions()
/third_party/libwebsockets/lib/roles/http/server/
Dlejp-conf.c843 a->info->ssl_options_set |= atol(ctx->buf); in lejp_vhosts_cb()
846 a->info->ssl_options_clear |= atol(ctx->buf); in lejp_vhosts_cb()
851 a->info->ssl_client_options_set |= atol(ctx->buf); in lejp_vhosts_cb()
854 a->info->ssl_client_options_clear |= atol(ctx->buf); in lejp_vhosts_cb()
/third_party/libwebsockets/lib/jose/jws/
Djws.c1252 if (!cp || (unsigned long)atol(cp) > now) { in lws_jwt_token_sanity()
1261 exp = (unsigned long)atol(cp); in lws_jwt_token_sanity()
1262 if (!cp || (unsigned long)atol(cp) < now) { in lws_jwt_token_sanity()
1264 cp ? (unsigned long)atol(cp) : 0, now); in lws_jwt_token_sanity()
/third_party/musl/porting/liteos_m/user/include/
Dstdlib.h22 long atol (const char *);
/third_party/musl/porting/liteos_a/kernel/include/
Dstdlib.h24 long atol (const char *);
/third_party/musl/libc-test/src/api/
Dstdlib.c34 {long(*p)(const char*) = atol;} in f()
/third_party/musl/ndk_musl_include/
Dstdlib.h22 long atol (const char *);

12345