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

1 2 34 5 6 7 8 91011>>

  /external/tensorflow/tensorflow/core/profiler/internal/advisor/
operation_checker.h 41 const TFGraphNode* node = n.second.get(); variable
42 if (node->name().find("BatchNorm") != node->name().npos) {
45 if (node->op_types().find("FusedBatchNorm") != node->op_types().end()) {
49 const AttrValue* attr = node->op_attrs("data_format");
52 IsPlacedOnAccelerator(node->canonical_device())) {
  /external/tensorflow/tensorflow/core/util/
dump_graph_test.cc 29 Node* node; local
30 TF_CHECK_OK(NodeBuilder("A", "NoOp").Finalize(&graph, &node));
  /external/tensorflow/tensorflow/lite/
optional_debug_tools.cc 102 const TfLiteNode& node = node_and_reg->first; local
105 printf("Node %3zu Operator Custom Name %s\n", node_index,
108 printf("Node %3zu Operator Builtin Code %3d\n", node_index,
112 PrintTfLiteIntVector(node.inputs);
114 PrintTfLiteIntVector(node.outputs);
  /external/tensorflow/tensorflow/lite/tools/optimize/calibration/
node_info_delegate.cc 23 // delegate observer in node info delegate params.
48 TfLiteNode* node = nullptr; local
51 context->GetNodeAndRegistration(context, node_index, &node, &reg));
54 node_ptr_opinfo_map_->insert({node, op_info});
  /external/u-boot/arch/arm/mach-socfpga/
board.c 56 int node[2], count; local
61 node, 2);
65 addr = fdtdec_get_addr(gd->fdt_blob, node[0], "reg");
  /external/u-boot/arch/x86/cpu/braswell/
fsp_configs.c 50 int node; local
57 node = fdt_node_offset_by_compatible(blob, 0, "intel,braswell-fsp");
58 if (node < 0) {
59 debug("%s: Cannot find FSP node\n", __func__);
63 node = fdt_node_offset_by_compatible(blob, node,
65 if (node < 0) {
66 debug("%s: Cannot find FSP memory node\n", __func__);
71 memory_upd->mrc_init_tseg_size = fdtdec_get_int(blob, node,
73 memory_upd->mrc_init_mmio_size = fdtdec_get_int(blob, node,
    [all...]
  /external/u-boot/board/rockchip/evb_rk3328/
evb-rk3328.c 37 int node; local
42 /* find the usb_otg node */
43 node = fdt_node_offset_by_compatible(blob, -1,
46 while (node > 0) {
47 mode = fdt_getprop(blob, node, "dr_mode", NULL);
53 node = fdt_node_offset_by_compatible(blob, node,
61 rk3328_otg_data.regs_otg = fdtdec_get_addr(blob, node, "reg");
  /external/u-boot/common/
boot_fit.c 17 int images, node, fdt_len, fdt_node, fdt_offset; local
20 node = fit_find_config_node(fit);
21 if (node < 0)
22 return node;
26 debug("%s: Cannot find /images node: %d\n", __func__, images);
30 fdt_name = fdt_getprop(fit, node, FIT_FDT_PROP, &fdt_len);
39 debug("%s: Cannot find fdt node '%s': %d\n",
  /external/u-boot/drivers/video/
simplefb.c 17 const int node = dev_of_offset(dev); local
23 node, "reg", 0, &size, false);
42 uc_priv->xsize = fdtdec_get_uint(blob, node, "width", 0);
43 uc_priv->ysize = fdtdec_get_uint(blob, node, "height", 0);
46 format = fdt_getprop(blob, node, "format", NULL);
  /external/u-boot/test/dm/
regmap.c 20 ofnode node; local
50 node = ofnode_path("/syscon@2");
51 ut_assert(ofnode_valid(node));
53 map = syscon_node_to_regmap(node);
  /external/webrtc/webrtc/libjingle/xmpp/
discoitemsquerytask.h 18 // node='blah '/>
28 // node='blah'>
46 std::string node; member in struct:buzz::DiscoItem
53 const Jid& to, const std::string& node);
58 static XmlElement* MakeRequest(const std::string& node);
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
ACsOpenPosition.java 3 package com.google.clearsilver.jsilver.syntax.node;
42 public void setCsOpen(TCsOpen node)
49 if(node != null)
51 if(node.parent() != null)
53 node.parent().removeChild(node);
56 node.parent(this);
59 this._csOpen_ = node;
70 void removeChild(@SuppressWarnings("unused") Node child)
83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild
    [all...]
ADataCommand.java 3 package com.google.clearsilver.jsilver.syntax.node;
42 public void setData(TData node)
49 if(node != null)
51 if(node.parent() != null)
53 node.parent().removeChild(node);
56 node.parent(this);
59 this._data_ = node;
70 void removeChild(@SuppressWarnings("unused") Node child)
83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild
    [all...]
ADecNumberVariable.java 3 package com.google.clearsilver.jsilver.syntax.node;
42 public void setDecNumber(TDecNumber node)
49 if(node != null)
51 if(node.parent() != null)
53 node.parent().removeChild(node);
56 node.parent(this);
59 this._decNumber_ = node;
70 void removeChild(@SuppressWarnings("unused") Node child)
83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild
    [all...]
ADecimalExpression.java 3 package com.google.clearsilver.jsilver.syntax.node;
42 public void setValue(TDecNumber node)
49 if(node != null)
51 if(node.parent() != null)
53 node.parent().removeChild(node);
56 node.parent(this);
59 this._value_ = node;
70 void removeChild(@SuppressWarnings("unused") Node child)
83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild
    [all...]
AExistsExpression.java 3 package com.google.clearsilver.jsilver.syntax.node;
42 public void setExpression(PExpression node)
49 if(node != null)
51 if(node.parent() != null)
53 node.parent().removeChild(node);
56 node.parent(this);
59 this._expression_ = node;
70 void removeChild(@SuppressWarnings("unused") Node child)
83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild
    [all...]
AHexExpression.java 3 package com.google.clearsilver.jsilver.syntax.node;
42 public void setValue(THexNumber node)
49 if(node != null)
51 if(node.parent() != null)
53 node.parent().removeChild(node);
56 node.parent(this);
59 this._value_ = node;
70 void removeChild(@SuppressWarnings("unused") Node child)
83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild
    [all...]
AHexNumberVariable.java 3 package com.google.clearsilver.jsilver.syntax.node;
42 public void setHexNumber(THexNumber node)
49 if(node != null)
51 if(node.parent() != null)
53 node.parent().removeChild(node);
56 node.parent(this);
59 this._hexNumber_ = node;
70 void removeChild(@SuppressWarnings("unused") Node child)
83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild
    [all...]
ANameVariable.java 3 package com.google.clearsilver.jsilver.syntax.node;
42 public void setWord(TWord node)
49 if(node != null)
51 if(node.parent() != null)
53 node.parent().removeChild(node);
56 node.parent(this);
59 this._word_ = node;
70 void removeChild(@SuppressWarnings("unused") Node child)
83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild
    [all...]
ANegativeExpression.java 3 package com.google.clearsilver.jsilver.syntax.node;
42 public void setExpression(PExpression node)
49 if(node != null)
51 if(node.parent() != null)
53 node.parent().removeChild(node);
56 node.parent(this);
59 this._expression_ = node;
70 void removeChild(@SuppressWarnings("unused") Node child)
83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild
    [all...]
ANotExpression.java 3 package com.google.clearsilver.jsilver.syntax.node;
42 public void setExpression(PExpression node)
49 if(node != null)
51 if(node.parent() != null)
53 node.parent().removeChild(node);
56 node.parent(this);
59 this._expression_ = node;
70 void removeChild(@SuppressWarnings("unused") Node child)
83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild
    [all...]
ANumericExpression.java 3 package com.google.clearsilver.jsilver.syntax.node;
42 public void setExpression(PExpression node)
49 if(node != null)
51 if(node.parent() != null)
53 node.parent().removeChild(node);
56 node.parent(this);
59 this._expression_ = node;
70 void removeChild(@SuppressWarnings("unused") Node child)
83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild
    [all...]
AStringExpression.java 3 package com.google.clearsilver.jsilver.syntax.node;
42 public void setValue(TString node)
49 if(node != null)
51 if(node.parent() != null)
53 node.parent().removeChild(node);
56 node.parent(this);
59 this._value_ = node;
70 void removeChild(@SuppressWarnings("unused") Node child)
83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild
    [all...]
AVariableExpression.java 3 package com.google.clearsilver.jsilver.syntax.node;
42 public void setVariable(PVariable node)
49 if(node != null)
51 if(node.parent() != null)
53 node.parent().removeChild(node);
56 node.parent(this);
59 this._variable_ = node;
70 void removeChild(@SuppressWarnings("unused") Node child)
83 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild
    [all...]
  /external/oj-libjdwp/make/src/classes/build/tools/jdwpgen/
Node.java 32 abstract class Node {
35 List<Node> components;
38 Node parent = null;
46 void set(String kind, List<Node> components, int lineno) {
53 for (Iterator<Node> it = components.iterator(); it.hasNext();) {
54 Node node = it.next(); local
55 if (node instanceof CommentNode) {
57 commentList.add(((CommentNode)node).text());
59 node.parent = this
    [all...]

Completed in 1044 milliseconds

1 2 34 5 6 7 8 91011>>