/aosp12/frameworks/compile/slang/tests/P_reduce_general_accumulator/ |
H A D | gen-accumulator.pl | 57 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 D | files.cpp | 116 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 D | files.h | 32 string outName; member
|
/aosp12/frameworks/native/opengl/tools/glgen/src/ |
H A D | JniCodeEmitter.java | 848 (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 D | utils.h | 113 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 D | main.go | 400 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 D | file_utils.cpp | 157 const int outNameBufSize, char *const outName) { in getBasename() argument 168 snprintf(outName, baseNameLength + 1 /* terminator */, "%s", baseName); in getBasename()
|
H A D | file_utils.h | 52 char *const outName);
|
/aosp12/frameworks/av/services/mediacodec/registrant/ |
H A D | CodecServiceRegistrant.cpp | 316 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 D | generateCpp.cpp | 562 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 D | GraphicBufferMapper.cpp | 196 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 D | HWC2OnFbAdapter.cpp | 92 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 D | ComposerHal.h | 86 virtual Error getDisplayName(Display display, hidl_string* outName) = 0;
|
/aosp12/frameworks/base/libs/androidfw/ |
H A D | ResourceTypes.cpp | 4421 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 D | MtpDatabase.java | 752 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 D | Gralloc4.cpp | 952 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 D | HWC2.h | 100 [[clang::warn_unused_result]] virtual hal::Error getName(std::string* outName) const = 0; 173 hal::Error getName(std::string* outName) const override;
|
H A D | ComposerHal.h | 115 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 D | GraphicBufferMapper.h | 98 status_t getName(buffer_handle_t bufferHandle, std::string* outName);
|
H A D | Gralloc4.h | 71 status_t getName(buffer_handle_t bufferHandle, std::string* outName) const override;
|
/aosp12/frameworks/native/libs/ui/include_vndk/ui/ |
H A D | GraphicBufferMapper.h | 98 status_t getName(buffer_handle_t bufferHandle, std::string* outName);
|
/aosp12/frameworks/av/media/codec2/hidl/client/ |
H A D | client.cpp | 268 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 D | Gralloc4.h | 260 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 D | ExynosHWC.h | 80 …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 D | HwcHal.h | 225 Error getDisplayName(Display display, hidl_string* outName) override { in getDisplayName() argument 240 *outName = buf.data(); in getDisplayName()
|