/external/e2fsprogs/debugfs/ |
D | set_fields.c | 67 static errcode_t parse_uint(struct field_set_info *info, char *field, char *arg); 84 { "inodes_count", &set_sb.s_inodes_count, NULL, 4, parse_uint }, 86 4, parse_uint }, 88 &set_sb.s_r_blocks_count_hi, 4, parse_uint }, 90 &set_sb.s_free_blocks_hi, 4, parse_uint }, 91 { "free_inodes_count", &set_sb.s_free_inodes_count, NULL, 4, parse_uint }, 92 { "first_data_block", &set_sb.s_first_data_block, NULL, 4, parse_uint }, 93 { "log_block_size", &set_sb.s_log_block_size, NULL, 4, parse_uint }, 95 { "blocks_per_group", &set_sb.s_blocks_per_group, NULL, 4, parse_uint }, 96 { "clusters_per_group", &set_sb.s_clusters_per_group, NULL, 4, parse_uint }, [all …]
|
/external/harfbuzz_ng/src/ |
D | hb-buffer-deserialize-json.hh | 529 { if (!parse_uint (tok, p, &info.codepoint)) return false; } in _hb_buffer_deserialize_glyphs_json() 533 { if (!parse_uint (tok, p, &info.cluster )) return false; } in _hb_buffer_deserialize_glyphs_json() 553 { if (!parse_uint (tok, p, &info.codepoint)) return false; } in _hb_buffer_deserialize_glyphs_json() 565 { if (!parse_uint (tok, p, &info.cluster )) return false; } in _hb_buffer_deserialize_glyphs_json()
|
D | hb-buffer-deserialize-text.hh | 389 { if (!parse_uint (tok, p, &info.cluster )) return false; } in _hb_buffer_deserialize_glyphs_text() 433 { if (!parse_uint (tok, p, &info.cluster )) return false; } in _hb_buffer_deserialize_glyphs_text() 510 { if (!parse_uint (tok, p, &info.cluster )) return false; } in _hb_buffer_deserialize_glyphs_text()
|
D | hb-buffer-deserialize-json.rl | 62 action parse_gid { if (!parse_uint (tok, p, &info.codepoint)) return false; } 63 action parse_cluster { if (!parse_uint (tok, p, &info.cluster )) return false; }
|
D | hb-common.cc | 720 parse_uint (const char **pp, const char *end, unsigned int *pv) in parse_uint() function 934 has_start = parse_uint (pp, end, &feature->start); in parse_feature_indices() 937 parse_uint (pp, end, &feature->end); in parse_feature_indices()
|
D | hb-buffer-deserialize-text.rl | 62 action parse_cluster { if (!parse_uint (tok, p, &info.cluster )) return false; }
|
D | hb-buffer-serialize.cc | 380 parse_uint (const char *pp, const char *end, uint32_t *pv) in parse_uint() function
|
/external/skqp/third_party/harfbuzz/ |
D | hb-buffer-deserialize-json.hh | 529 { if (!parse_uint (tok, p, &info.codepoint)) return false; } in _hb_buffer_deserialize_glyphs_json() 533 { if (!parse_uint (tok, p, &info.cluster )) return false; } in _hb_buffer_deserialize_glyphs_json() 553 { if (!parse_uint (tok, p, &info.codepoint)) return false; } in _hb_buffer_deserialize_glyphs_json() 565 { if (!parse_uint (tok, p, &info.cluster )) return false; } in _hb_buffer_deserialize_glyphs_json()
|
D | hb-buffer-deserialize-text.hh | 389 { if (!parse_uint (tok, p, &info.cluster )) return false; } in _hb_buffer_deserialize_glyphs_text() 433 { if (!parse_uint (tok, p, &info.cluster )) return false; } in _hb_buffer_deserialize_glyphs_text() 510 { if (!parse_uint (tok, p, &info.cluster )) return false; } in _hb_buffer_deserialize_glyphs_text()
|
/external/virglrenderer/src/gallium/auxiliary/tgsi/ |
D | tgsi_text.c | 188 static boolean parse_uint( const char **pcur, uint *val ) in parse_uint() function 210 if (parse_uint(&cur, (uint *)val)) { in parse_int() 399 if (parse_uint( &cur, val )) { in parse_label() 504 if (!parse_uint( &ctx->cur, &uindex )) { in parse_register_file_bracket_index() 591 if (!parse_uint( &ctx->cur, &uindex )) { in parse_register_bracket() 608 if (!parse_uint( &ctx->cur, &brackets->ind_array )) { in parse_register_bracket() 683 if (!parse_uint( &ctx->cur, &uindex )) { in parse_register_dcl_bracket() 703 if (!parse_uint( &ctx->cur, &uindex )) { in parse_register_dcl_bracket() 1177 if (!parse_uint( &cur, &target )) { in parse_instruction() 1232 ret = parse_uint(&ctx->cur, &values[i].Uint); in parse_immediate_data() [all …]
|
/external/mesa3d/src/gallium/auxiliary/tgsi/ |
D | tgsi_text.c | 180 static boolean parse_uint( const char **pcur, uint *val ) in parse_uint() function 202 if (parse_uint(&cur, (uint *)val)) { in parse_int() 412 if (parse_uint( &cur, val )) { in parse_label() 517 if (!parse_uint( &ctx->cur, &uindex )) { in parse_register_file_bracket_index() 604 if (!parse_uint( &ctx->cur, &uindex )) { in parse_register_bracket() 621 if (!parse_uint( &ctx->cur, &brackets->ind_array )) { in parse_register_bracket() 696 if (!parse_uint( &ctx->cur, &uindex )) { in parse_register_dcl_bracket() 716 if (!parse_uint( &ctx->cur, &uindex )) { in parse_register_dcl_bracket() 1194 if (!parse_uint( &cur, &target )) { in parse_instruction() 1257 ret = parse_uint(&ctx->cur, &values[i].Uint); in parse_immediate_data() [all …]
|
/external/e2fsprogs/misc/ |
D | badblocks.c | 1033 static unsigned int parse_uint(const char *str, const char *descr) in parse_uint() function 1100 block_size = parse_uint(optarg, "block size"); in main() 1130 blocks_at_once = parse_uint(optarg, "blocks at once"); in main() 1133 max_bb = parse_uint(optarg, "max bad block count"); in main() 1146 d_flag = parse_uint(optarg, "read delay factor"); in main() 1149 num_passes = parse_uint(optarg, in main() 1174 pattern = parse_uint(optarg, "test pattern"); in main() 1224 last_block = parse_uint(argv[optind], _("last block")); in main() 1230 first_block = parse_uint(argv[optind], _("first block")); in main()
|
/external/pcre/pcrecpp/include/ |
D | pcrecpparg.h | 78 PCRE_MAKE_PARSER(unsigned int, parse_uint);
|
/external/mesa3d/src/gallium/tools/trace/ |
D | parse.py | 281 def parse_uint(self): member in TraceParser
|