Home
last modified time | relevance | path

Searched refs:in_ (Results 1 – 25 of 40) sorted by relevance

12

/external/tensorflow/tensorflow/core/graph/
Dgraph_partition_test.cc199 : in_(Scope::NewRootScope().ExitOnError()), in GraphPartitionTest()
206 TF_EXPECT_OK(in_.ToGraphDef(&in_graph_def_)); in ToGraphDef()
233 Scope in_; member in tensorflow::__anon8c703d150111::GraphPartitionTest
241 auto a1 = FloatInput(in_.WithOpName("A1")); in TEST_F()
242 Combine(in_.WithOpName("A2"), a1, a1); in TEST_F()
253 auto a1 = FloatInput(in_.WithOpName("A1")); in TEST_F()
254 auto b1 = FloatInput(in_.WithOpName("B1")); in TEST_F()
255 Combine(in_.WithOpName("B2"), a1, b1); in TEST_F()
274 auto a1 = FloatInput(in_.WithOpName("A1")); in TEST_F()
275 auto b1 = FloatInput(in_.WithOpName("B1")); in TEST_F()
[all …]
/external/v8/src/
Ddateparser-inl.h188 int pre_pos = in_->position(); in Scan()
189 if (in_->IsEnd()) return DateToken::EndOfInput(); in Scan()
190 if (in_->IsAsciiDigit()) { in Scan()
191 int n = in_->ReadUnsignedNumeral(); in Scan()
192 int length = in_->position() - pre_pos; in Scan()
195 if (in_->Skip(':')) return DateToken::Symbol(':'); in Scan()
196 if (in_->Skip('-')) return DateToken::Symbol('-'); in Scan()
197 if (in_->Skip('+')) return DateToken::Symbol('+'); in Scan()
198 if (in_->Skip('.')) return DateToken::Symbol('.'); in Scan()
199 if (in_->Skip(')')) return DateToken::Symbol(')'); in Scan()
[all …]
/external/libchrome/mojo/public/tools/bindings/generators/cpp_templates/
Dunion_serialization_declaration.tmpl39 in_{{name}} = CallWithContext(Traits::{{name}}, input,
46 in_{{name}}, buffer, &value_writer, false, context);
51 in_{{name}}, buffer, &value_writer, &{{name}}_validate_params,
55 in_{{name}}, buffer, &value_writer, context);
68 in_{{name}}, &result->data.f_{{name}}, context);
82 in_{{name}}, &result->data.f_{{name}});
85 result->data.f_{{name}} = in_{{name}};
Dinterface_definition.tmpl163 {{interface_macros.declare_request_params("in_", method, use_once_callback)}}) {
178 , std::move(in_{{param.name}})
184 message_name, "in_%s", params_struct, params_description, "kFlags",
270 {{interface_macros.declare_params("in_", method.response_parameters)}});
324 {{interface_macros.declare_params("in_", method.response_parameters)}}) {
329 , std::move(in_{{param.name}})
334 message_name, "in_%s", response_params_struct,
/external/ply/ply/test/
Dtestcpp.py15 def preprocessing(in_, out_queue): argument
20 p.parse(in_)
29 def __test_preprocessing(self, in_, expected, time_limit = 1.0): argument
35 args = (in_, out_queue)
/external/tensorflow/tensorflow/python/autograph/pyct/static_analysis/
Dliveness.py53 prev_live_in = self.in_[node]
66 live_out |= self.in_[n]
79 self.in_[node] = live_in
126 child_in_state = analyzer.in_[subgraph.entry]
171 frozenset(self.current_analyzer.in_[cfg_node]))
186 stmt_live_out.update(self.current_analyzer.in_[s])
192 stmt_live_in = frozenset(self.current_analyzer.in_[cfg_node])
Dreaching_definitions.py162 self.in_[node] = defs_in
245 tuple(analyzer.in_[cfg_node].value.get(qn, ())))
/external/tensorflow/tensorflow/core/kernels/
Dconv_ops_gpu.h95 in_(CheckSpatialArraySize(in)), in ConvParameters()
128 "(", str_util::Join(in_, ", "), "), ", in ToString()
163 return std::make_tuple(batch_, in_depths_, in_, data_format_, out_depths_, in get_data_as_tuple()
181 std::max(in_depths_, out_depths_) * in_[0] * in_[1] * in ShouldIncludeWinogradNonfusedAlgoPreCudnn7()
194 SpatialArray in_; variable
/external/python/cpython2/Lib/lib-tk/test/test_tkinter/
Dtest_geometry_managers.py106 a.pack_configure(in_=pack)
108 a.pack_configure(in_=c)
113 a.pack_configure(in_=a)
115 a.pack_configure(in_='.foo')
232 b.pack_configure(side='right', in_=a, anchor='s', expand=True, fill='x',
297 f2.place_configure(in_=f2)
301 f2.place_configure(in_='spam')
302 f2.place_configure(in_=f)
307 f2.place_configure(in_=f)
320 f2.place_configure(in_=f, x='spam')
[all …]
/external/python/cpython3/Lib/tkinter/test/test_tkinter/
Dtest_geometry_managers.py106 a.pack_configure(in_=pack)
108 a.pack_configure(in_=c)
113 a.pack_configure(in_=a)
115 a.pack_configure(in_='.foo')
232 b.pack_configure(side='right', in_=a, anchor='s', expand=True, fill='x',
297 f2.place_configure(in_=f2)
301 f2.place_configure(in_='spam')
302 f2.place_configure(in_=f)
307 f2.place_configure(in_=f)
320 f2.place_configure(in_=f, x='spam')
[all …]
/external/u-boot/arch/arm/mach-rmobile/include/mach/
Drcar-mstp.h13 out_##type((saddr), in_##type(addr) | (set))
15 out_##type((saddr), in_##type(addr) & ~(clear))
17 out_##type((addr), (in_##type(addr) | (set)) & ~(clear))
/external/u-boot/arch/sandbox/include/asm/
Dio.h84 out_##type((addr), in_##type(addr) & ~(clear))
87 out_##type((addr), in_##type(addr) | (set))
90 out_##type((addr), (in_##type(addr) & ~(clear)) | (set))
140 out_##type((addr), in_##type(addr) & ~(clear))
143 out_##type((addr), in_##type(addr) | (set))
146 out_##type((addr), (in_##type(addr) & ~(clear)) | (set))
/external/python/cpython2/Demo/tkinter/ttk/
Dttkcalendar.py100 hframe.pack(in_=self, side='top', pady=4, anchor='center')
101 lbtn.grid(in_=hframe)
102 self._header.grid(in_=hframe, column=1, row=0, padx=12)
103 rbtn.grid(in_=hframe, column=2, row=0)
104 self._calendar.pack(in_=self, expand=1, fill='both', side='bottom')
157 canvas.place(in_=self._calendar, x=x, y=y)
Dtreeview_multicolumn.py67 self.tree.grid(column=0, row=0, sticky='nsew', in_=container)
68 vsb.grid(column=1, row=0, sticky='ns', in_=container)
69 hsb.grid(column=0, row=1, sticky='ew', in_=container)
/external/bcc/src/cc/frontends/b/
Dparser.h34 : root_node_(NULL), scopes_(new Scopes), in_(infile), lexer(&in_), parser(lexer, *this) { in Parser()
62 std::ifstream in_;
/external/u-boot/arch/nios2/include/asm/
Dio.h140 out_##type((addr), in_##type(addr) & ~(clear))
143 out_##type((addr), in_##type(addr) | (set))
146 out_##type((addr), (in_##type(addr) & ~(clear)) | (set))
/external/u-boot/arch/arc/include/asm/
Dio.h252 out_##type((addr), in_##type(addr) & ~(clear))
255 out_##type((addr), in_##type(addr) | (set))
258 out_##type((addr), (in_##type(addr) & ~(clear)) | (set))
/external/u-boot/arch/m68k/include/asm/
Dio.h219 out_##type((addr), in_##type(addr) & ~(clear))
222 out_##type((addr), in_##type(addr) | (set))
225 out_##type((addr), (in_##type(addr) & ~(clear)) | (set))
/external/u-boot/arch/x86/include/asm/
Dio.h103 out_##type((addr), in_##type(addr) & ~(clear))
106 out_##type((addr), in_##type(addr) | (set))
109 out_##type((addr), (in_##type(addr) & ~(clear)) | (set))
/external/u-boot/arch/sh/include/asm/
Dio.h206 out_##type((addr), in_##type(addr) & ~(clear))
209 out_##type((addr), in_##type(addr) | (set))
212 out_##type((addr), (in_##type(addr) & ~(clear)) | (set))
/external/u-boot/arch/powerpc/include/asm/
Dio.h257 out_##type((addr), in_##type(addr) & ~(clear))
260 out_##type((addr), in_##type(addr) | (set))
263 out_##type((addr), (in_##type(addr) & ~(clear)) | (set))
/external/v8/tools/gcmole/
Dgcmole.cc947 : in_(in), in Block()
959 Environment old_in = in_; in MergeIn()
960 in_ = Environment::Merge(in_, env); in MergeIn()
961 changed_ = !old_in.Equal(in_); in MergeIn()
973 return in_; in in()
1009 Environment in_; member in __anon85d096280111::FunctionAnalyzer::Block
/external/python/cpython2/Lib/idlelib/
Dtabbedpages.py253 self.mask.place(in_=self,
259 self.mskl.place(in_=self,
275 self.mskr.place(in_=self,
/external/v8/src/regexp/
Dregexp-parser.h320 FlatStringReader* in() { return in_; } in in()
329 FlatStringReader* in_; variable
/external/u-boot/arch/nds32/include/asm/
Dio.h184 out_##type((addr), in_##type(addr) & ~(clear))
187 out_##type((addr), in_##type(addr) | (set))
190 out_##type((addr), (in_##type(addr) & ~(clear)) | (set))

12