Home
last modified time | relevance | path

Searched refs:read_table (Results 1 – 8 of 8) sorted by relevance

/third_party/pcre2/pcre2/maint/
DMultiStage2.py236 def read_table(file_name, get_value, default_value): function
495 script = read_table('Unicode.tables/Scripts.txt', make_get_names(script_names), script_names.index(…
496 category = read_table('Unicode.tables/DerivedGeneralCategory.txt', make_get_names(category_names), …
497 break_props = read_table('Unicode.tables/GraphemeBreakProperty.txt', make_get_names(break_property_…
498 other_case = read_table('Unicode.tables/CaseFolding.txt', get_other_case, 0)
539 scriptx = read_table('Unicode.tables/ScriptExtensions.txt', get_script_extension, script_abbrevs_de…
/third_party/ffmpeg/libavformat/
Dpaf.c78 static int read_table(AVFormatContext *s, uint32_t *table, uint32_t count) in read_table() function
182 ret = read_table(s, p->blocks_count_table, p->nb_frames); in read_header()
185 ret = read_table(s, p->frames_offset_table, p->nb_frames); in read_header()
188 ret = read_table(s, p->blocks_offset_table, p->frame_blks); in read_header()
Dmvdec.c236 static int read_table(AVFormatContext *avctx, AVStream *st, in read_table() function
373 if ((ret = read_table(avctx, NULL, parse_global_var)) < 0) in mv_read_header()
390 if ((read_table(avctx, ast, parse_audio_var)) < 0) in mv_read_header()
417 if ((ret = read_table(avctx, vst, parse_video_var))<0) in mv_read_header()
/third_party/ffmpeg/libavcodec/
Dmace.c175 static int16_t read_table(ChannelData *chd, uint8_t val, int tab_idx) in read_table() function
193 int16_t current = read_table(chd, val, tab_idx); in chomp3()
203 int16_t current = read_table(chd, val, tab_idx); in chomp6()
Ddstdec.c150 static int read_table(GetBitContext *gb, Table *t, const int8_t code_pred_coeff[3][3], in read_table() function
316 ret = read_table(gb, &s->fsets, fsets_code_pred_coeff, 7, 9, 1, 0); in decode_frame()
322 ret = read_table(gb, &s->probs, probs_code_pred_coeff, 6, 7, 0, 1); in decode_frame()
/third_party/python/Tools/c-analyzer/c_parser/
Ddatafiles.py35 for row in _tables.read_table(infile, columns, sep='\t', fix='-'):
107 for row in _tables.read_table(infile, columns, sep='\t'):
/third_party/python/Tools/c-analyzer/c_common/
Dtables.py83 def read_table(infile, header, *, function
92 yield from read_table(
/third_party/python/Tools/c-analyzer/c_analyzer/
Ddatafiles.py100 for row in _tables.read_table(infile, IGNORED_HEADER, sep='\t'):