/third_party/mesa3d/src/amd/vulkan/winsys/amdgpu/ |
H A D | radv_amdgpu_cs.c | 641 struct radv_amdgpu_cs *parent = radv_amdgpu_cs(_parent); in radv_amdgpu_cs_execute_secondary() local 643 struct radv_amdgpu_winsys *ws = parent->ws; in radv_amdgpu_cs_execute_secondary() 644 bool use_ib2 = parent->use_ib && allow_ib2; in radv_amdgpu_cs_execute_secondary() 646 if (parent->status != VK_SUCCESS || child->status != VK_SUCCESS) in radv_amdgpu_cs_execute_secondary() 650 radv_amdgpu_cs_add_buffer_internal(parent, child->handles[i].bo_handle, in radv_amdgpu_cs_execute_secondary() 655 radv_amdgpu_cs_add_buffer(&parent->base, child->virtual_buffers[i]); in radv_amdgpu_cs_execute_secondary() 659 if (parent->base.cdw + 4 > parent->base.max_dw) in radv_amdgpu_cs_execute_secondary() 660 radv_amdgpu_cs_grow(&parent->base, 4); in radv_amdgpu_cs_execute_secondary() 663 radeon_emit(&parent in radv_amdgpu_cs_execute_secondary() [all...] |
/third_party/jinja2/ |
H A D | idtracking.py | 15 sym = Symbols(parent=parent_symbols) 25 sym = Symbols(parent=parent_symbols) 32 self, parent: t.Optional["Symbols"] = None, level: t.Optional[int] = None 35 if parent is None: 38 level = parent.level + 1 41 self.parent = parent 63 if self.parent is not None: 64 return self.parent.find_load(target) 72 if self.parent i [all...] |
/third_party/node/deps/v8/third_party/jinja2/ |
H A D | idtracking.py | 11 sym = Symbols(parent=parent_symbols) 19 sym = Symbols(parent=parent_symbols) 25 def __init__(self, parent=None, level=None): 27 if parent is None: 30 level = parent.level + 1 32 self.parent = parent 51 if self.parent is not None: 52 return self.parent.find_load(target) 57 if self.parent i [all...] |
/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | idtracking.py | 12 sym = Symbols(parent=parent_symbols) 20 sym = Symbols(parent=parent_symbols) 27 def __init__(self, parent=None, level=None): 29 if parent is None: 32 level = parent.level + 1 34 self.parent = parent 53 if self.parent is not None: 54 return self.parent.find_load(target) 59 if self.parent i [all...] |
/third_party/python/Lib/idlelib/ |
H A D | config_key.py | 49 def __init__(self, parent, action, current_key_sequences): 51 parent - parent of this dialog 57 super().__init__(parent) 60 self.parent = parent 229 self.showerror(title=self.keyerror_title, parent=self, 248 self.showerror(title, parent=self, 252 self.showerror(title=title, parent=self, 259 self.showerror(title=title, parent [all...] |
/third_party/skia/third_party/externals/jinja2/ |
H A D | idtracking.py | 11 sym = Symbols(parent=parent_symbols) 19 sym = Symbols(parent=parent_symbols) 25 def __init__(self, parent=None, level=None): 27 if parent is None: 30 level = parent.level + 1 32 self.parent = parent 51 if self.parent is not None: 52 return self.parent.find_load(target) 57 if self.parent i [all...] |
/third_party/python/Lib/lib2to3/ |
H A D | fixer_util.py | 242 for pattern, parent in zip(patterns, attr_chain(node, "parent")): 244 if pattern.match(parent, results) and results["node"] is node: 256 parent = node.parent 257 if parent.type in (syms.funcdef, syms.classdef): 259 if parent.type == syms.expr_stmt and parent.children[0] is node: 262 if parent.type == syms.parameters or \ 263 (parent [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/ |
H A D | cordz_info_test.cc | 79 TestCordData parent, child; in TEST() local 80 CordzInfo::MaybeTrackCord(child.data, parent.data, kTrackCordMethod); in TEST() 86 TestCordData parent, child; in TEST() local 87 CordzInfo::MaybeTrackCord(child.data, parent.data, kTrackCordMethod); in TEST() 93 TestCordData parent, child; in TEST() local 94 CordzInfo::TrackCord(parent.data, kTrackCordMethod); in TEST() 95 CordzInfo::MaybeTrackCord(child.data, parent.data, kTrackCordMethod); in TEST() 96 CordzInfo* parent_info = parent.data.cordz_info(); in TEST() 107 TestCordData parent, child; in TEST() local 109 CordzInfo::MaybeTrackCord(child.data, parent in TEST() 115 TestCordData parent, child; TEST() local 281 TrackChildCord(InlineData& data, const InlineData& parent) TrackChildCord() argument 319 TestCordData parent; TEST() local [all...] |
/third_party/mesa3d/src/util/ |
H A D | slab.h | 27 * Objects are allocated from "child" pools that are connected to a "parent" 35 * to the same parent is allowed (and requires no locking by the caller), but 39 * functions around a single parent-child pair. 62 struct slab_parent_pool *parent; member 72 * This list is protected by the parent mutex. 77 void slab_create_parent(struct slab_parent_pool *parent, 80 void slab_destroy_parent(struct slab_parent_pool *parent); 82 struct slab_parent_pool *parent); 89 struct slab_parent_pool parent; member
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/wpa_gui-qt4/ |
H A D | eventhistory.h | 21 EventListModel(QObject *parent = 0) in EventListModel() 22 : QAbstractTableModel(parent) {} in EventListModel() 24 int rowCount(const QModelIndex &parent = QModelIndex()) const; 25 int columnCount(const QModelIndex &parent = QModelIndex()) const; 42 EventHistory(QWidget *parent = 0, const char *name = 0,
|
/third_party/vk-gl-cts/framework/common/ |
H A D | tcuSurfaceAccess.cpp | 48 SurfaceAccess::SurfaceAccess (const SurfaceAccess& parent, int x, int y, int width, int height) in SurfaceAccess() argument 49 : m_surface (parent.m_surface) in SurfaceAccess() 50 , m_colorMask (parent.m_colorMask) in SurfaceAccess() 51 , m_x (parent.m_x + x) in SurfaceAccess() 52 , m_y (parent.m_y + y) in SurfaceAccess()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/wpa_gui-qt4/ |
H A D | eventhistory.h | 21 EventListModel(QObject *parent = 0) in EventListModel() 22 : QAbstractTableModel(parent) {} in EventListModel() 24 int rowCount(const QModelIndex &parent = QModelIndex()) const; 25 int columnCount(const QModelIndex &parent = QModelIndex()) const; 42 EventHistory(QWidget *parent = 0, const char *name = 0,
|
/third_party/jerryscript/jerry-core/ecma/builtin-objects/ |
H A D | ecma-builtin-helpers-sort.c | 76 uint32_t parent = (child - 1) / 2; in ecma_builtin_helper_array_to_heap() local 77 JERRY_ASSERT (parent <= right); in ecma_builtin_helper_array_to_heap() 78 array_p[parent] = array_p[child]; in ecma_builtin_helper_array_to_heap() 90 * This means that 'swap' should be placed in the parent node. in ecma_builtin_helper_array_to_heap() 92 uint32_t parent = (child - 1) / 2; in ecma_builtin_helper_array_to_heap() local 93 JERRY_ASSERT (parent <= right); in ecma_builtin_helper_array_to_heap() 94 array_p[parent] = swap; in ecma_builtin_helper_array_to_heap()
|
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/mutators/ |
H A D | number_mutator.js | 22 return (path.parent && 23 babelTypes.isObjectMember(path.parent) && 24 path.parent.key === path.node); 77 if (path.parent && babelTypes.isUnaryExpression(path.parent) && 78 path.parent.operator === '-') {
|
/third_party/python/Lib/lib2to3/fixes/ |
H A D | fix_dict.py | 91 if node.parent is None: 94 if (node.parent.parent is not None and 95 self.p1.match(node.parent.parent, results) and 106 return self.p2.match(node.parent, results) and results["node"] is node
|
H A D | fix_xrange.py | 64 if node.parent is None: 67 if (node.parent.parent is not None and 68 self.p1.match(node.parent.parent, results) and 73 return self.p2.match(node.parent, results) and results["node"] is node
|
/third_party/typescript/tests/baselines/reference/ |
H A D | moduleMemberWithoutTypeAnnotation1.js | 21 constructor(parent: PositionedElement, token: ISyntaxToken, fullStart: number) { 42 private findTokenInternal(parent: PositionedElement, position: number, fullStart: number) { 43 return new PositionedToken(parent, this, fullStart); 77 function PositionedToken(parent, token, fullStart) {
107 VariableWidthTokenWithTrailingTrivia.prototype.findTokenInternal = function (parent, position, fullStart) {
108 return new TypeScript.PositionedToken(parent, this, fullStart);
|
/third_party/mesa3d/src/gallium/frontends/nine/ |
H A D | nine_buffer_upload.c | 55 struct nine_buffer_group *parent; /* Can be NULL */ member 56 struct pipe_resource *resource; /* The parent resource if apply */ 58 /* If there is no parent, the resource map. Else NULL. */ 211 buf->parent = NULL; in nine_upload_create_buffer() 251 buf->parent = group; in nine_upload_create_buffer() 266 DBG("%p %p %p\n", upload, buf, buf->parent); in nine_upload_release_buffer() 268 if (buf->parent) { in nine_upload_release_buffer() 270 buf->parent->refcount--; in nine_upload_release_buffer() 271 if (buf->parent->refcount == 0) { in nine_upload_release_buffer() 273 nine_upload_destroy_buffer_group(upload, buf->parent); in nine_upload_release_buffer() [all...] |
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
H A D | lp_state_fs_analysis.c | 191 // The parent instr should be a nir_intrinsic_load_deref. in get_nir_input_info() 192 const nir_instr *parent = src->src.ssa[0].parent_instr; in get_nir_input_info() local 193 if (!parent || parent->type != nir_instr_type_intrinsic) { in get_nir_input_info() 196 nir_intrinsic_instr *intrin = nir_instr_as_intrinsic(parent); in get_nir_input_info() 203 // The parent of the load should be a type_deref. in get_nir_input_info() 204 parent = intrin->src->ssa->parent_instr; in get_nir_input_info() 205 if (!parent || parent->type != nir_instr_type_deref) { in get_nir_input_info() 210 nir_deref_instr *deref = nir_instr_as_deref(parent); in get_nir_input_info() 257 const nir_instr *parent = texcoord->src.ssa->parent_instr; get_texcoord_provenance() local [all...] |
/third_party/jerryscript/jerry-ext/handle-scope/ |
H A D | handle-scope-allocator.c | 67 * Get the parent of given handle scope. 68 * If given handle scope is in prelist, the parent must be in prelist too; 69 * if given is the first item of heap chain list, the parent must be the last one of prelist; 70 * the parent must be in chain list otherwise. 73 * @returns - the parent of the given scope. 89 jerryx_handle_scope_dynamic_t *parent = dy_scope->parent; in jerryx_handle_scope_get_parent() local 90 return (jerryx_handle_scope_t *) parent; in jerryx_handle_scope_get_parent() 166 dy_scope->parent = dy_current; in jerryx_handle_scope_alloc() 172 dy_scope->parent in jerryx_handle_scope_alloc() [all...] |
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_lower_samplers.c | 42 assert(deref->parent.is_ssa); in lower_tex_src_to_offset() 43 nir_deref_instr *parent = in lower_tex_src_to_offset() local 44 nir_instr_as_deref(deref->parent.ssa->parent_instr); in lower_tex_src_to_offset() 66 if (index_in_array < glsl_array_size(parent->type)) { in lower_tex_src_to_offset() 69 base_index = glsl_array_size(parent->type) - 1; in lower_tex_src_to_offset() 83 array_elements *= glsl_get_length(parent->type); in lower_tex_src_to_offset() 85 deref = parent; in lower_tex_src_to_offset()
|
/third_party/node/deps/npm/node_modules/@npmcli/arborist/lib/ |
H A D | override-set.js | 5 constructor ({ overrides, key, parent }) { 6 this.parent = parent 19 if (parent) { 38 parent: this, 119 for (let ancestor = this; ancestor; ancestor = ancestor.parent) { 125 return !this.parent
|
/third_party/elfio/elfio/ |
H A D | elfio.hpp | 956 explicit Sections( elfio* parent ) : parent( parent ) {} in Sections() 961 return static_cast<Elf_Half>( parent->sections_.size() ); 969 if ( index < parent->sections_.size() ) { 970 sec = parent->sections_[index].get(); 981 for ( const auto& it : parent->sections_ ) { 994 section* new_section = parent->create_section(); 997 Elf_Half str_index = parent->get_section_name_str_index(); 998 section* string_table( parent 1034 elfio* parent; global() member in ELFIO::elfio::Sections 1089 elfio* parent; global() member in ELFIO::elfio::Segments [all...] |
/third_party/ltp/testcases/kernel/sched/pthreads/ |
H A D | pth_str03.c | 25 * returns result to parent 185 * Register the child with the parent and then wait for all of the children 188 int synchronize_children(c_info * parent) in synchronize_children() argument 217 /* Register with parent bumping the parent's child_count variable. in synchronize_children() 222 &parent->child_mutex); in synchronize_children() 225 pthread_mutex_lock(&parent->child_mutex); in synchronize_children() 228 my_index, parent->child_count); in synchronize_children() 231 parent->child_ptrs[parent in synchronize_children() 324 c_info *parent = (c_info *) param; doit() local [all...] |
H A D | pth_str01.c | 166 * Register the child with the parent and then wait for all of the children 169 int synchronize_children(c_info * parent) in synchronize_children() argument 203 * Register with parent bumping the parent's child_count variable. in synchronize_children() 209 &parent->child_mutex); in synchronize_children() 212 pthread_mutex_lock(&parent->child_mutex); in synchronize_children() 215 my_index, parent->child_count); in synchronize_children() 218 parent->child_ptrs[parent->child_count++] = info_p; in synchronize_children() 221 &parent in synchronize_children() 321 doit(c_info * parent) doit() argument [all...] |