Home
last modified time | relevance | path

Searched refs:parse_block (Results 1 – 5 of 5) sorted by relevance

/external/e2fsprogs/tests/progs/
Dtest_rel.c55 static int parse_block(const char *request, const char *desc, in parse_block() function
154 if (parse_block(argv[0], "max_blocks", argv[2], &max_blk)) in do_brel_ma_create()
187 if (parse_block(argv[0], "old block", argv[1], &old)) in do_brel_put()
189 if (parse_block(argv[0], "new block", argv[2], &new)) in do_brel_put()
192 parse_block(argv[0], "owner block", argv[3], &owner)) in do_brel_put()
195 parse_block(argv[0], "offset", argv[4], &offset)) in do_brel_put()
227 if (parse_block(argv[0], "block", argv[1], &blk)) in do_brel_get()
316 if (parse_block(argv[0], "old block", argv[1], &old)) in do_brel_move()
318 if (parse_block(argv[0], "new block", argv[2], &new)) in do_brel_move()
341 if (parse_block(argv[0], "block", argv[1], &blk)) in do_brel_delete()
[all …]
/external/python/cpython3/Lib/lib2to3/
Drefactor.py585 tree = self.parse_block(block, lineno, indent)
628 def parse_block(self, block, lineno, indent): member in RefactoringTool
/external/python/cpython2/Lib/lib2to3/
Drefactor.py604 tree = self.parse_block(block, lineno, indent)
647 def parse_block(self, block, lineno, indent): member in RefactoringTool
/external/libvpx/libvpx/vp9/decoder/
Dvp9_decodeframe.c1027 static void parse_block(TileWorkerData *twd, VP9Decoder *const pbi, int mi_row, in parse_block() function
1253 parse_block(twd, pbi, mi_row, mi_col, subsize, 1, 1); in parse_partition()
1257 parse_block(twd, pbi, mi_row, mi_col, subsize, n4x4_l2, n4x4_l2); in parse_partition()
1260 parse_block(twd, pbi, mi_row, mi_col, subsize, n4x4_l2, n8x8_l2); in parse_partition()
1262 parse_block(twd, pbi, mi_row + hbs, mi_col, subsize, n4x4_l2, in parse_partition()
1266 parse_block(twd, pbi, mi_row, mi_col, subsize, n8x8_l2, n4x4_l2); in parse_partition()
1268 parse_block(twd, pbi, mi_row, mi_col + hbs, subsize, n8x8_l2, in parse_partition()
/external/libchrome/third_party/jinja2/
Dparser.py255 def parse_block(self): member in Parser