HomeSort by relevance Sort by last modified time
    Searched defs:type (Results 126 - 150 of 10128) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
jit_api.h 59 SWR_SHADER_TYPE type; member in struct:JIT_COMPILE_INPUT
  /external/mesa3d/src/mesa/state_tracker/
st_cb_queryobj.h 45 unsigned type; /**< PIPE_QUERY_x */ member in struct:st_query_object
  /external/tensorflow/tensorflow/contrib/kfac/examples/
convnet_mnist_main.py 48 type=str, variable
53 type=int, variable
mlp_mnist_main.py 51 type=str, variable
56 type=int, variable
  /external/tensorflow/tensorflow/contrib/receptive_field/python/util/examples/
compute_rf.py 81 parser.register('type', 'bool', lambda v: v.lower() == 'true')
83 '--graph_path', type=str, default='', help='Graph path (pbtxt format).')
86 type=str, variable
90 '--input_node', type=str, default='', help='Name of input node.')
92 '--output_node', type=str, default='', help='Name of output node.')
write_inception_resnet_v2_graph.py 49 parser.register('type', 'bool', lambda v: v.lower() == 'true')
52 type=str, variable
57 type=str, variable
  /external/tensorflow/tensorflow/examples/speech_commands/
freeze.py 134 type=int, variable
139 type=int, variable
144 type=int, variable
149 type=float, variable
154 type=float, variable
159 type=int, variable
164 type=str, variable
169 type=str, variable
174 type=str, variable
178 '--output_file', type=str, help='Where to save the frozen graph.'
    [all...]
generate_streaming_test_wav.py 174 type=str, variable
181 type=str, variable
188 type=str, variable
195 type=float, variable
202 type=float, variable
209 type=float, variable
216 type=int, variable
221 type=int, variable
226 type=int, variable
231 type=int variable
236 type=float, variable
241 type=float, variable
246 type=int, variable
251 type=str, variable
256 type=str, variable
261 type=str, variable
266 type=int, variable
271 type=int, variable
276 type=int, variable
    [all...]
train.py 289 type=str, variable
296 type=str, variable
303 type=float, variable
310 type=float, variable
317 type=float, variable
324 type=float, variable
331 type=float, variable
338 type=int, variable
343 type=int, variable
348 type=int variable
353 type=int, variable
358 type=float, variable
363 type=float, variable
368 type=int, variable
373 type=str, variable
378 type=int, variable
383 type=str, variable
388 type=int, variable
393 type=str, variable
398 type=str, variable
403 type=str, variable
408 type=int, variable
413 type=str, variable
418 type=str, variable
423 type=bool, variable
    [all...]
  /external/tensorflow/tensorflow/examples/tutorials/mnist/
mnist_softmax.py 80 type=str, variable
mnist_softmax_xla.py 100 type=str, variable
104 '--xla', type=bool, default=True, help='Turn xla via JIT on')
  /external/tensorflow/tensorflow/python/debug/cli/
offline_analyzer.py 53 parser.register("type", "bool", lambda v: v.lower() == "true")
55 "--dump_dir", type=str, default="", help="tfdbg dump directory to load")
58 type="bool", variable
65 type=str, variable
67 help="Command-line user interface type (curses | readline)")
72 type="bool", variable
  /external/tensorflow/tensorflow/python/debug/examples/
debug_errors.py 53 raise ValueError("Unrecognized error type: " + FLAGS.error)
58 parser.register("type", "bool", lambda v: v.lower() == "true")
61 type=str, variable
64 Type of the error to generate (shape_mismatch | uninitialized_variable |
69 type=str, variable
71 help="Command-line user interface type (curses | readline)")
74 type="bool", variable
  /external/tensorflow/tensorflow/python/grappler/
cost_analyzer_tool.py 80 type=str, variable
85 type=str, variable
90 type=str, variable
97 type=str, variable
108 "aggregated on a per op type basis, per_node_report adds results "
  /external/tensorflow/tensorflow/python/tools/
print_selective_registration_header.py 55 parser.register('type', 'bool', lambda v: v.lower() == 'true')
58 type=str, variable
64 type=str, variable
69 type=str, variable
  /external/toybox/toys/lsb/
