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

1 2 34 5 6 7

  /frameworks/base/rs/java/android/renderscript/
ProgramFragmentFixedFunction.java 57 tmp[idx++] = ProgramParam.INPUT.mID;
Program.java 58 INPUT (0),
85 * @return number of constant input types
95 * @param slot index of the constant input type to return
96 * @return constant input type
115 * @param slot index of the texture input
116 * @return texture input type
126 * Returns the name of the texture input at a given slot. e.g.
128 * @param slot index of the texture input
129 * @return texture input name
312 throw new RSIllegalArgumentException("Max input count exceeded.")
    [all...]
ProgramVertexFixedFunction.java 60 throw new RSIllegalArgumentException("Max input count exceeded.");
83 tmp[idx++] = ProgramParam.INPUT.mID;
  /external/libvpx/libvpx/
libs.doxy_template 203 # include (a tag file for) the STL sources as input, then you should
421 # popen()) the command <command> <input-file>, where <command> is the value of
422 # the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file
480 # configuration options related to the input files
483 # The INPUT tag can be used to specify the files and/or directories that contain
488 INPUT =
492 # input encoding. Doxygen uses libiconv (or the iconv built into libc) for the transcoding.
497 # If the value of the INPUT tag contains directories, you can use the
507 # should be searched for input files as well. Possible values are YES and NO
    [all...]
  /external/tensorflow/tensorflow/core/kernels/hexagon/
hexagon_ops_definitions.cc 30 INPUT,
303 EmplaceOpType("INPUT", {}, SupportedOpType::INPUT, &op_map);
  /external/walt/docs/
ChromeOS.md 39 - `iptables -A INPUT -p tcp --dport 50007 -j ACCEPT`
Development.md 43 1. `iptables -A INPUT -p tcp --dport 50007 -j ACCEPT`
  /hardware/libhardware/modules/sensors/dynamic_sensor/HidUtils/
