Home
last modified time | relevance | path

Searched refs:index_node (Results 1 – 10 of 10) sorted by relevance

/external/f2fs-tools/fsck/
Dsegment.c105 void *index_node = NULL; in f2fs_read() local
134 if (index_node) in f2fs_read()
135 free(index_node); in f2fs_read()
136 index_node = (dn.node_blk == dn.inode_blk) ? in f2fs_read()
168 if (index_node) in f2fs_read()
169 free(index_node); in f2fs_read()
187 void* index_node = NULL; in f2fs_write() local
212 if (index_node) in f2fs_write()
213 free(index_node); in f2fs_write()
214 index_node = (dn.node_blk == dn.inode_blk) ? in f2fs_write()
[all …]
/external/kmod/tools/
Ddepmod.c166 struct index_node { struct
171 struct index_node *children[INDEX_CHILDMAX]; /* indexed by character */ argument
185 static struct index_node *index_create(void) in index_create()
187 struct index_node *node; in index_create()
189 node = NOFAIL(calloc(sizeof(struct index_node), 1)); in index_create()
206 static void index_destroy(struct index_node *node) in index_destroy()
211 struct index_node *child = node->children[c]; in index_destroy()
261 static int index_insert(struct index_node *node, const char *key, in index_insert()
280 struct index_node *n; in index_insert()
283 n = NOFAIL(calloc(sizeof(struct index_node), 1)); in index_insert()
[all …]
/external/tensorflow/tensorflow/compiler/tf2xla/
Dtf2xla.cc224 for (const auto& index_node : indexed_arg_nodes) { in CollectArgNodes() local
225 if (index_node.first != arg_nodes->size()) { in CollectArgNodes()
228 index_node.first); in CollectArgNodes()
230 arg_nodes->push_back(index_node.second); in CollectArgNodes()
/external/tensorflow/tensorflow/core/grappler/optimizers/data/
Dauto_shard.cc116 NodeDef* index_node = graph_utils::AddScalarConstNode<int64>(index, graph); in AddShardNode() local
121 new_node.add_input(index_node->name()); in AddShardNode()
/external/python/cpython2/Lib/lib2to3/
Dfixer_util.py79 def Subscript(index_node): argument
82 index_node,
/external/python/cpython3/Lib/lib2to3/
Dfixer_util.py77 def Subscript(index_node): argument
80 index_node,
/external/v8/src/
Dcode-stub-assembler.cc1925 SloppyTNode<HeapObject> array, int array_header_size, Node* index_node, in LoadArrayElement() argument
1929 ParameterToIntPtr(index_node, parameter_mode), in LoadArrayElement()
1933 TNode<IntPtrT> offset = ElementOffsetFromIndex(index_node, HOLEY_ELEMENTS, in LoadArrayElement()
1992 TNode<FixedArray> object, Node* index_node, int additional_offset, in LoadFixedArrayElement() argument
1996 FixedArrayBoundsCheck(object, index_node, additional_offset, parameter_mode); in LoadFixedArrayElement()
1998 LoadArrayElement(object, FixedArray::kHeaderSize, index_node, in LoadFixedArrayElement()
2196 Node* data_pointer, Node* index_node, ElementsKind elements_kind, in LoadFixedTypedArrayElementAsTagged() argument
2199 ElementOffsetFromIndex(index_node, elements_kind, parameter_mode, 0); in LoadFixedTypedArrayElementAsTagged()
2274 TNode<Object> index_node, TNode<Object> value, ElementsKind elements_kind, in StoreFixedTypedArrayElementFromTagged() argument
2283 StoreElement(data_pointer, elements_kind, index_node, in StoreFixedTypedArrayElementFromTagged()
[all …]
Dcode-stub-assembler.h1088 Node* data_pointer, Node* index_node, ElementsKind elements_kind,
1099 TNode<Object> index_node, TNode<Object> value, ElementsKind elements_kind,
/external/v8/src/compiler/
Descape-analysis.cc501 Maybe<int> OffsetOfElementsAccess(const Operator* op, Node* index_node) { in OffsetOfElementsAccess() argument
504 Type index_type = NodeProperties::GetType(index_node); in OffsetOfElementsAccess()
/external/v8/src/wasm/
Dfunction-body-decoder.cc784 void DoCall(FullDecoder* decoder, TFNode* index_node, FunctionSig* sig, in DoCall() argument
789 arg_nodes[0] = index_node; in DoCall()
793 if (index_node) { in DoCall()