mknod.c 13 usage: mknod [-m MODE] NAME TYPE [MAJOR MINOR]
15 Create a special file NAME with a given type. TYPE is b for block device,
41 int major=0, minor=0, type; local
44 type = stridx("pcub", *toys.optargs[1]);
45 if (type == -1) perror_exit("bad type '%c'", *toys.optargs[1]);
46 if (type) {
56 if (mknod(*toys.optargs, mode|modes[type], dev_makedev(major, minor)))
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
GenerateProgramPort.java 29 Class type(); method in interface:GenerateProgramPort
  /frameworks/base/tools/aapt2/link/
PrivateAttributeMover_test.cpp 44 ResourceTableType* type = package->FindType(ResourceType::kAttr); local
45 ASSERT_NE(type, nullptr);
46 ASSERT_EQ(type->entries.size(), 2u);
47 EXPECT_NE(type->FindEntry("publicA"), nullptr);
48 EXPECT_NE(type->FindEntry("publicB"), nullptr);
50 type = package->FindType(ResourceType::kAttrPrivate);
51 ASSERT_NE(type, nullptr);
52 ASSERT_EQ(type->entries.size(), 2u);
53 EXPECT_NE(type->FindEntry("privateA"), nullptr);
54 EXPECT_NE(type->FindEntry("privateB"), nullptr)
71 ResourceTableType* type = package->FindType(ResourceType::kAttr); local
    [all...]
  /frameworks/data-binding/baseLibrary/src/main/java/android/databinding/
BindingMethod.java 32 Class type(); method in interface:BindingMethod
  /frameworks/opt/net/voip/src/jni/rtp/
AudioCodec.cpp 41 AudioCodecType *type = gAudioCodecTypes; local
42 while (type->name != NULL) {
43 if (strcasecmp(codecName, type->name) == 0) {
44 AudioCodec *codec = type->create();
45 codec->name = type->name;
48 ++type;
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
TypeTest.java 21 import java.lang.reflect.Type;
29 Type type = new Type() { local
35 assertEquals("toString", type.getTypeName());
  /libcore/ojluni/src/main/java/javax/net/ssl/
SNIMatcher.java 39 * a particular type, such as host names.
53 // the type of the server name that this matcher performs on
54 private final int type; field in class:SNIMatcher
57 * Creates an {@code SNIMatcher} using the specified server name type.
59 * @param type
60 * the type of the server name that this matcher performs on
62 * @throws IllegalArgumentException if {@code type} is not in the range
65 protected SNIMatcher(int type) {
66 if (type < 0) {
68 "Server name type cannot be less than zero")
    [all...]
  /libcore/ojluni/src/main/java/sun/security/jca/
ServiceId.java 29 * Simple class encapsulating a service type and algorithm for lookup.
37 public final String type; field in class:ServiceId
40 public ServiceId(String type, String algorithm) {
41 this.type = type;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/extensions/
xtestext1.h 67 int type; /* always XTestInputActionType */ member in struct:__anon62022
79 int type; /* always XTestFakeAckType */ member in struct:__anon62023
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/
priority_queue_base_dispatch.hpp 71 /// Dispatched type.
72 typedef pairing_heap<_VTp, Cmp_Fn, _Alloc> type; typedef in struct:__gnu_pbds::detail::container_base_dispatch
80 /// Dispatched type.
81 typedef binomial_heap<_VTp, Cmp_Fn, _Alloc> type; typedef in struct:__gnu_pbds::detail::container_base_dispatch
89 /// Dispatched type.
90 typedef rc_binomial_heap<_VTp, Cmp_Fn, _Alloc> type; typedef in struct:__gnu_pbds::detail::container_base_dispatch
98 /// Dispatched type.
99 typedef binary_heap<_VTp, Cmp_Fn, _Alloc> type; typedef in struct:__gnu_pbds::detail::container_base_dispatch
107 /// Dispatched type.
108 typedef thin_heap<_VTp, Cmp_Fn, _Alloc> type; typedef in struct:__gnu_pbds::detail::container_base_dispatch
    [all...]

Completed in 648 milliseconds

1 2 3 4 56 7 8 91011>>