Searched refs:current_group (Results 1 – 7 of 7) sorted by relevance
/third_party/e2fsprogs/lib/ext2fs/ |
D | inode.c | 42 dgrp_t current_group; member 178 scan->current_group = 0; in ext2fs_open_inode_scan() 183 scan->current_group); in ext2fs_open_inode_scan() 195 __u32 unused = ext2fs_bg_itable_unused(fs, scan->current_group); in ext2fs_open_inode_scan() 279 scan->current_group++; in get_next_blockgroup() 283 scan->current_group); in get_next_blockgroup() 284 scan->current_inode = scan->current_group * in get_next_blockgroup() 291 __u32 unused = ext2fs_bg_itable_unused(fs, scan->current_group); in get_next_blockgroup() 312 scan->current_group = group - 1; in ext2fs_inode_scan_goto_blockgroup() 618 (scan->fs, scan, scan->current_group, in ext2fs_get_next_inode_full() [all …]
|
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/ |
D | gen_builtin_symbols.py | 654 current_group = {'functions': [], 'name': group_parts[0], 'subgroups': {}} 657 current_group.update(group_metadata) 658 group_stack.append(current_group) 661 current_group = group_stack[-1] 662 if current_group['name'] != group_end_name: 664 '" was expecting "' + current_group['name'] + '"') 668 parsed_functions[current_group['name']] = current_group 672 super_group['subgroups'][current_group['name']] = current_group
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
D | gen_builtin_symbols.py | 1351 current_group = {'functions': [], 'name': group_parts[0], 'subgroups': {}} 1354 current_group.update(group_metadata) 1355 group_stack.append(current_group) 1358 current_group = group_stack[-1] 1359 if current_group['name'] != group_end_name: 1361 '" was expecting "' + current_group['name'] + '"') 1365 if current_group['name'] in parsed_functions: 1366 raise Exception('GROUP END: Duplicate group name "%s"' % current_group['name']) 1367 parsed_functions[current_group['name']] = current_group 1371 super_group['subgroups'][current_group['name']] = current_group
|
/third_party/mindspore/mindspore/boost/ |
D | adasum.py | 190 current_group = self.device_number * (2 ** step) 192 if (sr_target // current_group) % 2 == 0: 193 dest_target = sr_target + current_group 196 dest_target = sr_target - current_group
|
/third_party/glib/glib/ |
D | gkeyfile.c | 505 GKeyFileGroup *current_group; member 632 key_file->current_group = g_slice_new0 (GKeyFileGroup); in g_key_file_init() 633 key_file->groups = g_list_prepend (NULL, key_file->current_group); in g_key_file_init() 1305 g_warn_if_fail (key_file->current_group != NULL); in g_key_file_parse_comment() 1311 key_file->current_group->key_value_pairs = in g_key_file_parse_comment() 1312 g_list_prepend (key_file->current_group->key_value_pairs, pair); in g_key_file_parse_comment() 1357 if (key_file->current_group == NULL || key_file->current_group->name == NULL) in g_key_file_parse_key_value_pair() 1403 if (key_file->current_group in g_key_file_parse_key_value_pair() 1404 && key_file->current_group->name in g_key_file_parse_key_value_pair() 1406 key_file->current_group->name) == 0 in g_key_file_parse_key_value_pair() [all …]
|
/third_party/gn/src/gn/ |
D | command_format.cc | 431 std::vector<size_t> current_group; in SortImports() local 437 if (!current_group.empty()) { in SortImports() 438 import_statements.push_back(current_group); in SortImports() 439 current_group.clear(); in SortImports() 442 current_group.push_back(i); in SortImports() 446 if (!current_group.empty()) in SortImports() 447 import_statements.push_back(current_group); in SortImports()
|
/third_party/boost/boost/graph/distributed/detail/ |
D | mpi_process_group.ipp | 882 boost::mpi::group current_group = communicator(pg).group(); 883 boost::mpi::group new_group = current_group.include(first,last); 889 MPI_Group current_group; 890 int result = MPI_Comm_group(communicator(pg), ¤t_group); 895 result = MPI_Group_incl(current_group, ranks.size(), &ranks[0], &new_group); 904 result = MPI_Group_free(¤t_group);
|