/frameworks/av/media/img_utils/src/ |
Output.cpp | 18 #include <img_utils/Output.h> 23 Output::~Output() {} 24 status_t Output::open() { return OK; } 25 status_t Output::close() { return OK; }
|
/external/tensorflow/tensorflow/core/ops/ |
word2vec_ops.cc | 25 .Output("vocab_word: string") 26 .Output("vocab_freq: int32") 27 .Output("words_per_epoch: int64") 28 .Output("current_epoch: int32") 29 .Output("total_words_processed: int64") 30 .Output("examples: int32") 31 .Output("labels: int32")
|
clustering_ops.cc | 26 .Output("samples: float32") 32 .Output("index: int64") 39 .Output("nearest_center_indices: int64") 40 .Output("nearest_center_distances: float32")
|
tpu_heartbeat_ops.cc | 24 .Output("response: string")
|
/external/tensorflow/tensorflow/cc/framework/ |
gradients.h | 31 const std::vector<Output>& outputs, 32 const std::vector<Output>& inputs, 33 const std::vector<Output>& grad_inputs, 34 std::vector<Output>* grad_outputs); 39 const std::vector<Output>& outputs, 40 const std::vector<Output>& inputs, 41 std::vector<Output>* grad_outputs); 43 /// Returns a sentinel Output that represents 'no gradient' (i.e. no gradient 46 /// (note that gradient flow through an Output can be stopped through the use of 48 Output NoGradient() [all...] |
while_gradients.h | 35 const std::vector<Output>& grad_inputs, 36 std::vector<Output>* grad_outputs);
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/bgen/bgen/ |
bgenObjectDefinition.py | 50 Output("typedef struct %s {", self.objecttype)
52 Output("PyObject_HEAD")
55 Output("} %s;", self.objecttype)
65 Output()
86 Output("%sPyTypeObject %s;", sf, self.typename)
87 Output()
88 Output("#define %s_Check(x) ((x)->ob_type == &%s || PyObject_TypeCheck((x), &%s))",
90 Output()
93 Output("%sPyMethodChain %s_chain = { %s_methods, %s };",
97 Output("%s ob_itself;", self.itselftype) [all...] |
bgenModule.py | 31 Output("#include \"Python.h\"")
32 Output()
35 Output()
36 Output("%s", self.includestuff)
43 Output()
44 Output("%s", self.finalstuff)
46 Output()
47 Output("void init%s(void)", self.name)
49 Output("PyObject *m;")
50 Output("PyObject *d;") [all...] |
/external/python/cpython2/Mac/Modules/res/ |
ressupport.py | 13 Output("OSErr _err = ResError();") 14 Output("if (_err != noErr) return PyMac_Error(_err);") 140 Output("if (itself == NULL) return PyMac_Error(resNotFound);") 144 Output("if (!%s_Check(v))", self.prefix) 146 Output("PyObject *tmp;") 147 Output('if ( (tmp=PyObject_CallMethod(v, "as_Resource", "")) )') 149 Output("*p_itself = ((ResourceObject *)tmp)->ob_itself;") 150 Output("Py_DECREF(tmp);") 151 Output("return 1;") 153 Output("PyErr_Clear();" [all...] |
/external/python/cpython2/Tools/bgen/bgen/ |
bgenObjectDefinition.py | 50 Output("typedef struct %s {", self.objecttype) 52 Output("PyObject_HEAD") 55 Output("} %s;", self.objecttype) 65 Output() 86 Output("%sPyTypeObject %s;", sf, self.typename) 87 Output() 88 Output("#define %s_Check(x) ((x)->ob_type == &%s || PyObject_TypeCheck((x), &%s))", 90 Output() 93 Output("%sPyMethodChain %s_chain = { %s_methods, %s };", 97 Output("%s ob_itself;", self.itselftype [all...] |
bgenModule.py | 31 Output("#include \"Python.h\"") 32 Output() 35 Output() 36 Output("%s", self.includestuff) 43 Output() 44 Output("%s", self.finalstuff) 46 Output() 47 Output("void init%s(void)", self.name) 49 Output("PyObject *m;") 50 Output("PyObject *d;" [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
Output.java | 13 * Simple struct-like class for output parameters. 16 public class Output<T> { 31 * Constructs an empty <code>Output</code> 33 public Output() { 38 * Constructs an <code>Output</code> with the given value. 41 public Output(T value) {
|
/external/tensorflow/tensorflow/contrib/memory_stats/ops/ |
memory_stats_ops.cc | 21 .Output("out: int64") 25 .Output("out: int64") 29 .Output("out: int64")
|
/external/tensorflow/tensorflow/contrib/nearest_neighbor/ops/ |
nearest_neighbor_ops.cc | 26 .Output("probes: int32") 27 .Output("table_ids: int32") 45 probes: the output matrix of probes. Size `batch_size` times `num_probes`. 46 table_ids: the output matrix of tables ids. Size `batch_size` times `num_probes`.
|
/external/python/cpython2/Mac/Modules/file/ |
filesupport.py | 58 Output("%s %s__buf__;", self.typeName, name) 59 Output("%s *%s = &%s__buf__;", self.typeName, name, name) 67 Output("PyObject *%s__object = NULL;", name) 68 Output("FSCatalogInfoBitmap %s__bitmap = 0;", name) 69 Output("FSCatalogInfo %s;", name) 78 Output("if (!convert_FSCatalogInfo(%s__object, %s__bitmap, &%s)) return NULL;", name, name, name) 93 Output("if ((%s__object = new_FSCatalogInfo(%s__bitmap, &%s)) == NULL) return NULL;", name, name) 499 Output("if (itself == NULL) { Py_INCREF(Py_None); return Py_None; }") 502 Output("PyObject *self;"); 503 Output() [all...] |
/external/tensorflow/tensorflow/contrib/bigtable/ops/ |
bigtable_test_ops.cc | 24 .Output("client: resource")
|
/external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/ |
Operand.java | 28 * // The output "y" of the "unique" operation can be used as an operand to the "cast" operation 29 * Output<Integer> y = ops.array().unique(...).y(); 45 * @see OperationBuilder#addInput(Output) 47 Output<T> asOutput();
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
OutputBuffer.h | 1 //=== OutputBuffer.h - Output Buffer ----------------------------*- C++ -*-===// 10 // Methods to output values to a data buffer. 24 /// Output buffer. 25 std::vector<unsigned char> &Output; 33 : Output(Out), is64Bit(is64bit), isLittleEndian(le) {} 35 // align - Emit padding into the file until the current output position is 40 size_t Size = Output.size(); 45 Output.resize(Size + Pad); 50 // Out Functions - Output the specified value to the data buffer. 53 Output.push_back(X) [all...] |
/external/swiftshader/third_party/LLVM/test/ |
Makefile.tests | 22 # output from gccas and gccld.
31 .PRECIOUS: Output/%.bc Output/%.ll
32 .PRECIOUS: Output/%.tbc Output/%.tll
33 .PRECIOUS: Output/.dir
34 .PRECIOUS: Output/%.llvm.bc
35 .PRECIOUS: Output/%.llvm
48 $(RM) -rf Output/
50 # Compile from X.c to Output/X.ll [all...] |
/external/tensorflow/tensorflow/cc/ops/ |
while_loop.h | 25 // Function that takes cond graph inputs and returns cond graph boolean output. 26 // 'output' need not be set if an error is returned. 27 typedef std::function<Status(const Scope&, const std::vector<Output>& inputs, 28 Output* output)> 33 typedef std::function<Status(const Scope&, const std::vector<Output>& inputs, 34 std::vector<Output>* outputs)> 43 // current loop variables as inputs and returns a scalar boolean Output 49 // * outputs: output param that returns final loop variable outputs in non-error 58 // * cond_output: if non-null, the output of the predicate is returned. Thi [all...] |
/external/tensorflow/tensorflow/cc/gradients/ |
grad_testutil.h | 29 const std::vector<Output>& grad_inputs, 30 std::vector<Output>* grad_outputs);
|
/external/tensorflow/tensorflow/contrib/hadoop/ops/ |
dataset_ops.cc | 24 .Output("handle: variant")
|
/external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/op/ |
Operands.java | 22 import org.tensorflow.Output; 28 * Converts a list of {@link Operand} into an array of {@link Output}. 31 * to build an operation, see {@link OperationBuilder#addInputList(Output[])}. 36 public static Output<?>[] asOutputs(Iterable<? extends Operand<?>> inputs) { 37 List<Output<?>> outputList = new ArrayList<>(); 41 return outputList.toArray(new Output<?>[outputList.size()]);
|
/external/python/cpython2/Mac/Modules/cf/ |
cfsupport.py | 255 Output('if (itself == NULL)') 257 Output('PyErr_SetString(PyExc_RuntimeError, "cannot wrap NULL");') 258 Output('return NULL;') 262 Output("void (*ob_freeit)(CFTypeRef ptr);") 265 ## Output("it->ob_freeit = NULL;") 266 Output("it->ob_freeit = CFRelease;") 273 Output("if (self->ob_freeit && self->ob_itself)") 275 Output("self->ob_freeit((CFTypeRef)self->ob_itself);") 276 Output("self->ob_itself = NULL;") 280 Output() [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
Output.java | 12 * Simple struct-like class for output parameters. 16 public class Output<T> { 33 * Constructs an empty <code>Output</code> 36 public Output() { 41 * Constructs an <code>Output</code> with the given value. 45 public Output(T value) {
|