HomeSort by relevance Sort by last modified time
    Searched defs:output (Results 1151 - 1175 of 4809) sorted by null

<<41424344454647484950>>

  /frameworks/ml/nn/runtime/test/specs/V1_1/
rnn_relaxed.mod.py 32 output = Output("output", "TENSOR_FLOAT32", "{%d, %d}" % (batches, units)) variable
35 activation_param).To([hidden_state_out, output])
200 output0[output] = golden_outputs[golden_start:golden_end]
201 output0[output].extend(output0[output])
svdf2_relaxed.mod.py 34 output = Output("output", "TENSOR_FLOAT32", "{%d, %d}" % (batches, units)) variable
37 rank_param, activation_param).To([state_out, output])
144 output: []}
153 output0[output] = golden_outputs[golden_start:golden_end]
svdf_relaxed.mod.py 34 output = Output("output", "TENSOR_FLOAT32", "{%d, %d}" % (batches, units)) variable
37 rank_param, activation_param).To([state_out, output])
129 output: []}
138 output0[output] = golden_outputs[golden_start:golden_end]
  /frameworks/native/cmds/installd/tests/
installd_service_test.cpp 170 std::ostringstream output; local
171 output << std::hex << std::setfill('0');
173 output << std::setw(2) << +b;
177 EXPECT_EQ(output.str(), "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855");
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/util/
ScanResultUtilTest.java 51 ScanDetail output = ScanResultUtil.toScanDetail(input); local
53 validateScanDetail(input, output);
68 ScanDetail output = ScanResultUtil.toScanDetail(input); local
70 validateScanDetail(input, output);
82 ScanDetail output = ScanResultUtil.toScanDetail(input); local
84 validateScanDetail(input, output);
125 private static void validateScanDetail(ScanResult input, ScanDetail output) {
126 assertNotNull("NetworkDetail was null", output.getNetworkDetail());
127 assertNotNull("ScanResult was null", output.getScanResult());
129 output.getNetworkDetail().getSSID())
    [all...]
  /frameworks/support/work/workmanager/src/main/java/androidx/work/
ArrayCreatingInputMerger.java 32 * <li>If it's an array, put it in the output</li>
33 * <li>If it's a primitive, turn it into a size 1 array and put it in the output</li>
55 Data.Builder output = new Data.Builder(); local
103 output.putAll(mergedValues);
104 return output.build();
  /hardware/intel/img/psb_video/src/android/
