Home
last modified time | relevance | path

Searched refs:max_tokens (Results 1 – 25 of 31) sorted by relevance

12

/third_party/mesa3d/src/gallium/tests/graw/
Ddisasm.c59 const size_t max_tokens = 1024*1024; in disasm() local
66 tokens = malloc(max_tokens * sizeof *tokens); in disasm()
67 fread(tokens, sizeof *tokens, max_tokens, fp); in disasm()
/third_party/boost/libs/program_options/src/
Dcmdline.cpp318 unsigned max_tokens = xd->semantic()->max_tokens(); in run() local
319 if (min_tokens < max_tokens && opt.value.size() < max_tokens) in run()
325 int can_take_more = max_tokens - static_cast<int>(opt.value.size()); in run()
439 unsigned max_tokens = d.semantic()->max_tokens(); in finish_option() local
445 if (!opt.value.empty() && max_tokens == 0) in finish_option()
580 d->semantic()->max_tokens() == 0 && !adjacent.empty()) { in parse_short_option()
Dvalue_semantic.cpp103 untyped_value::max_tokens() const in max_tokens() function in boost::program_options::untyped_value
Doptions_description.cpp249 if (m_value_semantic->max_tokens() != 0) in format_parameter()
/third_party/boost/boost/program_options/
Dvalue_semantic.hpp39 virtual unsigned max_tokens() const = 0;
136 unsigned max_tokens() const;
315 unsigned max_tokens() const { in max_tokens() function in boost::program_options::typed_value
/third_party/skia/third_party/externals/libwebp/src/utils/
Dhuffman_encode_utils.h47 HuffmanTreeToken* tokens, int max_tokens);
Dhuffman_encode_utils.c327 HuffmanTreeToken* tokens, int max_tokens) { in VP8LCreateCompressedHuffmanTree() argument
329 HuffmanTreeToken* const ending_token = tokens + max_tokens; in VP8LCreateCompressedHuffmanTree()
/third_party/flutter/skia/third_party/externals/libwebp/src/utils/
Dhuffman_encode_utils.h47 HuffmanTreeToken* tokens, int max_tokens);
Dhuffman_encode_utils.c327 HuffmanTreeToken* tokens, int max_tokens) { in VP8LCreateCompressedHuffmanTree() argument
329 HuffmanTreeToken* const ending_token = tokens + max_tokens; in VP8LCreateCompressedHuffmanTree()
/third_party/gettext/libtextstyle/gnulib-local/lib/glib/
Dgstrfuncs.in.h262 gint max_tokens) G_GNUC_MALLOC;
265 gint max_tokens) G_GNUC_MALLOC;
Dgstrfuncs.c2281 gint max_tokens)
2292 if (max_tokens < 1)
2293 max_tokens = G_MAXINT;
2301 while (--max_tokens && s)
2371 gint max_tokens)
2384 if (max_tokens < 1)
2385 max_tokens = G_MAXINT;
2404 if (delim_table[*(guchar *)s] && n_tokens + 1 < max_tokens)
/third_party/flutter/skia/third_party/externals/libwebp/src/enc/
Dvp8l_enc.c591 const int max_tokens = tree->num_symbols; in StoreFullHuffmanCode() local
599 num_tokens = VP8LCreateCompressedHuffmanTree(tree, tokens, max_tokens); in StoreFullHuffmanCode()
780 int max_tokens = 0; in EncodeImageNoHuffman() local
831 if (max_tokens < codes->num_symbols) { in EncodeImageNoHuffman()
832 max_tokens = codes->num_symbols; in EncodeImageNoHuffman()
836 tokens = (HuffmanTreeToken*)WebPSafeMalloc(max_tokens, sizeof(*tokens)); in EncodeImageNoHuffman()
1009 int max_tokens = 0; in EncodeImageInternal() local
1013 if (max_tokens < codes->num_symbols) { in EncodeImageInternal()
1014 max_tokens = codes->num_symbols; in EncodeImageInternal()
1017 tokens = (HuffmanTreeToken*)WebPSafeMalloc(max_tokens, sizeof(*tokens)); in EncodeImageInternal()
/third_party/glib/glib/
Dgstrfuncs.c2389 gint max_tokens) in g_strsplit() argument
2399 if (max_tokens < 1) in g_strsplit()
2400 max_tokens = G_MAXINT; in g_strsplit()
2409 while (--max_tokens && s) in g_strsplit()
2466 gint max_tokens) in g_strsplit_set() argument
2479 if (max_tokens < 1) in g_strsplit_set()
2480 max_tokens = G_MAXINT; in g_strsplit_set()
2502 if (delim_table[*(guchar *)s] && n_tokens + 1 < max_tokens) in g_strsplit_set()
Dgstrfuncs.h285 gint max_tokens);
289 gint max_tokens);
Dgregex.c2469 gint max_tokens, in g_regex_split_full() argument
2493 if (max_tokens <= 0) in g_regex_split_full()
2494 max_tokens = G_MAXINT; in g_regex_split_full()
2503 if (max_tokens == 1) in g_regex_split_full()
2564 if (token_count >= max_tokens - 1) in g_regex_split_full()
Dgregex.h529 gint max_tokens,
/third_party/boost/boost/test/utils/iterator/
Dtoken_iterator.hpp169 nfp::typed_keyword<std::size_t,struct max_tokens_t > max_tokens; variable
212 nfp::opt_assign( m_tokens_left, m, max_tokens ); in apply_modifier()
/third_party/skia/third_party/externals/libwebp/src/enc/
Dvp8l_enc.c832 const int max_tokens = tree->num_symbols; in StoreFullHuffmanCode() local
840 num_tokens = VP8LCreateCompressedHuffmanTree(tree, tokens, max_tokens); in StoreFullHuffmanCode()
1018 int max_tokens = 0; in EncodeImageNoHuffman() local
1067 if (max_tokens < codes->num_symbols) { in EncodeImageNoHuffman()
1068 max_tokens = codes->num_symbols; in EncodeImageNoHuffman()
1072 tokens = (HuffmanTreeToken*)WebPSafeMalloc(max_tokens, sizeof(*tokens)); in EncodeImageNoHuffman()
1241 int max_tokens = 0; in EncodeImageInternal() local
1245 if (max_tokens < codes->num_symbols) { in EncodeImageInternal()
1246 max_tokens = codes->num_symbols; in EncodeImageInternal()
1249 tokens = (HuffmanTreeToken*)WebPSafeMalloc(max_tokens, sizeof(*tokens)); in EncodeImageInternal()
/third_party/boost/libs/test/test/utils-ts/
Dtoken_iterator-test.cpp97 utu::string_token_iterator tit( "aa bb dd", utu::max_tokens = 2 ); in BOOST_AUTO_TEST_CASE()
/third_party/freetype/src/psaux/
Dpsobjs.h90 FT_UInt max_tokens,
/third_party/skia/third_party/externals/freetype/src/psaux/
Dpsobjs.h90 FT_UInt max_tokens,
/third_party/flutter/skia/third_party/externals/freetype/src/psaux/
Dpsobjs.h91 FT_UInt max_tokens,
/third_party/gstreamer/gstplugins_bad/ext/dash/
Dgstmpdparser.c993 int max_tokens = 0; in gst_mpdparser_parse_utctiming_node() local
998 max_tokens = 1; in gst_mpdparser_parse_utctiming_node()
1000 new_timing->urls = g_strsplit (value, " ", max_tokens); in gst_mpdparser_parse_utctiming_node()
/third_party/glib/glib/tests/
Dregex.c682 gint max_tokens; member
874 0, data->max_tokens, NULL); in test_split_full()
933 data->max_tokens = _max_tokens; \
952 data->max_tokens = _max_tokens; \
972 data->max_tokens = _max_tokens; \
993 data->max_tokens = _max_tokens; \
/third_party/flutter/skia/third_party/externals/freetype/include/freetype/internal/
Dpsaux.h418 FT_UInt max_tokens,

12