Home
last modified time | relevance | path

Searched refs:stage (Results 1 – 15 of 15) sorted by relevance

/frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
Dqpisf_2s.tab21 * Quantization tables for two-stage of ISFs (split by 2 in 1st stage)
49 * isf codebooks: two-stage VQ with split-by-5 in 2nd stage *
63 * 1st stage codebook; 1st split: isf0 to isf8
326 * 1st stage codebook; 2nd split: isf9 to isf15
589 * 2nd stage codebook; 1st split: isf2_0 to isf2_2
663 * 2nd stage codebook; 2nd split: isf2_3 to isf2_5
800 * 2nd stage codebook; 3rd split: isf2_6 to isf2_8
937 * 2nd stage codebook; 4th split: isf2_9 to isf2_11
977 * 2nd stage codebook; 5th split: isf2_12 to isf2_15
1019 * isf codebooks: two-stage VQ with split-by-3 in 2nd stage *
[all …]
/frameworks/base/services/backup/java/com/android/server/backup/
DUserBackupManagerFilePersistedSettings.java63 File stage = new File(baseDir, BACKUP_ENABLE_FILE + "-stage"); in writeBackupEnableState() local
64 try (FileOutputStream fout = new FileOutputStream(stage)) { in writeBackupEnableState()
67 stage.renameTo(enableFile); in writeBackupEnableState()
75 stage.delete(); in writeBackupEnableState()
/frameworks/base/core/java/android/app/backup/
DWallpaperBackupHelper.java96 File stage = new File(STAGE_FILE); in restoreEntity() local
98 if (writeFile(stage, data)) { in restoreEntity()
99 try (FileInputStream in = new FileInputStream(stage)) { in restoreEntity()
108 stage.delete(); in restoreEntity()
/frameworks/base/services/backup/java/com/android/server/backup/restore/
DPerformUnifiedRestoreTask.java687 ParcelFileDescriptor stage; in initiateOneRestore() local
697 stage = ParcelFileDescriptor.open(downloadFile, in initiateOneRestore()
702 if (transport.getRestoreData(stage) != BackupTransport.TRANSPORT_OK) { in initiateOneRestore()
707 stage.close(); in initiateOneRestore()
717 stage.close(); in initiateOneRestore()
718 stage = ParcelFileDescriptor.open(downloadFile, in initiateOneRestore()
726 BackupDataInput in = new BackupDataInput(stage.getFileDescriptor()); in initiateOneRestore()
754 stage.close(); in initiateOneRestore()
/frameworks/base/packages/WallpaperBackup/src/com/android/wallpaperbackup/
DWallpaperBackupAgent.java263 private void restoreFromStage(File stage, File info, String hintTag, int which) in restoreFromStage() argument
265 if (stage.exists()) { in restoreFromStage()
274 try (FileInputStream in = new FileInputStream(stage)) { in restoreFromStage()
/frameworks/native/opengl/tests/angeles/
DREADME.txt36 the compile/link stage.
/frameworks/base/services/core/java/com/android/server/pm/
DPackageInstallerService.java295 for (File stage : unclaimedStages) { in reconcileStagesLocked()
296 Slog.w(TAG, "Deleting orphan stage " + stage); in reconcileStagesLocked()
298 mPm.removeCodePathLI(stage); in reconcileStagesLocked()
/frameworks/native/vulkan/api/
Dvulkan.api2555 /// Shader stage flags
2978 /// Pipeline shader stage creation flags
4123 VkShaderStageFlagBits stage
4133 VkPipelineShaderStageCreateInfo stage
4275 …elineShaderStageCreateInfo* pStages /// One entry for each active shader stage
4475 …l32 geometryShader /// geometry stage
4476 … tessellationShader /// tessellation control and evaluation stage
4546 …erStageDescriptorSamplers /// max num of samplers allowed per-stage in a descriptor set
4547 …DescriptorUniformBuffers /// max num of uniform buffers allowed per-stage in a descriptor set
4548 …DescriptorStorageBuffers /// max num of storage buffers allowed per-stage in a descriptor set
[all …]
/frameworks/ml/nn/runtime/
DExecutionPlan.cpp1303 if (state.stage == WhileState::EVALUATE_CONDITION) { in nextCompound()
1328 state.stage = WhileState::EVALUATE_BODY; in nextCompound()
1332 CHECK(state.stage == WhileState::EVALUATE_BODY); in nextCompound()
1416 state.stage = WhileState::EVALUATE_CONDITION; in nextCompound()
DExecutionPlan.h393 enum Stage { EVALUATE_CONDITION, EVALUATE_BODY } stage = EVALUATE_CONDITION; member
/frameworks/ml/nn/runtime/test/fuzzing/
DRandomVariable.cpp680 void stage() { staging.insert(var->value); } in stage() function
748 for (auto& var : evalOrder) context->at(var).stage(); in evalSubnetHelper()
/frameworks/rs/tests/lldb/
DREADME.txt63 --install-only It only runs the pre-run stage of the test suite. It
/frameworks/base/cmds/statsd/src/
Datoms.proto3993 // Bootloader's 1st stage execution time.
3996 // Bootloader's 1st stage loading time.
4002 // Bootloader's 2nd stage execution time.
4005 // Bootloader's 2nd stage loading time.
4021 // Total time for early stage mounting of disk devices during bootup.
4024 // Total time for late stage mounting of disk devices during bootup.
4036 // Init's total time for cold boot stage.
4045 // Init's total time spent for completing the 1st stage.
4065 // Time when init starts 1st stage. Logged from bootstat.
7010 * Logs the gesture stage changed event.
[all …]
/frameworks/base/core/java/android/view/
DViewRootImpl.java7662 InputStage stage; in deliverInputEvent() local
7664 stage = mSyntheticInputStage; in deliverInputEvent()
7666 stage = q.shouldSkipIme() ? mFirstPostImeInputStage : mFirstInputStage; in deliverInputEvent()
7673 if (stage != null) { in deliverInputEvent()
7675 stage.deliver(q); in deliverInputEvent()
/frameworks/ml/nn/tools/api/
Dtypes.spec2264 * It processes the incoming input using a 2-stage filtering mechanism:
2265 * * stage 1 performs filtering on the "features" dimension, whose outputs
2267 * * stage 2 performs filtering on the "time" dimension of the memory_size
2268 * memoized outputs of stage 1.