/external/connectedappssdk/sdk/src/main/java/com/google/android/enterprise/connectedapps/internal/ |
D | ParcelCallReceiver.java | 73 public void prepareCall(long callId, int blockId, int numBytes, byte[] paramBytes) { in prepareCall() argument 82 /* destPos= */ blockId * CrossProfileSender.MAX_BYTES_PER_BLOCK, in prepareCall() 88 + blockId); // +1 to have a difference when preparing the 0th block in prepareCall() 103 public Parcel getPreparedCall(long callId, int blockId, byte[] paramBytes) { in getPreparedCall() argument 104 if (blockId > 0) { in getPreparedCall() 106 for (int i = 0; i < blockId; i++) { in getPreparedCall() 118 /* destPos= */ blockId * CrossProfileSender.MAX_BYTES_PER_BLOCK, in getPreparedCall() 137 public byte[] getPreparedResponse(long callId, int blockId) { in getPreparedResponse() argument 142 /* from= */ blockId * CrossProfileSender.MAX_BYTES_PER_BLOCK, in getPreparedResponse() 144 preparedBytes.length, (blockId + 1) * CrossProfileSender.MAX_BYTES_PER_BLOCK)); in getPreparedResponse() [all …]
|
D | CrossProfileParcelCallSender.java | 50 void prepareCall(long callId, int blockId, int numBytes, byte[] params) throws RemoteException { in prepareCall() argument 51 wrappedService.prepareCall(callId, blockId, numBytes, params); in prepareCall() 55 byte[] call(long callId, int blockId, byte[] params) throws RemoteException { in call() argument 57 callId, blockId, crossProfileTypeIdentifier, methodIdentifier, params, callback); in call() 61 byte[] fetchResponse(long callId, int blockId) throws RemoteException { in fetchResponse() argument 62 return wrappedService.fetchResponse(callId, blockId); in fetchResponse()
|
D | ParcelCallSender.java | 44 abstract void prepareCall(long callId, int blockId, int totalBytes, byte[] bytes) in prepareCall() argument 48 long callId, int blockId, int totalBytes, byte[] bytes, int retries) throws RemoteException { in prepareCallAndRetry() argument 51 prepareCall(callId, blockId, totalBytes, bytes); in prepareCallAndRetry() 72 abstract byte[] call(long callId, int blockId, byte[] bytes) throws RemoteException; in call() argument 74 private byte[] callAndRetry(long callId, int blockId, byte[] bytes, int retries) in callAndRetry() argument 78 return call(callId, blockId, bytes); in callAndRetry() 98 abstract byte[] fetchResponse(long callId, int blockId) throws RemoteException; in fetchResponse() argument 100 private byte[] fetchResponseAndRetry(long callId, int blockId, int retries) in fetchResponseAndRetry() argument 104 return fetchResponse(callId, blockId); in fetchResponseAndRetry()
|
D | CrossProfileCallbackExceptionParcelCallSender.java | 35 void prepareCall(long callId, int blockId, int totalBytes, byte[] bytes) throws RemoteException { in prepareCall() argument 36 callback.prepareResult(callId, blockId, totalBytes, bytes); in prepareCall() 45 byte[] call(long callId, int blockId, byte[] bytes) throws RemoteException { in call() argument 46 callback.onException(callId, blockId, bytes); in call() 55 byte[] fetchResponse(long callId, int blockId) throws RemoteException { in fetchResponse() argument
|
D | CrossProfileCallbackParcelCallSender.java | 38 void prepareCall(long callId, int blockId, int totalBytes, byte[] bytes) throws RemoteException { in prepareCall() argument 39 callback.prepareResult(callId, blockId, totalBytes, bytes); in prepareCall() 48 byte[] call(long callId, int blockId, byte[] bytes) throws RemoteException { in call() argument 49 callback.onResult(callId, blockId, methodIdentifier, bytes); in call() 58 byte[] fetchResponse(long callId, int blockId) throws RemoteException { in fetchResponse() argument
|
/external/swiftshader/src/Pipeline/ |
D | SpirvShaderControlFlow.cpp | 139 auto &blockId = it.first; in AssignBlockFields() local 141 if(reachable.count(blockId) > 0) in AssignBlockFields() 146 …ASSERT_MSG(outIt != blocks.end(), "Block %d has a non-existent out %d", blockId.value(), outId.val… in AssignBlockFields() 148 out.ins.emplace(blockId); in AssignBlockFields() 153 …ASSERT_MSG(mergeIt != blocks.end(), "Loop block %d has a non-existent merge block %d", blockId.val… in AssignBlockFields() 160 void SpirvShader::Function::ForeachBlockDependency(Block::ID blockId, std::function<void(Block::ID)… in ForeachBlockDependency() argument 162 auto block = getBlock(blockId); in ForeachBlockDependency() 166 !ExistsPath(blockId, dep, block.mergeBlock)) // or a loop and not a loop back edge in ForeachBlockDependency() 290 auto blockId = state->block; in EmitNonLoop() local 291 auto block = function.getBlock(blockId); in EmitNonLoop() [all …]
|
/external/connectedappssdk/tests/robotests/src/test/java/com/google/android/enterprise/connectedapps/internal/ |
D | ParcelCallSenderTest.java | 42 void prepareCall(long callId, int blockId, int totalBytes, byte[] bytes) in prepareCall() argument 48 parcelCallReceiver.prepareCall(callId, blockId, totalBytes, bytes); in prepareCall() 52 byte[] call(long callId, int blockId, byte[] bytes) throws RemoteException { in call() argument 58 callId, parcelCallReceiver.getPreparedCall(callId, blockId, bytes)); in call() 62 byte[] fetchResponse(long callId, int blockId) throws RemoteException { in fetchResponse() argument 67 return parcelCallReceiver.getPreparedResponse(callId, blockId); in fetchResponse()
|
/external/connectedappssdk/sdk/src/main/aidl/com/google/android/enterprise/connectedapps/ |
D | ICrossProfileCallback.aidl | 19 void prepareResult(long callId, int blockId, int numBytes, in byte[] params); in prepareResult() argument 20 void onResult(long callId, int blockId, int methodIdentifier, in byte[] params); in onResult() argument 21 void onException(long callId, int blockId, in byte[] params); in onException() argument
|
D | ICrossProfileService.aidl | 30 void prepareCall(long callId, int blockId, int numBytes, in byte[] params); in prepareCall() argument 37 …byte[] call(long callId, int blockId, long crossProfileTypeIdentifier, int methodIdentifier, in by… in call() argument 40 byte[] fetchResponse(long callId, int blockId); in fetchResponse() argument
|
/external/connectedappssdk/tests/robotests/src/test/java/com/google/android/enterprise/connectedapps/ |
D | TestICrossProfileCallback.java | 37 public void prepareResult(long callId, int blockId, int numBytes, byte[] params) in prepareResult() argument 41 public void onResult(long callId, int blockId, int methodIdentifier, byte[] params) in onResult() argument 51 public void onException(long callId, int blockId, byte[] params) throws RemoteException { in onException() argument
|
D | TestStringCrossProfileCallback.java | 30 public void prepareResult(long callId, int blockId, int numBytes, byte[] params) {} in prepareResult() argument 33 public void onResult(long callId, int blockId, int methodIdentifier, byte[] paramsBytes) in onResult() argument 44 public void onException(long callId, int blockId, byte[] paramsBytes) throws RemoteException { in onException() argument
|
D | TestService.java | 65 public void prepareCall(long callId, int blockId, int numBytes, byte[] paramsBytes) {} in prepareCall() argument 70 int blockId, in call() argument 99 public byte[] fetchResponse(long callId, int blockId) { in fetchResponse() argument
|
/external/swiftshader/src/OpenGL/compiler/ |
D | OutputASM.h | 74 …Uniform(const TType& type, const std::string &name, int registerIndex, int blockId, const BlockMem… 76 int blockId; member 85 TLayoutBlockStorage layout, bool isRowMajorLayout, int registerIndex, int blockId); 96 int blockId; member 317 …pe &type, const TString &name, int registerIndex, bool samplersOnly, int blockId = -1, BlockLayout…
|
D | OutputASM.cpp | 278 …Uniform::Uniform(const TType& type, const std::string &name, int registerIndex, int blockId, const… in Uniform() argument 279 ShaderVariable(type, name, registerIndex), blockId(blockId), blockInfo(blockMemberInfo) in Uniform() 284 … TLayoutBlockStorage layout, bool isRowMajorLayout, int registerIndex, int blockId) : in UniformBlock() argument 286 isRowMajorLayout(isRowMajorLayout), registerIndex(registerIndex), blockId(blockId) in UniformBlock() 2320 return it->blockId; in getBlockId() 2334 int blockId = getBlockId(arg); in getArgumentInfo() local 2336 if(blockId != -1) in getArgumentInfo() 2339 for(int i = 0; i < blockId; ++i) in getArgumentInfo() 2345 const BlockDefinitionIndexMap& blockDefinition = blockDefinitions[blockId]; in getArgumentInfo() 3705 …pe &type, const TString &name, int registerIndex, bool samplersOnly, int blockId, BlockLayoutEncod… in declareUniform() argument [all …]
|
/external/connectedappssdk/sdk/src/main/java/com/google/android/enterprise/connectedapps/ |
D | CrossProfileSender.java | 152 public void prepareResult(long callId, int blockId, int numBytes, byte[] params) { in prepareResult() argument 153 parcelCallReceiver.prepareCall(callId, blockId, numBytes, params); in prepareResult() 157 public void onResult(long callId, int blockId, int methodIdentifier, byte[] paramsBytes) { in onResult() argument 166 Parcel parcel = parcelCallReceiver.getPreparedCall(callId, blockId, paramsBytes); in onResult() 175 public void onException(long callId, int blockId, byte[] paramsBytes) { in onException() argument 176 Parcel parcel = parcelCallReceiver.getPreparedCall(callId, blockId, paramsBytes); in onException()
|
/external/v4l2_codec2/components/ |
D | V4L2Decoder.cpp | 599 uint32_t blockId; in onVideoFrameReady() local 600 std::tie(frame, blockId) = std::move(*frameWithBlockId); in onVideoFrameReady() 604 auto iter = mBlockIdToV4L2Id.find(blockId); in onVideoFrameReady() 612 mBlockIdToV4L2Id.emplace(blockId, v4l2BufferId); in onVideoFrameReady() 621 ALOGE("V4L2 buffer not available. blockId=%u", blockId); in onVideoFrameReady() 627 ALOGV("QBUF to output queue, blockId=%u, V4L2Id=%u", blockId, v4l2Id); in onVideoFrameReady() 630 ALOGE("%s(): Failed to QBUF to output queue, blockId=%u, V4L2Id=%u", __func__, blockId, in onVideoFrameReady()
|
/external/llvm-project/mlir/lib/Analysis/ |
D | NumberOfExecutions.cpp | 192 unsigned blockId = 0; in printBlockExecutions() local 195 llvm::errs() << "Block: " << blockId++ << "\n"; in printBlockExecutions()
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/opt/ |
D | merge_return_pass.cpp | 127 auto blockId = block->GetLabelInst()->result_id(); in ProcessStructured() local 128 if (blockId == CurrentState().CurrentMergeId()) { in ProcessStructured() 147 auto blockId = block->id(); in ProcessStructured() local 148 if (blockId == CurrentState().CurrentMergeId()) { in ProcessStructured()
|
/external/deqp-deps/SPIRV-Tools/source/opt/ |
D | merge_return_pass.cpp | 127 auto blockId = block->GetLabelInst()->result_id(); in ProcessStructured() local 128 if (blockId == CurrentState().CurrentMergeId()) { in ProcessStructured() 147 auto blockId = block->id(); in ProcessStructured() local 148 if (blockId == CurrentState().CurrentMergeId()) { in ProcessStructured()
|
/external/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | merge_return_pass.cpp | 127 auto blockId = block->GetLabelInst()->result_id(); in ProcessStructured() local 128 if (blockId == CurrentState().CurrentMergeId()) { in ProcessStructured() 147 auto blockId = block->id(); in ProcessStructured() local 148 if (blockId == CurrentState().CurrentMergeId()) { in ProcessStructured()
|
/external/swiftshader/src/OpenGL/libGLESv2/ |
D | Program.cpp | 489 for(unsigned int blockId = 0; blockId < MAX_UNIFORM_BUFFER_BINDINGS; blockId++) in resetUniformBlockBindings() local 491 uniformBlockBindings[blockId] = 0; in resetUniformBlockBindings() 1718 if(uniform.blockId >= 0) in linkUniforms() 1721 ASSERT(static_cast<size_t>(uniform.blockId) < activeUniformBlocks.size()); in linkUniforms() 1722 const std::string &uniformBlockName = activeUniformBlocks[uniform.blockId].name; in linkUniforms() 1726 if(activeUniformBlocks[uniform.blockId].dataSize > MAX_UNIFORM_BLOCK_SIZE) in linkUniforms()
|
/external/angle/src/compiler/translator/ |
D | BuildSPIRV.cpp | 1373 for (spirv::IdRef &blockId : conditional.blockIds) in startConditional() 1375 blockId = getNewId({}); in startConditional() 1391 const spirv::IdRef blockId = conditional.blockIds[conditional.nextBlockToWrite++]; in nextConditionalBlock() local 1398 mSpirvCurrentFunctionBlocks.back().labelId = blockId; in nextConditionalBlock()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/ |
D | UCharacter.java | 2627 for (int blockId = 0; blockId < COUNT; ++blockId) { 2628 if (BLOCKS_[blockId] == null) { 2630 "UnicodeBlock.BLOCKS_[" + blockId + "] not initialized");
|
/external/icu/android_icu4j/src/main/java/android/icu/lang/ |
D | UCharacter.java | 2262 for (int blockId = 0; blockId < COUNT; ++blockId) { 2263 if (BLOCKS_[blockId] == null) { 2265 "UnicodeBlock.BLOCKS_[" + blockId + "] not initialized");
|
/external/skqp/src/sksl/ |
D | SkSLCompiler.cpp | 384 void Compiler::scanCFG(CFG* cfg, BlockId blockId, std::set<BlockId>* workList) { in scanCFG() argument 385 BasicBlock& block = cfg->fBlocks[blockId]; in scanCFG() 395 if (exitId == blockId) { in scanCFG()
|