HidParser.cpp 89 case INPUT:
198 case INPUT:
274 return "INPUT";
HidReport.cpp 47 case INPUT:
48 return "INPUT";
109 // input is treated similarly as variables.
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
ASTParser.stg 45 retval.tree = (<ASTLabelType>)(ADAPTOR->errorNode(ADAPTOR, INPUT, retval.start, LT(-1), EXCEPTION));
AST.stg 277 INPUT->replaceChildren(INPUT, ADAPTOR->getParent(ADAPTOR, retval.start),
  /external/elfutils/src/
ldlex.l 136 INPUT { return kINPUT; }
205 int c = input ();
208 c = input ();
212 c = input ();
214 c = input ();
236 int c = input ();
303 int c = input ();
  /hardware/qcom/neuralnetworks/hvxservice/1.0/hexagon_nn_controller/
ops.def 86 DEF_OP(INPUT)
  /art/compiler/optimizing/
codegen_test.cc 228 #define NOT_INT_TEST(TEST_NAME, INPUT, EXPECTED_OUTPUT) \
230 const int32_t input = INPUT; \
231 const uint16_t input_lo = Low16Bits(input); \
232 const uint16_t input_hi = High16Bits(input); \
253 #define NOT_LONG_TEST(TEST_NAME, INPUT, EXPECTED_OUTPUT) \
255 const int64_t input = INPUT; \
256 const uint16_t word0 = Low16Bits(Low32Bits(input)); /* LSW. */ \
257 const uint16_t word1 = High16Bits(Low32Bits(input)); \
305 const int64_t input = INT64_C(4294967296); \/\/ 2^32 local
    [all...]
  /external/libevent/include/event2/
rpc.h 448 * Hooks for changing the input and output of RPCs; this can be used to
453 EVRPC_INPUT, /**< apply the function to an input hook */
460 #define INPUT EVRPC_INPUT
486 * @param hook_type either INPUT or OUTPUT
500 * @param hook_type either INPUT or OUTPUT
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/lib/
gm107.asm 8 // INPUT: $r0: dividend, $r1: divisor
53 // INPUT: $r0: dividend, $r1: divisor
  /external/python/cpython2/Lib/plat-irix5/
FL.py 200 INPUT = 31
  /external/python/cpython2/Lib/plat-irix6/
FL.py 200 INPUT = 31
  /external/walt/arduino/walt/
walt.ino 212 pinMode(PD_SCREEN_PIN, INPUT);
213 pinMode(G_PIN, INPUT);
  /frameworks/compile/mclinker/lib/Script/
InputCmd.cpp 44 : ScriptCommand(ScriptCommand::INPUT),
58 mcld::outs() << "INPUT ( ";
64 assert((*it)->kind() == StrToken::Input);
65 InputToken* input = llvm::cast<InputToken>(*it); local
66 cur = input->asNeeded();
72 if (input->type() == InputToken::NameSpec)
74 mcld::outs() << input->name() << " ";
87 // construct the INPUT tree
97 assert((*it)->kind() == StrToken::Input);
120 script.directories().find(token->name(), Input::Script)
165 InputTree::iterator input = m_Builder.getCurrentNode(); local
    [all...]
  /frameworks/ml/nn/runtime/
ExecutionPlan.cpp 142 nnAssert(kind == INPUT);
194 if (kind == INPUT) {
196 // input. That means it must be defined by a
197 // different partition, and is an input to this one.
201 // output. It may be an input to a different
210 if (kind == INPUT) {
212 // input. That means it must be defined by a
213 // different partition, and is an input to this one.
232 // Convert the input and output operand indexes.
236 // - We may not have seen an input if it is a model input,
    [all...]
ExecutionPlan.h 45 enum OperandKind { INPUT, OUTPUT };
127 // Converts input indexes from the submodel to the main model
128 // (these are input indexes, not operand indexes). This vector
138 // main model outputs (these are input and output indexes, not
179 // TEMPORARY as an inter-partition input or output.
  /frameworks/ml/nn/runtime/test/
TestPartitioningRandom.cpp 53 // We randomly generate tests (model + input data) at runtime, and verify
57 // (1) Randomly generate a model (graph and weights), randomly generate input
367 // Represents an operation in which every input and output operand
369 // - One input operand may be an activation function.
370 // - Any number of input operands may be "special" in some other way
373 // - There be at least one input operand that is neither an
381 // Returns operand index, or <0 if input is normal (must not
397 // input operand 3 is bias, a 1-D tensor
650 // A (normal) operation input can be one of:
651 // - a new or existing model input
    [all...]
  /hardware/google/av/media/sfplugin/
CCodecConfig.h 71 IS_INPUT = (1 << 12), ///< for input port (getFormat)
73 IS_RAW = (1 << 14), ///< for raw port (input-encoder, output-decoder)
74 IS_CODED = (1 << 15), ///< for coded port (input-decoder, output-encoder)
90 INPUT = ~(IS_OUTPUT | IS_RAW | IS_CODED),
103 Domain mInputDomain; // input port domain
216 /// \param domain input/output bitmask
222 * Updates relevant input/output formats and subscribes to parameters specified in the
235 * Updates relevant input/output formats and subscribes to parameters specified in the
245 /// input/output formats.
316 /// \param domain input/output bitmas
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/ocaml/
typemaps.i 15 $1 = caml_ptr_val($input,$descriptor);
19 $1 = ($ltype)caml_ptr_val($input,$descriptor);
34 $1 = ($ltype) caml_ptr_val($input,$1_descriptor);
39 $1 = *(($ltype) caml_ptr_val($input,$1_descriptor));
71 $1 = *(($&1_ltype) caml_ptr_val($input,$&1_descriptor)) ;
99 $1 = *(($&1_ltype) caml_ptr_val($input,$&1_descriptor)) ;
124 $1 = MZ_TO_C($input);
127 $1 = MZ_TO_C($input);
130 temp = ($*1_ltype) MZ_TO_C($input);
134 $1 = MZ_TO_C($input);
    [all...]

Completed in 744 milliseconds

1 2 34 5 6 7