HomeSort by relevance Sort by last modified time
    Searched refs:node (Results 76 - 100 of 5153) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/ndk/current/platforms/android-19/arch-mips/usr/include/asm-generic/
topology.h 19 #define parent_node(node) (0)
22 #define node_to_cpumask(node) (cpu_online_map)
25 #define node_to_first_cpu(node) (0)
28 #define pcibus_to_node(node) (-1)
  /prebuilts/ndk/current/platforms/android-19/arch-x86/usr/include/asm-generic/
topology.h 19 #define parent_node(node) (0)
22 #define node_to_cpumask(node) (cpu_online_map)
25 #define node_to_first_cpu(node) (0)
28 #define pcibus_to_node(node) (-1)
  /prebuilts/ndk/current/platforms/android-3/arch-arm/usr/include/asm-generic/
topology.h 19 #define parent_node(node) (0)
22 #define node_to_cpumask(node) (cpu_online_map)
25 #define node_to_first_cpu(node) (0)
28 #define pcibus_to_node(node) (-1)
  /prebuilts/ndk/current/platforms/android-4/arch-arm/usr/include/asm-generic/
topology.h 19 #define parent_node(node) (0)
22 #define node_to_cpumask(node) (cpu_online_map)
25 #define node_to_first_cpu(node) (0)
28 #define pcibus_to_node(node) (-1)
  /prebuilts/ndk/current/platforms/android-5/arch-arm/usr/include/asm-generic/
topology.h 19 #define parent_node(node) (0)
22 #define node_to_cpumask(node) (cpu_online_map)
25 #define node_to_first_cpu(node) (0)
28 #define pcibus_to_node(node) (-1)
  /prebuilts/ndk/current/platforms/android-8/arch-arm/usr/include/asm-generic/
topology.h 19 #define parent_node(node) (0)
22 #define node_to_cpumask(node) (cpu_online_map)
25 #define node_to_first_cpu(node) (0)
28 #define pcibus_to_node(node) (-1)
  /prebuilts/ndk/current/platforms/android-9/arch-arm/usr/include/asm-generic/
topology.h 19 #define parent_node(node) (0)
22 #define node_to_cpumask(node) (cpu_online_map)
25 #define node_to_first_cpu(node) (0)
28 #define pcibus_to_node(node) (-1)
  /prebuilts/ndk/current/platforms/android-9/arch-mips/usr/include/asm-generic/
topology.h 19 #define parent_node(node) (0)
22 #define node_to_cpumask(node) (cpu_online_map)
25 #define node_to_first_cpu(node) (0)
28 #define pcibus_to_node(node) (-1)
  /prebuilts/ndk/current/platforms/android-9/arch-x86/usr/include/asm-generic/
topology.h 19 #define parent_node(node) (0)
22 #define node_to_cpumask(node) (cpu_online_map)
25 #define node_to_first_cpu(node) (0)
28 #define pcibus_to_node(node) (-1)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_long.py 16 def transform(self, node, results):
17 if is_probably_builtin(node):
18 node.value = u"int"
19 node.changed()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_long.py 16 def transform(self, node, results):
17 if is_probably_builtin(node):
18 node.value = u"int"
19 node.changed()
  /prebuilts/gdb/darwin-x86/lib/python2.7/