psb_output_android.c 51 #define INIT_OUTPUT_PRIV psb_android_output_p output = (psb_android_output_p)(((psb_driver_data_p)ctx->pDriverData)->ws_priv)
90 psb_android_output_p output = calloc(1, sizeof(psb_android_output_s)); local
94 if (output == NULL) {
98 memset(output, 0, sizeof(psb_android_output_s));
101 output->screen_width = 800;
102 output->screen_height = 480;
112 output->screen_width = vinfo.xres;
113 output->screen_height = vinfo.yres;
131 return (unsigned char *)output;
138 //psb_android_output_p output = GET_OUTPUT_DATA(ctx)
    [all...]
  /libcore/luni/src/test/java/libcore/java/io/
ObjectOutputStreamTest.java 91 List<CallsCloseInWriteObjectMethod> output = (List<CallsCloseInWriteObjectMethod>) local
94 assertEquals(input, output);
  /libcore/luni/src/test/java/libcore/java/util/
FormatterTest.java 88 // The interesting case is -123, where you might naively output "-,123" if you're just
132 String[] output = new String[] { local
143 assertEquals("input=\"" + input[i] + "\", " + ",expected=" + output[i] + ",actual=" + result,
144 output[i], result);
  /libcore/ojluni/src/main/java/java/util/logging/
StreamHandler.java 76 private OutputStream output; field in class:StreamHandler
103 * Create a <tt>StreamHandler</tt>, with no current output stream.
113 * and output stream.
115 * @param out the target output stream
116 * @param formatter Formatter to be used to format output
127 * Change the output stream.
129 * If there is a current output stream then the <tt>Formatter</tt>'s
131 * Then the output stream is replaced with the new output stream.
133 * @param out New output stream. May not be null
    [all...]
  /packages/apps/Calendar/tests/src/com/android/calendar/
FormatDateRangeTest.java 40 int flags, String output) {
62 expectedOutput = output;
67 int flags, String output) {
70 flags, output);
188 String output = DateUtils.formatDateRange(mContext, startMillis, endMillis, flags); local
189 if (!dateTest.expectedOutput.equals(output)) {
192 + " actual: " + output);
194 assertEquals(dateTest.expectedOutput, output);
WeekNumberTest.java 213 String output = DateUtils.formatDateTime(mContext, millis, flags); local
215 + " date: " + output
225 String output = DateUtils.formatDateTime(mContext, millis, flags); local
227 + " date: " + output
  /packages/apps/Dialer/java/com/android/dialer/common/concurrent/
DialerFutures.java 40 * <p>Cancellation of the output future will cause cancellation of all input futures.
55 AggregateFuture<T> output = new AnyOfFuture<>(futures); local
56 final AtomicReference<AggregateFuture<T>> ref = Atomics.newReference(output);
57 final AtomicInteger pending = new AtomicInteger(output.futures.size());
58 for (final ListenableFuture<? extends T> future : output.futures) {
65 AggregateFuture<T> output = ref.get();
66 if (output != null) {
72 output.setException(e);
78 output.set(defaultValue);
83 output.set(value)
    [all...]
  /packages/apps/Nfc/src/com/android/nfc/ndefpush/
NdefPushProtocol.java 150 DataOutputStream output = new DataOutputStream(buffer); local
153 output.writeByte(VERSION);
154 output.writeInt(mNumMessages);
156 output.writeByte(mActions[i]);
158 output.writeInt(bytes.length);
159 output.write(bytes);
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
DeferredFileOutputStream.java 17 package org.apache.commons.io.output;
29 * An output stream which will retain data in memory until a specified
52 * The output stream to which data will be written prior to the theshold
59 * The output stream to which data will be written at any given time. This
67 * The file to which output will be directed if the threshold is exceeded.
139 * Returns the current output stream. This may be memory based or disk
142 * @return The underlying output stream.
153 * Switches the underlying output stream from a memory based stream to one
176 * Determines whether or not the data for this output stream has been
189 * Returns the data for this output stream as an array of bytes, assumin
    [all...]
FileWriterWithEncoding.java 17 package org.apache.commons.io.output;
TeeOutputStream.java 17 package org.apache.commons.io.output;
  /packages/services/Car/tests/InstrumentClusterRendererSample/src/com/android/car/cluster/sample/
BitmapUtils.java 91 Bitmap output = Bitmap.createBitmap(size, local
93 Canvas canvas = new Canvas(output);
98 Rect dstRect = new Rect(0, 0, output.getWidth(), output.getHeight());
101 return output;
106 Bitmap output = Bitmap.createBitmap(bitmap.getWidth(),
108 Canvas canvas = new Canvas(output);
120 return output;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
ModuleSummaryIndexYAML.h 76 static void output( function in struct:llvm::yaml::CustomMappingTraits
117 static void output(IO &io, std::map<uint64_t, WholeProgramDevirtResolution> &V) { function in struct:llvm::yaml::CustomMappingTraits
213 static void output(IO &io, GlobalValueSummaryMapTy &V) { function in struct:llvm::yaml::CustomMappingTraits
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/IR/
ModuleSummaryIndexYAML.h 76 static void output( function in struct:llvm::yaml::CustomMappingTraits
117 static void output(IO &io, std::map<uint64_t, WholeProgramDevirtResolution> &V) { function in struct:llvm::yaml::CustomMappingTraits
219 static void output(IO &io, GlobalValueSummaryMapTy &V) { function in struct:llvm::yaml::CustomMappingTraits
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/IR/
ModuleSummaryIndexYAML.h 76 static void output( function in struct:llvm::yaml::CustomMappingTraits
117 static void output(IO &io, std::map<uint64_t, WholeProgramDevirtResolution> &V) { function in struct:llvm::yaml::CustomMappingTraits
219 static void output(IO &io, GlobalValueSummaryMapTy &V) { function in struct:llvm::yaml::CustomMappingTraits
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/IR/
ModuleSummaryIndexYAML.h 82 static void output( function in struct:llvm::yaml::CustomMappingTraits
123 static void output(IO &io, std::map<uint64_t, WholeProgramDevirtResolution> &V) { function in struct:llvm::yaml::CustomMappingTraits
223 static void output(IO &io, GlobalValueSummaryMapTy &V) { function in struct:llvm::yaml::CustomMappingTraits
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/IR/
ModuleSummaryIndexYAML.h 82 static void output( function in struct:llvm::yaml::CustomMappingTraits
123 static void output(IO &io, std::map<uint64_t, WholeProgramDevirtResolution> &V) { function in struct:llvm::yaml::CustomMappingTraits
223 static void output(IO &io, GlobalValueSummaryMapTy &V) { function in struct:llvm::yaml::CustomMappingTraits
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/IR/
ModuleSummaryIndexYAML.h 82 static void output( function in struct:llvm::yaml::CustomMappingTraits
123 static void output(IO &io, std::map<uint64_t, WholeProgramDevirtResolution> &V) { function in struct:llvm::yaml::CustomMappingTraits
223 static void output(IO &io, GlobalValueSummaryMapTy &V) { function in struct:llvm::yaml::CustomMappingTraits
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/IR/
ModuleSummaryIndexYAML.h 82 static void output( function in struct:llvm::yaml::CustomMappingTraits
123 static void output(IO &io, std::map<uint64_t, WholeProgramDevirtResolution> &V) { function in struct:llvm::yaml::CustomMappingTraits
223 static void output(IO &io, GlobalValueSummaryMapTy &V) { function in struct:llvm::yaml::CustomMappingTraits

Completed in 1814 milliseconds

<<41424344454647484950>>