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

1 2 34 5 6 7 8 91011>>

  /frameworks/ml/nn/runtime/test/generated/models/
relu6_quant8_2.model.cpp 5 auto input = model->addOperand(&type0); local
8 model->addOperation(ANEURALNETWORKS_RELU6, {input}, {output});
11 {input},
relu_float_2.model.cpp 5 auto input = model->addOperand(&type0); local
8 model->addOperation(ANEURALNETWORKS_RELU, {input}, {output});
11 {input},
relu_float_2_relaxed.model.cpp 5 auto input = model->addOperand(&type0); local
8 model->addOperation(ANEURALNETWORKS_RELU, {input}, {output});
11 {input},
relu_quant8_2.model.cpp 5 auto input = model->addOperand(&type0); local
8 model->addOperation(ANEURALNETWORKS_RELU, {input}, {output});
11 {input},
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
DemuxInputStream.java 17 package org.apache.commons.io.input;
37 * @param input the stream to bind
40 public InputStream bindStream( InputStream input )
43 m_streams.set( input );
56 InputStream input = getStream(); local
57 if( null != input )
59 input.close();
73 InputStream input = getStream(); local
74 if( null != input )
76 return input.read()
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
PhotoUtil.java 29 InputStream input = context.getResources().openRawResource(R.drawable.testimage); local
30 return FileUtils.readInputStreamFully(input);
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
BufFileInput.h 4 // DESCRIPTION: File Input Stream with lookahead for Scanner
28 // f - input stream
45 FILE *input; // input stream; member in class:BufFileInput
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
BufFileInput.h 4 // DESCRIPTION: File Input Stream with lookahead for Scanner
28 // f - input stream
45 FILE *input; // input stream; member in class:BufFileInput
  /external/adhd/cras/src/tests/
checksum_unittest.cc 13 const char *input; member in struct:__anon14134::TestCase
27 const char *input = test_case[i].input; local
29 EXPECT_EQ(output, crc32_checksum((unsigned char *)input, strlen(input)));
  /external/compiler-rt/test/builtins/Unit/ppc/
floatditf_test.h 2 uint64_t input; member in struct:testCase
    [all...]
floatunditf_test.h 2 uint64_t input; member in struct:testCase
    [all...]
  /external/deqp/framework/delibs/destream/
deStreamCpyThread.h 34 deInStream* input; member in struct:deStreamCpyThread_s
40 deStreamCpyThread* deStreamCpyThread_create (deInStream* input, deOutStream* output, deInt32 bufferSize);
  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/input/
InputFileGenerator.java 16 package com.google.currysrc.api.input;
  /external/iproute2/tc/
emp_ematch.y 34 %start input
36 input: label
  /external/libchrome/base/metrics/
metrics_hashes_unittest.cc 20 std::string input; member in struct:base::__anon24242
29 uint64_t hash = HashMetricName(cases[i].input);
  /external/libcxx/test/libcxx/localization/locale.categories/
__scan_keyword.pass.cpp 19 // If one keyword is a prefix of another, and the next CharT in the input
29 // If the input is "a", the first keyword matches and eofbit is set.
30 // If the input is "abc", no match is found and "ab" are consumed.
47 const char input[] = "a"; local
48 const char* in = input;
51 std::string* k = std::__scan_keyword(in, input+sizeof(input)-1,
55 assert(in == input+1);
59 const char input[] = "abc"; local
60 const char* in = input;
71 const char input[] = "abb"; local
83 const char input[] = "Tue "; local
95 const char input[] = "tue "; local
107 const char input[] = "tue "; local
    [all...]
  /external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.get/
xsgetn.pass.cpp 36 char input[7] = "123456"; local
37 t.setg(input, input, input+7);
38 char output[sizeof(input)] = {0};
40 assert(strcmp(input, output) == 0);
  /external/libnl/lib/route/
pktloc_syntax.y 41 %start input
45 input: label
47 | location input
  /external/libpng/contrib/powerpc-vsx/
linux.c 36 char input[MAXLINE]; local
44 memset(input,0,MAXLINE);
45 while(fgets(input,MAXLINE,f) != NULL)
47 token = strstr(input,string);
  /external/libxml2/python/tests/
reader.py 19 input = libxml2.inputBuffer(f) variable
20 reader = input.newTextReader("test1")
79 input = libxml2.inputBuffer(f) variable
80 reader = input.newTextReader("test2")
101 input = libxml2.inputBuffer(f) variable
102 reader = input.newTextReader("test3")
120 input = libxml2.inputBuffer(f) variable
121 reader = input.newTextReader("test4")
249 input = libxml2.inputBuffer(f) variable
250 reader = input.newTextReader("test6"
266 input = libxml2.inputBuffer(f) variable
286 input = libxml2.inputBuffer(f) variable
    [all...]
reader3.py 27 input = libxml2.inputBuffer(f) variable
28 reader = input.newTextReader("test_noent")
64 input = libxml2.inputBuffer(f) variable
65 reader = input.newTextReader("test_noent")
135 input = libxml2.inputBuffer(str_io(s)) variable
136 reader = input.newTextReader("test3")
151 del input
  /external/pdfium/fxjs/
cfxjse_formcalc_context_embeddertest.cpp 15 const char input[] = ""; local
16 EXPECT_TRUE(Execute(input));
24 const char input[] = "123"; local
25 EXPECT_TRUE(Execute(input));
29 EXPECT_EQ(123, value->ToInteger()) << "Program: " << input;
    [all...]
  /external/pdfium/xfa/fxfa/fm2js/
cxfa_fmparser_unittest.cpp 62 const wchar_t input[] = local
106 auto parser = pdfium::MakeUnique<CXFA_FMParser>(input);
  /external/skia/debugger/
debuggermain.cpp 14 SkDebugf("%s <input> \n", argv0);
17 SkDebugf(" input: Either a directory or a single .skp file.\n");
35 SkString input; local
46 } else if (input.isEmpty()) {
47 input = SkString(iter->toAscii().data());
56 if (!input.isEmpty()) {
57 if (SkStrEndsWith(input.c_str(), ".skp")) {
58 w.openFile(input.c_str());
60 w.setupDirectoryWidget(input.c_str());
  /external/skqp/debugger/
debuggermain.cpp 14 SkDebugf("%s <input> \n", argv0);
17 SkDebugf(" input: Either a directory or a single .skp file.\n");
35 SkString input; local
46 } else if (input.isEmpty()) {
47 input = SkString(iter->toAscii().data());
56 if (!input.isEmpty()) {
57 if (SkStrEndsWith(input.c_str(), ".skp")) {
58 w.openFile(input.c_str());
60 w.setupDirectoryWidget(input.c_str());

Completed in 481 milliseconds

1 2 34 5 6 7 8 91011>>