Home
last modified time | relevance | path

Searched refs:outName (Results 1 – 25 of 41) sorted by relevance

12

/aosp12/frameworks/compile/slang/tests/P_reduce_general_accumulator/
H A Dgen-accumulator.pl57 my $outName = "${reduceName}_out";
59 … reduce(${reduceName}) accumulator(${accumName}) combiner(${combName}) outconverter(${outName})\n";
63 print "static void ${outName}(int *out, const ${resultName} *accum) { }\n";
/aosp12/build/make/tools/atree/
H A Dfiles.cpp116 const string& sourceName, const string& outName) in add_file() argument
123 rec.outName = outName; in add_file()
366 rec->outPath = path_append(base, rec->outName); in stat_out()
407 r.outName = path_append(rec.outName, entry); in add_more()
H A Dfiles.h32 string outName; member
/aosp12/frameworks/native/opengl/tools/glgen/src/
H A DJniCodeEmitter.java848 (outName.endsWith("Pointer") || outName.endsWith("PointerOES") || in emitJniCode()
849 outName.endsWith("glDrawElements") || in emitJniCode()
851 outName.endsWith("glTexImage2D") || in emitJniCode()
852 outName.endsWith("glTexSubImage2D") || in emitJniCode()
855 outName.endsWith("glTexImage3D") || in emitJniCode()
856 outName.endsWith("glTexSubImage3D") || in emitJniCode()
859 outName.endsWith("glReadPixels")) in emitJniCode()
862 outName += "Bounds"; in emitJniCode()
867 out.print(outName); in emitJniCode()
885 outName += "__" + sig; in emitJniCode()
[all …]
/aosp12/hardware/google/pixel/vibrator/common/
H A Dutils.h113 static void fileFromEnv(const char *env, T *outStream, std::string *outName = nullptr) {
121 if (outName != nullptr) {
122 *outName = std::string(file);
/aosp12/build/soong/cmd/extract_apks/
H A Dmain.go400 outName, ok := renamer(inName)
406 origin, inName, outName)
408 entryOrigin[outName] = inName
409 if err := writer.CopyFrom(apkFile, outName); err != nil {
414 `name="%s" certificate="PRESIGNED" private_key="" partition="%s"`, outName, partition))
/aosp12/packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/
H A Dfile_utils.cpp157 const int outNameBufSize, char *const outName) { in getBasename() argument
168 snprintf(outName, baseNameLength + 1 /* terminator */, "%s", baseName); in getBasename()
H A Dfile_utils.h52 char *const outName);
/aosp12/frameworks/av/services/mediacodec/registrant/
H A DCodecServiceRegistrant.cpp316 C2String outName; in getName() local
318 [&outName](const hidl_string& name) { in getName()
319 outName = name.c_str(); in getName()
324 return outName; in getName()
/aosp12/system/tools/hidl/
H A DgenerateCpp.cpp562 const std::string outName = "_hidl_out_" + elidedReturn->name(); in generatePassthroughMethod() local
564 out << elidedReturn->type().getCppResultType() << " " << outName in generatePassthroughMethod()
566 out << "(void) " << outName << ";\n"; in generatePassthroughMethod()
569 wrapPassthroughArg(out, elidedReturn, outName, kHandlePassthroughError); in generatePassthroughMethod()
571 if (outName != wrappedName) { in generatePassthroughMethod()
573 out << outName << " = " << wrappedName << ";\n\n"; in generatePassthroughMethod()
576 out << "_hidl_return = " << outName << "\n;"; in generatePassthroughMethod()
/aosp12/frameworks/native/libs/ui/
H A DGraphicBufferMapper.cpp196 status_t GraphicBufferMapper::getName(buffer_handle_t bufferHandle, std::string* outName) { in getName() argument
197 return mMapper->getName(bufferHandle, outName); in getName()
/aosp12/hardware/interfaces/graphics/composer/2.1/utils/hwc2onfbadapter/
H A DHWC2OnFbAdapter.cpp92 char* outName) { in getDisplayNameHook() argument
99 if (outName) { in getDisplayNameHook()
100 *outSize = info.name.copy(outName, *outSize); in getDisplayNameHook()
/aosp12/hardware/interfaces/graphics/composer/2.1/utils/hal/include/composer-hal/2.1/
H A DComposerHal.h86 virtual Error getDisplayName(Display display, hidl_string* outName) = 0;
/aosp12/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp4421 outName->type8 = UnpackOptionalString(entry.typeStr.string8(), &outName->typeLen); in getResourceName()
4422 outName->name8 = UnpackOptionalString(entry.keyStr.string8(), &outName->nameLen); in getResourceName()
4424 outName->type8 = NULL; in getResourceName()
4425 outName->name8 = NULL; in getResourceName()
4427 if (outName->type8 == NULL) { in getResourceName()
4428 outName->type = UnpackOptionalString(entry.typeStr.string16(), &outName->typeLen); in getResourceName()
4430 if (outName->type == NULL) { in getResourceName()
4434 if (outName->name8 == NULL) { in getResourceName()
4435 outName->name = UnpackOptionalString(entry.keyStr.string16(), &outName->nameLen); in getResourceName()
5219 *outName = String16(p, end-p); in expandResourceRef()
[all …]
/aosp12/frameworks/base/media/java/android/mtp/
H A DMtpDatabase.java752 char[] outName, long[] outCreatedModified) { in getObjectInfo() argument
762 obj.getName().getChars(0, nameLen, outName, 0); in getObjectInfo()
763 outName[nameLen] = 0; in getObjectInfo()
/aosp12/frameworks/native/libs/gralloc/types/
H A DGralloc4.cpp952 status_t encodeName(const std::string& name, hidl_vec<uint8_t>* outName) { in encodeName() argument
953 return encodeMetadata(MetadataType_Name, name, outName, encodeString); in encodeName()
956 status_t decodeName(const hidl_vec<uint8_t>& name, std::string* outName) { in decodeName() argument
957 return decodeMetadata(MetadataType_Name, name, outName, decodeString); in decodeName()
/aosp12/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWC2.h100 [[clang::warn_unused_result]] virtual hal::Error getName(std::string* outName) const = 0;
173 hal::Error getName(std::string* outName) const override;
H A DComposerHal.h115 virtual Error getDisplayName(Display display, std::string* outName) = 0;
360 Error getDisplayName(Display display, std::string* outName) override;
/aosp12/frameworks/native/libs/ui/include/ui/
H A DGraphicBufferMapper.h98 status_t getName(buffer_handle_t bufferHandle, std::string* outName);
H A DGralloc4.h71 status_t getName(buffer_handle_t bufferHandle, std::string* outName) const override;
/aosp12/frameworks/native/libs/ui/include_vndk/ui/
H A DGraphicBufferMapper.h98 status_t getName(buffer_handle_t bufferHandle, std::string* outName);
/aosp12/frameworks/av/media/codec2/hidl/client/
H A Dclient.cpp268 C2String outName; in __anon813d3abd0402() local
270 [&outName](const hidl_string& name) { in __anon813d3abd0402()
271 outName = name.c_str(); in __anon813d3abd0402()
273 return transStatus.isOk() ? outName : ""; in __anon813d3abd0402()
/aosp12/frameworks/native/libs/gralloc/types/include/gralloctypes/
H A DGralloc4.h260 status_t encodeName(const std::string& name, android::hardware::hidl_vec<uint8_t>* outName);
261 status_t decodeName(const android::hardware::hidl_vec<uint8_t>& name, std::string* outName);
/aosp12/hardware/google/graphics/common/libhwc2.1/
H A DExynosHWC.h80 …os_getDisplayName(hwc2_device_t *device, hwc2_display_t display, uint32_t* outSize, char* outName);
/aosp12/hardware/interfaces/graphics/composer/2.1/utils/passthrough/include/composer-passthrough/2.1/
H A DHwcHal.h225 Error getDisplayName(Display display, hidl_string* outName) override { in getDisplayName() argument
240 *outName = buf.data(); in getDisplayName()

12