/external/v8/src/compiler/ |
branch-elimination.cc | 8 #include "src/compiler/node-properties.h" 26 Reduction BranchElimination::Reduce(Node* node) { 27 switch (node->opcode()) { 32 return ReduceDeoptimizeConditional(node); 34 return ReduceMerge(node); 36 return ReduceLoop(node); 38 return ReduceBranch(node); 40 return ReduceIf(node, false); 42 return ReduceIf(node, true) [all...] |
js-call-reducer.cc | 8 #include "src/compiler/node-matchers.h" 40 Reduction JSCallReducer::Reduce(Node* node) { 41 switch (node->opcode()) { 43 return ReduceJSCallConstruct(node); 45 return ReduceJSCallFunction(node); 54 Reduction JSCallReducer::ReduceArrayConstructor(Node* node) { 55 DCHECK_EQ(IrOpcode::kJSCallFunction, node->opcode()); 56 Node* target = NodeProperties::GetValueInput(node, 0) [all...] |
graph.cc | 10 #include "src/compiler/node.h" 11 #include "src/compiler/node-properties.h" 27 void Graph::Decorate(Node* node) { 29 decorator->Decorate(node); 45 Node* Graph::NewNode(const Operator* op, int input_count, Node* const* inputs, 47 Node* node = NewNodeUnchecked(op, input_count, inputs, incomplete); local 48 Verifier::VerifyNode(node); 54 Node* const node = local [all...] |
simplified-lowering.cc | 16 #include "src/compiler/node-matchers.h" 17 #include "src/compiler/node-properties.h" 47 // During this phase, the usage information for a node determines the best 156 void SetAndCheckInput(Node* node, int index, UseInfo use_info) { 158 input_use_infos_.resize(node->InputCount(), UseInfo::None()); 183 // Information for each node tracked during the fixpoint. 186 // Adds new use to the node. Returns true if something has changed 187 // and the node has to be requeued. 258 while (current.input_index < current.node->InputCount()) 272 Node* node = current.node; local 289 Node* node = queue_.front(); local 561 Node* node = queue_.front(); local 586 Node* node = *i; local 598 Node* node = *i; local 622 Node* node = use_node->InputAt(index); local 2150 Node* node; member in struct:v8::internal::compiler::RepresentationSelector::NodeState [all...] |
simplified-lowering.h | 11 #include "src/compiler/node.h" 39 void DoJSToNumberTruncatesToFloat64(Node* node, 41 void DoJSToNumberTruncatesToWord32(Node* node, 44 // representation analysis is stored in the node bounds. 45 void DoLoadBuffer(Node* node, MachineRepresentation rep, 47 void DoStoreBuffer(Node* node); [all...] |
/device/moto/shamu/camera/QCamera2/util/ |
QCameraQueue.cpp | 63 * @data_rel_fn : function ptr to release node data internal resource 142 camera_q_node *node = local 144 if (NULL == node) { 149 memset(node, 0, sizeof(camera_q_node)); 150 node->data = data; 154 cam_list_add_tail_node(&node->list, &m_head.list); 158 free(node); 179 camera_q_node *node = local 181 if (NULL == node) { 186 memset(node, 0, sizeof(camera_q_node)) 221 camera_q_node* node = NULL; local 261 camera_q_node* node = NULL; local 303 camera_q_node* node = NULL; local 348 camera_q_node* node = NULL; local [all...] |
/external/boringssl/src/crypto/x509v3/ |
pcy_lib.c | 133 const ASN1_OBJECT *X509_policy_node_get0_policy(const X509_POLICY_NODE *node) 135 if (!node) 137 return node->data->valid_policy; 141 int X509_policy_node_get_critical(const X509_POLICY_NODE *node) 143 if (node_critical(node)) 150 X509_policy_node_get0_qualifiers(const X509_POLICY_NODE *node) 152 if (!node) 154 return node->data->qualifier_set; 158 X509_policy_node_get0_parent(const X509_POLICY_NODE *node) 160 if (!node) [all...] |
/external/fio/lib/ |
rbtree.h | 56 struct rb_node * node) 75 rb_link_node(node, parent, p); 82 struct rb_node * node) 85 if ((ret = __rb_insert_page_cache(inode, offset, node))) 87 rb_insert_color(node, &inode->i_rb_page_cache); 136 #define RB_EMPTY_NODE(node) (rb_parent(node) == node) 137 #define RB_CLEAR_NODE(node) (rb_set_parent(node, node) [all...] |
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/page/ |
NodePage.java | 22 * Report page that represents a coverage node. 25 * type of the node represented by this page 30 private final NodeType node; field in class:NodePage 33 * Creates a new node page. 35 * @param node 36 * corresponding node 44 protected NodePage(final NodeType node, final ReportPage parent, 47 this.node = node; 56 return Resources.getElementStyle(node.getElementType()) [all...] |
/external/selinux/libsepol/cil/src/ |
cil_tree.h | 55 void cil_tree_subtree_destroy(struct cil_tree_node *node); 56 void cil_tree_children_destroy(struct cil_tree_node *node); 58 void cil_tree_node_init(struct cil_tree_node **node); 59 void cil_tree_node_destroy(struct cil_tree_node **node); 68 int cil_tree_walk(struct cil_tree_node *start_node, int (*process_node)(struct cil_tree_node *node, uint32_t *finished, void *extra_args), int (*first_child)(struct cil_tree_node *node, void *extra_args), int (*last_child)(struct cil_tree_node *node, void *extra_args), void *extra_args);
|
/prebuilts/gdb/darwin-x86/include/python2.7/ |
parsetok.h | 35 PyAPI_FUNC(node *) PyParser_ParseString(const char *, grammar *, int, 37 PyAPI_FUNC(node *) PyParser_ParseFile (FILE *, const char *, grammar *, int, 40 PyAPI_FUNC(node *) PyParser_ParseStringFlags(const char *, grammar *, int, 42 PyAPI_FUNC(node *) PyParser_ParseFileFlags(FILE *, const char *, grammar *, 45 PyAPI_FUNC(node *) PyParser_ParseFileFlagsEx(FILE *, const char *, grammar *, 49 PyAPI_FUNC(node *) PyParser_ParseStringFlagsFilename(const char *, 53 PyAPI_FUNC(node *) PyParser_ParseStringFlagsFilenameEx(const char *,
|
/prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/ |
fix_unicode.py | 16 def transform(self, node, results): 17 if node.type == token.NAME: 18 new = node.clone() 19 new.value = _mapping[node.value] 21 elif node.type == token.STRING: 22 if _literal_re.match(node.value): 23 new = node.clone()
|
/prebuilts/gdb/linux-x86/include/python2.7/ |
parsetok.h | 35 PyAPI_FUNC(node *) PyParser_ParseString(const char *, grammar *, int, 37 PyAPI_FUNC(node *) PyParser_ParseFile (FILE *, const char *, grammar *, int, 40 PyAPI_FUNC(node *) PyParser_ParseStringFlags(const char *, grammar *, int, 42 PyAPI_FUNC(node *) PyParser_ParseFileFlags(FILE *, const char *, grammar *, 45 PyAPI_FUNC(node *) PyParser_ParseFileFlagsEx(FILE *, const char *, grammar *, 49 PyAPI_FUNC(node *) PyParser_ParseStringFlagsFilename(const char *, 53 PyAPI_FUNC(node *) PyParser_ParseStringFlagsFilenameEx(const char *,
|
/prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/ |
fix_unicode.py | 16 def transform(self, node, results): 17 if node.type == token.NAME: 18 new = node.clone() 19 new.value = _mapping[node.value] 21 elif node.type == token.STRING: 22 if _literal_re.match(node.value): 23 new = node.clone()
|
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
parsetok.h | 35 PyAPI_FUNC(node *) PyParser_ParseString(const char *, grammar *, int, 37 PyAPI_FUNC(node *) PyParser_ParseFile (FILE *, const char *, grammar *, int, 40 PyAPI_FUNC(node *) PyParser_ParseStringFlags(const char *, grammar *, int, 42 PyAPI_FUNC(node *) PyParser_ParseFileFlags(FILE *, const char *, grammar *, 45 PyAPI_FUNC(node *) PyParser_ParseFileFlagsEx(FILE *, const char *, grammar *, 49 PyAPI_FUNC(node *) PyParser_ParseStringFlagsFilename(const char *, 53 PyAPI_FUNC(node *) PyParser_ParseStringFlagsFilenameEx(const char *,
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_unicode.py | 16 def transform(self, node, results): 17 if node.type == token.NAME: 18 new = node.clone() 19 new.value = _mapping[node.value] 21 elif node.type == token.STRING: 22 if _literal_re.match(node.value): 23 new = node.clone()
|
/prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
parsetok.h | 35 PyAPI_FUNC(node *) PyParser_ParseString(const char *, grammar *, int, 37 PyAPI_FUNC(node *) PyParser_ParseFile (FILE *, const char *, grammar *, int, 40 PyAPI_FUNC(node *) PyParser_ParseStringFlags(const char *, grammar *, int, 42 PyAPI_FUNC(node *) PyParser_ParseFileFlags(FILE *, const char *, grammar *, 45 PyAPI_FUNC(node *) PyParser_ParseFileFlagsEx(FILE *, const char *, grammar *, 49 PyAPI_FUNC(node *) PyParser_ParseStringFlagsFilename(const char *, 53 PyAPI_FUNC(node *) PyParser_ParseStringFlagsFilenameEx(const char *,
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_unicode.py | 16 def transform(self, node, results): 17 if node.type == token.NAME: 18 new = node.clone() 19 new.value = _mapping[node.value] 21 elif node.type == token.STRING: 22 if _literal_re.match(node.value): 23 new = node.clone()
|
/system/core/libmemunreachable/ |
LinkedList.h | 28 void insert(LinkedList<T>& node) { 29 assert(node.empty()); 30 node.next_ = this->next_; 31 node.next_->prev_ = &node; 32 this->next_ = &node; 33 node.prev_ = this;
|
/external/freetype/src/cache/ |
ftccache.c | 42 /***** CACHE NODE DEFINITIONS *****/ 47 /* add a new node to the head of the manager's circular MRU list */ 49 ftc_node_mru_link( FTC_Node node, 56 (FTC_MruNode)node ); 61 /* remove a node from the manager's MRU list */ 63 ftc_node_mru_unlink( FTC_Node node, 70 (FTC_MruNode)node ); 77 /* move a node to the head of the manager's MRU list */ 79 ftc_node_mru_up( FTC_Node node, 83 (FTC_MruNode)node ); 117 FTC_Node node, *pnode; local 232 FTC_Node node = *pnode; local 364 FTC_Node *pnode = cache->buckets + i, next, node = *pnode; local 450 FTC_Node node; local 490 FTC_Node node; local 581 FTC_Node node = *pnode; local 603 FTC_Node node; local [all...] |
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/cache/ |
ftccache.c | 42 /***** CACHE NODE DEFINITIONS *****/ 47 /* add a new node to the head of the manager's circular MRU list */ 49 ftc_node_mru_link( FTC_Node node, 56 (FTC_MruNode)node ); 61 /* remove a node from the manager's MRU list */ 63 ftc_node_mru_unlink( FTC_Node node, 70 (FTC_MruNode)node ); 77 /* move a node to the head of the manager's MRU list */ 79 ftc_node_mru_up( FTC_Node node, 83 (FTC_MruNode)node ); 117 FTC_Node node, *pnode; local 232 FTC_Node node = *pnode; local 364 FTC_Node *pnode = cache->buckets + i, next, node = *pnode; local 450 FTC_Node node; local 490 FTC_Node node; local 581 FTC_Node node = *pnode; local 603 FTC_Node node; local [all...] |
/external/v8/test/unittests/compiler/ |
node-unittest.cc | 5 #include "src/compiler/node.h" 34 Node* const node = Node::New(zone(), 1, &kOp0, 0, nullptr, false); local 35 EXPECT_EQ(1U, node->id()); 36 EXPECT_EQ(0, node->UseCount()); 37 EXPECT_TRUE(node->uses().empty()); 38 EXPECT_EQ(0, node->InputCount()); 39 EXPECT_TRUE(node->inputs().empty()); 40 EXPECT_EQ(&kOp0, node->op()) 67 Node* node = Node::New(zone(), 0, &kOp0, 0, nullptr, false); local 89 Node* node = Node::New(zone(), 0, &kOp0, 0, nullptr, false); local 140 Node* node = Node::New(zone(), 42, &kOp0, 0, nullptr, false); local 154 Node* node = Node::New(zone(), 12345, &kOp0, 0, nullptr, true); local 181 Node* node = Node::New(zone(), 12345, &kOp0, 0, nullptr, true); local 249 Node* node = Node::New(zone(), 12345, &kOp0, size, inputs, false); local [all...] |
/device/huawei/angler/camera/QCamera2/util/ |
QCameraCmdThread.cpp | 132 camera_cmd_t *node = (camera_cmd_t *)malloc(sizeof(camera_cmd_t)); local 133 if (NULL == node) { 137 memset(node, 0, sizeof(camera_cmd_t)); 138 node->cmd = cmd; 141 if (!cmd_queue.enqueueWithPriority((void *)node)) { 142 free(node); 143 node = NULL; 146 if (!cmd_queue.enqueue((void *)node)) { 147 free(node); 148 node = NULL 172 camera_cmd_t *node = (camera_cmd_t *)cmd_queue.dequeue(); local [all...] |
/device/lge/bullhead/camera/QCamera2/util/ |
QCameraCmdThread.cpp | 132 camera_cmd_t *node = (camera_cmd_t *)malloc(sizeof(camera_cmd_t)); local 133 if (NULL == node) { 137 memset(node, 0, sizeof(camera_cmd_t)); 138 node->cmd = cmd; 141 if (!cmd_queue.enqueueWithPriority((void *)node)) { 142 free(node); 143 node = NULL; 146 if (!cmd_queue.enqueue((void *)node)) { 147 free(node); 148 node = NULL 172 camera_cmd_t *node = (camera_cmd_t *)cmd_queue.dequeue(); local [all...] |
/hardware/qcom/camera/QCamera2/util/ |
QCameraCmdThread.cpp | 141 camera_cmd_t *node = (camera_cmd_t *)malloc(sizeof(camera_cmd_t)); local 142 if (NULL == node) { 146 memset(node, 0, sizeof(camera_cmd_t)); 147 node->cmd = cmd; 150 if (!cmd_queue.enqueueWithPriority((void *)node)) { 151 free(node); 152 node = NULL; 155 if (!cmd_queue.enqueue((void *)node)) { 156 free(node); 157 node = NULL 181 camera_cmd_t *node = (camera_cmd_t *)cmd_queue.dequeue(); local [all...] |