ast.py 34 Parse the source into an AST node.
42 Safely evaluate an expression node or a string containing a Python
43 expression. The string or node provided may only consist of the following
52 def _convert(node):
53 if isinstance(node, Str):
54 return node.s
55 elif isinstance(node, Num):
56 return node.n
57 elif isinstance(node, Tuple):
58 return tuple(map(_convert, node.elts)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
ast.py 34 Parse the source into an AST node.
42 Safely evaluate an expression node or a string containing a Python
43 expression. The string or node provided may only consist of the following
52 def _convert(node):
53 if isinstance(node, Str):
54 return node.s
55 elif isinstance(node, Num):
56 return node.n
57 elif isinstance(node, Tuple):
58 return tuple(map(_convert, node.elts)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ast.py 34 Parse the source into an AST node.
42 Safely evaluate an expression node or a string containing a Python
43 expression. The string or node provided may only consist of the following
52 def _convert(node):
53 if isinstance(node, Str):
54 return node.s
55 elif isinstance(node, Num):
56 return node.n
57 elif isinstance(node, Tuple):
58 return tuple(map(_convert, node.elts)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ast.py 34 Parse the source into an AST node.
42 Safely evaluate an expression node or a string containing a Python
43 expression. The string or node provided may only consist of the following
52 def _convert(node):
53 if isinstance(node, Str):
54 return node.s
55 elif isinstance(node, Num):
56 return node.n
57 elif isinstance(node, Tuple):
58 return tuple(map(_convert, node.elts)
    [all...]
  /libcore/luni/src/main/java/javax/xml/transform/dom/
DOMSource.java 23 import org.w3c.dom.Node;
41 * <p><code>Node</code> to serve as DOM source.</p>
43 private Node node; field in class:DOMSource
60 * no DOM source is set using {@link #setNode(Node node)} , then the
70 * Create a new input source with a DOM node. The operation
71 * will be applied to the subtree rooted at this node. In XSLT,
74 * from the root node also.
76 * @param n The DOM node that will contain the Source tree
    [all...]
  /external/v8/src/compiler/
js-intrinsic-lowering.h 38 Reduction Reduce(Node* node) final;
41 Reduction ReduceConstructDouble(Node* node);
42 Reduction ReduceCreateIterResultObject(Node* node);
43 Reduction ReduceDeoptimizeNow(Node* node);
44 Reduction ReduceDoubleHi(Node* node);
    [all...]
graph-reducer.cc 10 #include "src/compiler/node.h"
11 #include "src/compiler/node-properties.h"
29 GraphReducer::GraphReducer(Zone* zone, Graph* graph, Node* dead)
46 void GraphReducer::ReduceNode(Node* node) {
49 Push(node);
52 // Process the node on the top of the stack, potentially pushing more or
53 // popping the node off the stack.
57 Node* const node = revisit_.top() local
111 Node* node = entry.node; local
241 Node* node = stack_.top().node; local
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/
test_pycompat_pkg.py 24 node = mf.findNode('pkg')
25 self.assertIsInstance(node, modulegraph.Package)
27 node = mf.findNode('pkg.api')
28 self.assertIsInstance(node, modulegraph.SourceModule)
31 node = mf.findNode('pkg.api2')
32 self.assertIsInstance(node, modulegraph.SourceModule)
34 node = mf.findNode('pkg.api3')
35 self.assertIsInstance(node, modulegraph.InvalidSourceModule)
37 node = mf.findNode('http.client')
38 self.assertIs(node, None
    [all...]
  /external/vboot_reference/firmware/stub/
vboot_api_stub_sf.c 46 struct alloc_node *node; local
54 node = malloc(sizeof(*node));
55 if (!node)
57 node->next = alloc_head;
58 node->ptr = p;
59 node->size = size;
60 node->bt_levels = backtrace(node->bt_buffer, MAX_STACK_LEVELS);
61 alloc_head = node;
107 struct alloc_node *node, *next; local
    [all...]
  /external/toybox/toys/posix/
du.c 48 struct dirtree *node; member in struct:node_size
53 static void print(long long size, struct dirtree *node)
70 if (node) name = dirtree_path(node, NULL);
72 if (node) free(name);
106 // dirtree callback, comput/display size of node
107 static int do_du(struct dirtree *node)
109 if (!node->parent) TT.st_dev = node->st.st_dev;
110 else if (!dirtree_notdotdot(node)) return 0
    [all...]
  /external/v8/src/compiler/ppc/
instruction-selector-ppc.cc 7 #include "src/compiler/node-matchers.h"
8 #include "src/compiler/node-properties.h"
32 InstructionOperand UseOperand(Node* node, ImmediateMode mode) {
33 if (CanBeImmediate(node, mode)) {
34 return UseImmediate(node);
36 return UseRegister(node);
39 bool CanBeImmediate(Node* node, ImmediateMode mode) {
41 if (node->opcode() == IrOpcode::kInt32Constant
1437 Node* const node = value->InputAt(0); local
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
InlineRewriter.java 22 import com.google.clearsilver.jsilver.syntax.node.ADataCommand;
23 import com.google.clearsilver.jsilver.syntax.node.AInlineCommand;
24 import com.google.clearsilver.jsilver.syntax.node.ANoopCommand;
25 import com.google.clearsilver.jsilver.syntax.node.PCommand;
26 import com.google.clearsilver.jsilver.syntax.node.TData;
64 public void caseADataCommand(ADataCommand node) {
65 TData data = node.getData();
67 node.replaceBy(new ANoopCommand());
77 public void caseAInlineCommand(AInlineCommand node) {
79 PCommand command = node.getCommand()
    [all...]
  /external/v8/src/compiler/arm64/
instruction-selector-arm64.cc 6 #include "src/compiler/node-matchers.h"
7 #include "src/compiler/node-properties.h"
33 InstructionOperand UseOperand(Node* node, ImmediateMode mode) {
34 if (CanBeImmediate(node, mode)) {
35 return UseImmediate(node);
37 return UseRegister(node);
40 // Use the zero register if the node has the immediate value zero, otherwise
42 InstructionOperand UseRegisterOrImmediateZero(Node* node) {
1838 Node* const node = value->InputAt(0); local
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/transient/
wpd_node_unittest.cc 32 WPDNode node(kDataLength, kCoefficients, kCoefficientsLength);
33 EXPECT_EQ(0, node.set_data(kParentData, kDataLength));
34 EXPECT_EQ(0, memcmp(node.data(),
36 kDataLength * sizeof(node.data()[0])));
41 WPDNode node(kDataLength, &kIndentyCoefficient, 1);
42 EXPECT_EQ(0, node.Update(kParentData, kParentDataLength));
44 EXPECT_FLOAT_EQ(kParentData[i * 2 + 1], node.data()[i]);
49 WPDNode node(kDataLength, kCoefficients, kCoefficientsLength);
50 EXPECT_EQ(0, node.Update(kParentData, kParentDataLength));
51 EXPECT_NEAR(0.1f, node.data()[0], kTolerance)
    [all...]

Completed in 1921 milliseconds

1 2 34 5 6 7 8 91011>>