Home
last modified time | relevance | path

Searched defs:node (Results 1001 – 1025 of 8398) sorted by relevance

1...<<41424344454647484950>>...336

/aosp_15_r20/external/tensorflow/tensorflow/core/profiler/internal/
H A Dtfprof_timeline.h76 TimeNode(Process* process, GraphNode* node, int64_t start_micros, in TimeNode()
88 GraphNode* node; variable
136 void TrackNode(const GraphNode* node) { mem_tracker_.TrackNode(step_, node); } in TrackNode()
141 void EmitTreeNode(const Node* node, int64_t start_time, int64_t duration, in EmitTreeNode()
/aosp_15_r20/external/ltp/testcases/kernel/syscalls/migrate_pages/
H A Dmigrate_pages02.c47 static void print_mem_stats(pid_t pid, int node) in print_mem_stats()
69 static int migrate_to_node(pid_t pid, int node) in migrate_to_node()
107 int node; in addr_on_node() local
121 int node; in check_addr_on_node() local
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/multi_index/include/boost/multi_index/detail/
Dcopy_map.hpp105 void copy_clone(Node* node){clone(node,copy_map_value_copier());} in copy_clone()
106 void move_clone(Node* node){clone(node,copy_map_value_mover());} in move_clone()
134 void deallocate(Node* node) in deallocate()
140 void clone(Node* node,ValueAccess access) in clone()
/aosp_15_r20/external/f2fs-tools/fsck/
H A Ddict.c135 static void free_nodes(dict_t *dict, dnode_t *node, dnode_t *nil) in free_nodes()
233 static int verify_dict_has_node(dnode_t *nil, dnode_t *root, dnode_t *node) in verify_dict_has_node()
542 void dict_insert(dict_t *dict, dnode_t *node, const void *key) in dict_insert()
815 dnode_t *node = dict->allocnode(dict->context); in dict_alloc_insert() local
826 void dict_delete_free(dict_t *dict, dnode_t *node) in dict_delete_free()
942 int dict_contains(dict_t *dict, dnode_t *node) in dict_contains()
952 static void dnode_free(dnode_t *node, void *UNUSED(context)) in dnode_free()
1011 dnode_t *node = dict_first(dict), *next; in dict_process() local
/aosp_15_r20/external/pytorch/torch/csrc/jit/passes/
H A Dtensorexpr_fuser.cpp43 static bool isSupportedForBlock(Node* node) { in isSupportedForBlock()
89 bool isSupported(Node* node) { in isSupported()
398 bool has_unsupported_pin_memory(const Node* node) { in has_unsupported_pin_memory()
822 bool allShapesAreKnown(Node* node) { in allShapesAreKnown()
861 bool isFusableOnDevice(Node* node) { in isFusableOnDevice()
875 bool typesAreSupported(Node* node) { in typesAreSupported()
1105 bool canHandle(Node* node) { in canHandle()
1355 static Operation createTensorExprOp(const Node* node) { in createTensorExprOp()
H A Dpeephole_non_tensor.cpp21 std::optional<int64_t> checkArithNode(Node& node) { in checkArithNode()
42 bool trySimplifyMulOrDiv(Node& node) { in trySimplifyMulOrDiv()
58 bool trySimplifyAddOrSub(Node& node) { in trySimplifyAddOrSub()
104 auto* node = *it; in optimizeBlock() local
/aosp_15_r20/external/e2fsprogs/lib/support/
H A Ddict.c145 static void free_nodes(dict_t *dict, dnode_t *node, dnode_t *nil) in free_nodes()
246 static int verify_dict_has_node(dnode_t *nil, dnode_t *root, dnode_t *node) in verify_dict_has_node()
578 void dict_insert(dict_t *dict, dnode_t *node, const void *key) in dict_insert()
853 dnode_t *node = dict->allocnode(dict->context); in dict_alloc_insert() local
864 void dict_delete_free(dict_t *dict, dnode_t *node) in dict_delete_free()
984 int dict_contains(dict_t *dict, dnode_t *node) in dict_contains()
994 static void dnode_free(dnode_t *node, void *context EXT2FS_ATTR((unused))) in dnode_free()
1053 dnode_t *node = dict_first(dict), *next; in dict_process() local
/aosp_15_r20/external/tensorflow/tensorflow/tools/graph_transforms/
H A Dfold_old_batch_norms_test.cc119 for (const NodeDef& node : fused_graph_def.node()) { in TestFoldOldBatchNorms() local
197 for (const NodeDef& node : fused_graph_def.node()) { in TestFoldOldBatchNormsAfterDepthwiseConv2dNative() local
274 for (const NodeDef& node : fused_graph_def.node()) { in TestFoldFusedBatchNorms() local
352 for (const NodeDef& node : fused_graph_def.node()) { in TestFoldFusedBatchNormsAfterDepthwiseConv2dNative() local
452 for (const NodeDef& node : fused_graph_def.node()) { in TestFoldFusedBatchNormsWithConcat() local
544 for (const NodeDef& node : fused_graph_def.node()) { in TestFoldFusedBatchNormsWithBatchToSpace() local
/aosp_15_r20/external/selinux/libsepol/src/
H A Dconditional.c142 cond_node_t *cond_node_create(policydb_t * p, cond_node_t * node) in cond_node_create()
309 static int evaluate_cond_node(policydb_t * p, cond_node_t * node) in evaluate_cond_node()
486 void cond_node_destroy(cond_node_t * node) in cond_node_destroy()
747 static int cond_read_node(policydb_t * p, cond_node_t * node, void *fp) in cond_read_node()
823 cond_node_t *node, *last = NULL; in cond_read_list() local
864 avtab_ptr_t node; in cond_compute_av() local
/aosp_15_r20/external/pytorch/torch/csrc/jit/passes/onnx/
H A Dfixup_onnx_controlflow.cpp113 std::vector<Value*> ConvertSequenceDependencies(Node* node, int opset_version) { in ConvertSequenceDependencies()
290 void FixupONNXLoopNodeInputs(Node* node, int opset_version) { in FixupONNXLoopNodeInputs()
350 std::vector<Value*> FixupONNXLoopNode(Node* node, int opset_version) { in FixupONNXLoopNode()
459 void ONNXFixupUninitializedOutput(Node* node, int opset_version) { in ONNXFixupUninitializedOutput()
513 void ONNXMergeIfBlockOutputShapes(Node* node) { in ONNXMergeIfBlockOutputShapes()
666 std::vector<Value*> FixupONNXIfNode(Node* node, int opset_version) { in FixupONNXIfNode()
/aosp_15_r20/external/tensorflow/tensorflow/core/common_runtime/
H A Dstep_stats_collector.cc43 bool IsRecv(const NodeDef* node) { in IsRecv()
47 bool IsSend(const NodeDef* node) { in IsSend()
54 const NodeDef* node, StepStatsCollector* step_stats_collector) in NodeExecStatsWrapper()
61 std::unique_ptr<NodeExecStats> stats, const NodeDef* node, in NodeExecStatsWrapper()
350 const Node* node = name_to_node[stats.node_name()]; in BuildCostModel() local
427 const NodeDef* node) { in CreateNodeExecStats()
/aosp_15_r20/external/python/pycparser/tests/
Dtest_c_parser.py92 def assert_coord(self, node, line, column=None, file=None): argument
1592 def visit_Constant(self, node): argument
1603 def visit_ID(self, node): argument
1614 def generic_visit(self, node): argument
1791 def assert_case_node(node, const_value): argument
1796 def assert_default_node(node): argument
/aosp_15_r20/external/tensorflow/tensorflow/core/grappler/costs/
H A Dgraph_properties_test.cc163 for (const auto& node : item.graph.node()) { in TEST_F() local
204 for (const auto& node : item.graph.node()) { in TEST_F() local
247 for (const auto& node : item.graph.node()) { in TEST_F() local
576 for (const string& node : resource_nodes) { in TEST_F() local
778 for (const string& node : nodes) { in TEST_F() local
839 for (const string& node : outer_nodes) { in TEST_F() local
845 for (const string& node : inner_nodes) { in TEST_F() local
902 for (const string& node : outer_nodes) { in TEST_F() local
908 for (const string& node : inner_nodes) { in TEST_F() local
960 for (const string& node : outer_nodes) { in TEST_F() local
[all …]
/aosp_15_r20/external/nullaway/nullaway/src/main/java/com/uber/nullaway/handlers/
H A DMethodNameUtil.java243 boolean isMatcherIsNotNull(Node node) { in isMatcherIsNotNull()
255 private boolean isMatcherNotNull(Node node) { in isMatcherNotNull()
269 private boolean isMatcherNull(Node node) { in isMatcherNull()
276 boolean isMatcherIsInstanceOf(Node node) { in isMatcherIsInstanceOf()
291 private boolean matchesMatcherMethod(Node node, Name matcherName, Name matcherClass) { in matchesMatcherMethod()
H A DOptionalEmptinessHandler.java119 MethodInvocationNode node, in onDataflowVisitMethodInvocation()
184 MethodInvocationNode node, in handleTestAssertions()
236 MethodInvocationNode node, in handleBooleanAssertionOnMethod()
247 private Optional<Node> getNodeWrappedByAssertThat(MethodInvocationNode node) { in getNodeWrappedByAssertThat()
261 private MethodInvocationNode maybeUnwrapBooleanValueOf(MethodInvocationNode node) { in maybeUnwrapBooleanValueOf()
/aosp_15_r20/frameworks/base/graphics/java/android/graphics/
H A DRecordingCanvas.java62 static RecordingCanvas obtain(@NonNull RenderNode node, int width, int height) { in obtain()
84 void finishRecording(RenderNode node) { in finishRecording()
92 private RecordingCanvas(@NonNull RenderNode node, int width, int height) { in RecordingCanvas()
275 private static native long nCreateDisplayListCanvas(long node, int width, int height); in nCreateDisplayListCanvas()
277 private static native void nResetDisplayListCanvas(long canvas, long node, in nResetDisplayListCanvas()
/aosp_15_r20/external/ltp/metadata/
H A Ddata_storage.h29 struct data_node *node; member
79 struct data_node *node = malloc(size); in data_node_string() local
92 struct data_node *node = malloc(sizeof(struct data_node_int)); in data_node_int() local
109 struct data_node *node = malloc(size); in data_node_hash() local
125 struct data_node *node = malloc(size); in data_node_array() local
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/Analysis/
DRegionIterator.h109 inline RNSuccIterator(NodeRef node) in RNSuccIterator()
122 inline RNSuccIterator(NodeRef node, bool) in RNSuccIterator()
190 inline RNSuccIterator(NodeRef node) in RNSuccIterator()
203 inline RNSuccIterator(NodeRef node, bool) in RNSuccIterator()
/aosp_15_r20/external/tensorflow/tensorflow/lite/kernels/
H A Dsplit_v.cc46 TfLiteStatus UseDynamicOutputTensors(TfLiteContext* context, TfLiteNode* node) { in UseDynamicOutputTensors()
64 TfLiteStatus ResizeOutputTensors(TfLiteContext* context, TfLiteNode* node, in ResizeOutputTensors()
129 TfLiteStatus Prepare(TfLiteContext* context, TfLiteNode* node) { in Prepare()
162 TfLiteStatus Eval(TfLiteContext* context, TfLiteNode* node) { in Eval()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/Analysis/
DRegionIterator.h109 inline RNSuccIterator(NodeRef node) in RNSuccIterator()
122 inline RNSuccIterator(NodeRef node, bool) in RNSuccIterator()
190 inline RNSuccIterator(NodeRef node) in RNSuccIterator()
203 inline RNSuccIterator(NodeRef node, bool) in RNSuccIterator()
/aosp_15_r20/external/skia/modules/skottie/src/
H A DSkottieProperty.cpp64 ColorPropertyHandle::PropertyHandle(sk_sp<sksg::Color> node) in PropertyHandle()
89 OpacityPropertyHandle::PropertyHandle(sk_sp<sksg::OpacityEffect> node) in PropertyHandle()
114 TextPropertyHandle::PropertyHandle(sk_sp<internal::TextAdapter> node) in PropertyHandle()
139 TransformPropertyHandle::PropertyHandle(sk_sp<internal::TransformAdapter2D> node) in PropertyHandle()
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Analysis/
H A DRegionIterator.h109 inline RNSuccIterator(NodeRef node) in RNSuccIterator()
122 inline RNSuccIterator(NodeRef node, bool) in RNSuccIterator()
190 inline RNSuccIterator(NodeRef node) in RNSuccIterator()
203 inline RNSuccIterator(NodeRef node, bool) in RNSuccIterator()
/aosp_15_r20/hardware/google/gfxstream/third-party/astc-encoder/Source/
Dastcenc_diagnostic_trace.cpp197 TraceNode* node = g_TraceLog->get_current_leaf(); in trace_add_data() local
208 TraceNode* node = g_TraceLog->get_current_leaf(); in trace_add_data() local
217 TraceNode* node = g_TraceLog->get_current_leaf(); in trace_add_data() local
226 TraceNode* node = g_TraceLog->get_current_leaf(); in trace_add_data() local
/aosp_15_r20/external/aws-sdk-java-v2/services-custom/iam-policy-builder/src/main/java/software/amazon/awssdk/policybuilder/iam/internal/
H A DDefaultIamPolicyReader.java175 JsonNode node = statementObject.get(nodeKey); in readStringOrArrayAsList() local
196 JsonNode node = object.get(key); in getString() local
204 private String expectString(JsonNode node, String name) { in expectString()
209 private Map<String, JsonNode> expectObject(JsonNode node, String name) { in expectObject()
/aosp_15_r20/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DXMPNode.java130 public void addChild(XMPNode node) throws XMPException in addChild()
147 public void addChild(int index, XMPNode node) throws XMPException in addChild()
161 public void replaceChild(int index, XMPNode node) in replaceChild()
185 public void removeChild(XMPNode node) in removeChild()

1...<<41424344454647484950>>...336