HomeSort by relevance Sort by last modified time
    Searched refs:getOpCode (Results 1 - 24 of 24) sorted by null

  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVBasicBlock.cpp 83 assert(Scope && Scope->getOpCode() == OpFunction && "Invalid scope");
SPIRVDecorate.cpp 194 if (A->getOpCode() < B->getOpCode())
196 if (A->getOpCode() > B->getOpCode())
223 if (A.getOpCode() != B.getOpCode())
SPIRVInstruction.cpp 92 assert(Scope && Scope->getOpCode() == OpLabel && "Invalid scope");
122 if (I->getOpCode() == OpFunction)
207 auto OC = Inst->getOpCode();
219 assert(Inst->getOpCode() == OpSpecConstantOp &&
SPIRVStream.cpp 96 assert(TheScope && (TheScope->getOpCode() == OpFunction ||
97 TheScope->getOpCode() == OpLabel));
SPIRVEntry.cpp 464 assert((!Found || Entry->getOpCode() == OpForward) &&
510 assert(get<SPIRVEntry>(FileName)->getOpCode() == OpString);
519 assert(get<SPIRVEntry>(Target)->getOpCode() == OpTypeStruct);
SPIRVModule.cpp 394 if (D->getOpCode() == OpMemberDecorate) {
484 auto OC = E->getOpCode();
522 if (Mapped->getOpCode() == OpForward) {
    [all...]
SPIRVType.h 735 bool Is = Ty->getOpCode() == T2::OC;
SPIRVEntry.h 248 Op getOpCode() const { return OpCode;}
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/SPIRV/
InReadableOrder.cpp 83 if (mergeInst->getOpCode() == spv::OpLoopMerge) {
spvIR.h 117 Op getOpCode() const { return opCode; }
186 switch (nextToLast->getOpCode()) {
198 switch (instructions.back()->getOpCode()) {
329 assert(idToInstruction[typeId]->getOpCode() == spv::OpTypePointer);
SpvBuilder.h 116 Op getOpCode(Id id) const { return module.getInstruction(id)->getOpCode(); }
117 Op getTypeClass(Id typeId) const { return getOpCode(typeId); }
149 bool isConstant(Id resultId) const { return isConstantOpCode(getOpCode(resultId)); }
150 bool isConstantScalar(Id resultId) const { return getOpCode(resultId) == OpConstant; }
151 bool isSpecConstant(Id resultId) const { return isSpecConstantOpCode(getOpCode(resultId)); }
SpvBuilder.cpp 484 Op typeClass = instr->getOpCode();
510 switch (instr->getOpCode())
539 Op typeClass = instr->getOpCode();
565 Op typeClass = instr->getOpCode();
596 if (constant->getOpCode() == opcode &&
611 if (constant->getOpCode() == opcode &&
672 if (constant->getTypeId() == typeId && constant->getOpCode() == opcode)
    [all...]
disassemble.cpp 82 Op getOpCode(int id) const { return idInstruction[id] ? (Op)(stream[idInstruction[id]] & OpCodeMask) : OpNop; }
  /prebuilts/ndk/r13/sources/third_party/vulkan/glslang/SPIRV/
InReadableOrder.cpp 83 if (mergeInst->getOpCode() == spv::OpLoopMerge) {
spvIR.h 117 Op getOpCode() const { return opCode; }
186 switch (nextToLast->getOpCode()) {
198 switch (instructions.back()->getOpCode()) {
329 assert(idToInstruction[typeId]->getOpCode() == spv::OpTypePointer);
SpvBuilder.h 116 Op getOpCode(Id id) const { return module.getInstruction(id)->getOpCode(); }
117 Op getTypeClass(Id typeId) const { return getOpCode(typeId); }
149 bool isConstant(Id resultId) const { return isConstantOpCode(getOpCode(resultId)); }
150 bool isConstantScalar(Id resultId) const { return getOpCode(resultId) == OpConstant; }
151 bool isSpecConstant(Id resultId) const { return isSpecConstantOpCode(getOpCode(resultId)); }
SpvBuilder.cpp 484 Op typeClass = instr->getOpCode();
510 switch (instr->getOpCode())
539 Op typeClass = instr->getOpCode();
565 Op typeClass = instr->getOpCode();
596 if (constant->getOpCode() == opcode &&
611 if (constant->getOpCode() == opcode &&
672 if (constant->getTypeId() == typeId && constant->getOpCode() == opcode)
    [all...]
disassemble.cpp 82 Op getOpCode(int id) const { return idInstruction[id] ? (Op)(stream[idInstruction[id]] & OpCodeMask) : OpNop; }
  /external/nanohttpd/websocket/src/main/java/fi/iki/elonen/
NanoWSD.java 191 if (frame.getOpCode() != OpCode.Continuation) {
196 this.continuousOpCode = frame.getOpCode();
218 if (frame.getOpCode() == OpCode.Close) {
220 } else if (frame.getOpCode() == OpCode.Ping) {
222 } else if (frame.getOpCode() == OpCode.Pong) {
224 } else if (!frame.isFin() || frame.getOpCode() == OpCode.Continuation) {
228 } else if (frame.getOpCode() == OpCode.Text || frame.getOpCode() == OpCode.Binary) {
368 assert wrap.getOpCode() == OpCode.Close;
449 if (frame.getOpCode() == OpCode.Close)
    [all...]
  /frameworks/rs/rsov/compiler/spirit/
module.cpp 356 switch (inst->getOpCode()) {
534 if (inst->getOpCode() == OpName) {
548 if (inst->getOpCode() == OpName) {
595 if (inst->getOpCode() == T::mOpCode) {
923 if (inst->getOpCode() == OpBranch ||
924 inst->getOpCode() == OpBranchConditional ||
925 inst->getOpCode() == OpSwitch || inst->getOpCode() == OpKill ||
926 inst->getOpCode() == OpReturn || inst->getOpCode() == OpReturnValue |
    [all...]
instructions.h 145 uint16_t getOpCode() const { return mCodeAndCount.mOpCode; }
  /external/spirv-llvm/lib/SPIRV/
SPIRVReader.cpp 685 switch(T->getOpCode()) {
749 getOCLOpaqueTypeAddrSpace(T->getOpCode())));
756 getOCLOpaqueTypeAddrSpace(T->getOpCode())));
759 auto OC = T->getOpCode();
772 switch(T->getOpCode()) {
841 if (isOpaqueGenericTypeOpCode(T->getOpCode())) {
842 return OCLOpaqueTypeOpCodeMap::rmap(T->getOpCode());
868 auto OC = BI->getOpCode();
877 auto OC = cast<Instruction>(V)->getOpcode();
934 switch (BC->getOpCode()) {
    [all...]
SPIRVUtil.cpp     [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/
Metrics.java 679 logHistogram(context, histogram, getOpCode(operationType, providerType));
687 logHistogram(context, histogram, getOpCode(operationType, PROVIDER_INTRA));
    [all...]

Completed in 707 milliseconds