Searched refs:out (Results 151 - 175 of 302) sorted by relevance

1234567891011>>

/system/extras/tests/workloads/
H A Dcapture.sh6 # do a throw-away adb in case the server is out-of-date
34 ((out=in*scale/max))
35 echo $out
/system/media/audio_utils/
H A Dresampler.c75 int16_t *out,
80 if (rsmp == NULL || out == NULL || outFrameCount == NULL) {
128 out + framesWr,
134 out + framesWr * rsmp->channel_count,
140 "ReSampler::resample() remaining %zu frames in and %zu frames out",
156 int16_t *out,
162 out == NULL || outFrameCount == NULL) {
175 out,
181 out,
185 ALOGV("resampler_resample_from_input() DONE in %zu out
74 resampler_resample_from_provider(struct resampler_itfe *resampler, int16_t *out, size_t *outFrameCount) argument
153 resampler_resample_from_input(struct resampler_itfe *resampler, int16_t *in, size_t *inFrameCount, int16_t *out, size_t *outFrameCount) argument
[all...]
H A Dchannels.c48 uint8x3_t out; local
50 out.c[2] = in;
51 out.c[1] = in >> 8;
52 out.c[0] = in >> 16;
54 out.c[0] = in;
55 out.c[1] = in >> 8;
56 out.c[2] = in >> 16;
58 return out;
258 * The out and sums buffers must either be completely separate (non-overlapping), or
329 * The out an
[all...]
/system/tools/hidl/
H A DFmqType.h37 Formatter &out,
45 Formatter &out,
H A DTypeDef.h46 void emitTypeDeclarations(Formatter& out) const override;
/system/tools/hidl/c2hal/
H A DAST.h85 void generateIncludes(Formatter &out) const;
86 void generatePackageLine(Formatter &out) const;
H A DDefine.h36 void generateSource(Formatter &out) const override;
/system/tools/hidl/test/java_test/src/com/android/commands/hidl_test_java/
H A DHidlTestJava.java427 IBase.VectorOfArray out = proxy.someMethodWithVectorOfArray(in);
428 ExpectTrue(out.equals(expectedOut));
451 ArrayList<byte[]> out = proxy.someMethodTakingAVectorOfArray(in);
453 ExpectTrue(out.size() == expectedOut.size());
455 ExpectTrue(java.util.Objects.deepEquals(out.get(i), expectedOut.get(i)));
470 IBase.StringMatrix3x5 out = proxy.transpose(in);
474 ExpectTrue(out.equals(expectedOut));
487 String[][] out = proxy.transpose2(in);
491 ExpectTrue(java.util.Arrays.deepEquals(out, expectedOut));
698 IBase.LotsOfPrimitiveArrays out
[all...]
/system/core/libmemunreachable/
H A DTarjan.h72 void Execute(Graph<T>& graph, SCCList<T>& out);
84 void TarjanAlgorithm<T>::Execute(Graph<T>& graph, SCCList<T>& out) { argument
98 out.swap(components_);
131 void Tarjan(Graph<T>& graph, SCCList<T>& out) { argument
133 tarjan.Execute(graph, out);
/system/keymaster/legacy_support/
H A Dkeymaster_passthrough_operation.h61 keymaster_blob_t out = {}; variable
64 &out_params, &out);
66 if (output) output->Reinitialize(out.data, out.data_length);
70 free(const_cast<uint8_t*>(out.data));
/system/keymaster/ng/include/
H A Dkeystore_hidl_support.h33 inline static std::ostream& formatArgs(std::ostream& out) { argument
34 return out;
38 inline static std::ostream& formatArgs(std::ostream& out, First&& first, Args&&... args) { argument
39 out << first;
40 return formatArgs(out, args...);
/system/libvintf/
H A DVintfObject.cpp113 const std::shared_ptr<const HalManifest>& deviceManifest, CompatibilityMatrix* out,
160 *out = std::move(*combined);
171 status_t VintfObject::FetchDeviceHalManifest(HalManifest* out, std::string* error) { argument
172 status_t vendorStatus = FetchOneHalManifest(kVendorManifest, out, error);
185 out->addAllHals(&odmManifest);
190 // vendorStatus != OK, "out" is not changed.
192 *out = std::move(odmManifest);
197 return out->fetchAllInformation(kVendorLegacyManifest, error);
200 // "out" is written to iff return status is OK.
208 status_t VintfObject::FetchOdmHalManifest(HalManifest* out, st argument
112 GetCombinedFrameworkMatrix( const std::shared_ptr<const HalManifest>& deviceManifest, CompatibilityMatrix* out, std::string* error) argument
245 FetchOneHalManifest(const std::string& path, HalManifest* out, std::string* error) argument
255 FetchDeviceMatrix(CompatibilityMatrix* out, std::string* error) argument
264 FetchFrameworkHalManifest(HalManifest* out, std::string* error) argument
[all...]
/system/tools/hidl/utils/
H A DFormatter.cpp118 Formatter &Formatter::operator<<(const std::string &out) { argument
119 const size_t len = out.length();
122 size_t pos = out.find('\n', start);
131 output(out.substr(start));
144 output(out.substr(start, pos - start + 1));
H A DFQName.cpp236 LOG(ERROR) << "numbers in " << majorStr << "." << minorStr << " are out of range.";
283 std::string out; local
284 out.append(mPackage);
285 out.append(atVersion());
288 out.append("::");
290 out.append(mName);
293 out.append(":");
294 out.append(mValueName);
298 return out;
396 std::string out local
411 std::string out = cppNamespace(); local
[all...]
/system/libhwbinder/
H A DIPCThreadState.cpp68 // Static const and functions will be optimized out if not used,
69 // when LOG_NDEBUG and references in IF_LOG_COMMANDS() are optimized out.
119 static const void* printBinderTransactionData(TextOutput& out, const void* data) argument
125 out << "target.desc=" << btd->target.handle;
127 out << "target.ptr=" << btd->target.ptr;
129 out << " (cookie " << btd->cookie << ")" << endl
138 static const void* printReturnCommand(TextOutput& out, const void* _cmd) argument
145 out << "BR_ERROR: " << (void*)(long)(*cmd++) << endl;
148 out << "Unknown reply: " << code << endl;
151 out << kReturnString
199 printCommand(TextOutput& out, const void* _cmd) argument
[all...]
/system/core/logd/
H A Dlibaudit.c129 goto out;
132 goto out;
141 out:
/system/sepolicy/tools/sepolicy-analyze/
H A Dattribute.c96 goto out;
102 goto out;
108 out:
/system/chre/build/variant/
H A Dgoogle_hexagonv55_slpi-see.mk36 TARGET_CFLAGS := $(filter-out -DCUST_H%, $(TARGET_CFLAGS))
/system/tools/hidl/test/java_test/
H A Dhidl_test_java_native.cpp222 [&](const auto &out) {
223 EXPECT_EQ(expectedOut, out);
244 [&](const auto &out) {
245 EXPECT_EQ(expectedOut, out);
307 [&](const auto &out) {
308 EXPECT_EQ(expectedOut, out);
324 [&](const auto &out) {
325 EXPECT_EQ(expectedOut, out);
527 [&](const auto &out) {
528 EXPECT_EQ(in, out);
[all...]
/system/tools/hidl/test/
H A Drun_all_host_tests.sh27 $ANDROID_BUILD_TOP/out/host/linux-x86/$bits/$test/$test ||
/system/tpm/trunks/
H A DMakefile30 SHARED_OBJS := $(filter-out $(TEST_OBJS), $(CXX_OBJECTS))
/system/iot/attestation/atap/libatap/
H A Datap_commands.c213 goto out;
224 out:
272 goto out;
276 goto out;
292 out:
393 goto out;
401 out:
425 goto out;
432 goto out;
441 goto out;
[all...]
/system/core/property_service/libpropertyinfoserializer/
H A Dproperty_info_file.cpp59 bool ParsePropertyInfoLine(const std::string& line, PropertyInfoEntry* out, std::string* error) { argument
90 *out = {property, context, Join(type_strings, " "), exact_match == "exact"};
/system/core/trusty/keymaster/
H A Dtrusty_keymaster_ipc.cpp49 int trusty_keymaster_call(uint32_t cmd, void* in, uint32_t in_size, uint8_t* out, argument
80 .iov_base = out + *out_size,
/system/update_engine/payload_generator/
H A Dtarjan.cc36 vector<Vertex::Index>* out) {
46 out->swap(components_[0]);
34 Execute(Vertex::Index vertex, Graph* graph, vector<Vertex::Index>* out) argument

Completed in 684 milliseconds

1234567891011>>