/external/deqp-deps/SPIRV-Tools/utils/vscode/src/lsp/span/ |
D | span.go | 115 func (s Span) HasOffset() bool { return s.v.Start.hasOffset() } 125 func (p Point) HasOffset() bool { return p.v.hasOffset() } 142 if !p.v.hasOffset() { 149 func (p point) hasOffset() bool { return p.Offset >= 0 } func 150 func (p point) isValid() bool { return p.hasPosition() || p.hasOffset() } 265 if withOffset && (!s.HasOffset() || (s.v.End.hasPosition() && !s.v.End.hasOffset())) {
|
/external/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/span/ |
D | span.go | 115 func (s Span) HasOffset() bool { return s.v.Start.hasOffset() } 125 func (p Point) HasOffset() bool { return p.v.hasOffset() } 142 if !p.v.hasOffset() { 149 func (p point) hasOffset() bool { return p.Offset >= 0 } func 150 func (p point) isValid() bool { return p.hasPosition() || p.hasOffset() } 265 if withOffset && (!s.HasOffset() || (s.v.End.hasPosition() && !s.v.End.hasOffset())) {
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/utils/vscode/src/lsp/span/ |
D | span.go | 115 func (s Span) HasOffset() bool { return s.v.Start.hasOffset() } 125 func (p Point) HasOffset() bool { return p.v.hasOffset() } 142 if !p.v.hasOffset() { 149 func (p point) hasOffset() bool { return p.Offset >= 0 } func 150 func (p point) isValid() bool { return p.hasPosition() || p.hasOffset() } 265 if withOffset && (!s.HasOffset() || (s.v.End.hasPosition() && !s.v.End.hasOffset())) {
|
/external/swiftshader/third_party/subzero/src/ |
D | IceOperand.cpp | 51 BothHaveKnownOffsets = A.OffsetExpr[i]->hasOffset(); in operator ==() 57 BothHaveKnownOffsets = B.OffsetExpr[i]->hasOffset(); in operator ==() 79 if (RelocOffsetA->hasOffset() && RelocOffsetB->hasOffset()) { in operator ==()
|
/external/llvm-project/llvm/include/llvm/MC/MCParser/ |
D | MCTargetAsmParser.h | 85 bool hasOffset() const { return !OffsetName.empty(); } in hasOffset() function 88 bool emitImm() const { return !(hasRegs() || hasOffset()); } in emitImm()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/MCParser/ |
D | MCTargetAsmParser.h | 86 bool hasOffset() const { return !OffsetName.empty(); } in hasOffset() function 89 bool emitImm() const { return !(hasRegs() || hasOffset()); } in emitImm()
|
/external/llvm-project/mlir/lib/Dialect/SPIRV/ |
D | LayoutUtils.cpp | 175 return structType.hasOffset() || !structType.getNumElements(); in isLegalType()
|
D | SPIRVDialect.cpp | 795 if (type.hasOffset() || !decorations.empty()) { in print() 797 if (type.hasOffset()) { in print()
|
/external/clang/lib/Frontend/ |
D | CacheTokens.cpp | 173 bool hasOffset() const { return valid; } in hasOffset() function in __anon736feb7a0111::OffsetOpt 277 if (!E.second.hasOffset()) { in EmitToken()
|
/external/deqp-deps/SPIRV-Tools/source/val/ |
D | validate_decorations.cpp | 132 std::vector<bool> hasOffset(getStructMembers(struct_id, vstate).size(), in isMissingOffsetInStruct() local 138 hasOffset[decoration.struct_member_index()] = true; in isMissingOffsetInStruct() 150 !std::all_of(hasOffset.begin(), hasOffset.end(), in isMissingOffsetInStruct()
|
/external/swiftshader/third_party/SPIRV-Tools/source/val/ |
D | validate_decorations.cpp | 132 std::vector<bool> hasOffset(getStructMembers(struct_id, vstate).size(), in isMissingOffsetInStruct() local 138 hasOffset[decoration.struct_member_index()] = true; in isMissingOffsetInStruct() 150 !std::all_of(hasOffset.begin(), hasOffset.end(), in isMissingOffsetInStruct()
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/val/ |
D | validate_decorations.cpp | 132 std::vector<bool> hasOffset(getStructMembers(struct_id, vstate).size(), in isMissingOffsetInStruct() local 138 hasOffset[decoration.struct_member_index()] = true; in isMissingOffsetInStruct() 150 !std::all_of(hasOffset.begin(), hasOffset.end(), in isMissingOffsetInStruct()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGAddressAnalysis.cpp | 275 if (LN->hasOffset()) in match()
|
D | SelectionDAGDumper.cpp | 749 if (LN->hasOffset()) in print_details()
|
/external/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGAddressAnalysis.cpp | 286 if (LN->hasOffset()) in match()
|
D | SelectionDAGDumper.cpp | 804 if (LN->hasOffset()) in print_details()
|
/external/deqp-deps/glslang/glslang/Include/ |
D | Types.h | 912 hasOffset() || in hasUniformLayout() 962 bool hasOffset() const { return false; } in hasOffset() function 981 bool hasOffset() const in hasOffset() function 2066 if (qualifier.hasOffset()) { in getCompleteString()
|
/external/llvm-project/mlir/include/mlir/Dialect/SPIRV/ |
D | SPIRVTypes.h | 372 bool hasOffset() const;
|
/external/angle/third_party/vulkan-deps/glslang/src/glslang/Include/ |
D | Types.h | 981 hasOffset() || in hasUniformLayout() 1031 bool hasOffset() const { return false; } in hasOffset() function 1050 bool hasOffset() const in hasOffset() function 2183 if (qualifier.hasOffset()) { in getCompleteString()
|
/external/llvm-project/mlir/lib/Dialect/SPIRV/Serialization/ |
D | Serializer.cpp | 1220 bool hasOffset = structType.hasOffset(); in prepareBasicType() local 1229 if (hasOffset) { in prepareBasicType()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | SelectionDAGNodes.h | 1773 bool hasOffset() const { return Offset >= 0; } 1775 assert(hasOffset() && "offset is unknown"); 1779 assert(hasOffset() && "offset is unknown");
|
/external/llvm-project/llvm/include/llvm/CodeGen/ |
D | SelectionDAGNodes.h | 1735 bool hasOffset() const { return Offset >= 0; } 1737 assert(hasOffset() && "offset is unknown"); 1741 assert(hasOffset() && "offset is unknown");
|
/external/deqp-deps/glslang/glslang/MachineIndependent/ |
D | ParseHelper.cpp | 5666 if (src.hasOffset()) in mergeObjectLayoutQualifiers() 5761 if (qualifier.hasOffset() && !type.isAtomic()) in layoutObjectCheck() 5962 if (qualifier.hasOffset()) { in layoutTypeCheck() 6147 if (qualifier.hasOffset() || qualifier.hasAlign()) in layoutQualifierCheck() 6236 if (qualifier.hasOffset()) in fixOffset() 6606 if (publicType.qualifier.hasOffset()) in declareTypeDefaults() 7654 if (memberQualifier.hasOffset()) { in declareBlock() 7763 if (memberQualifier.hasAlign() || memberQualifier.hasOffset()) { in declareBlock() 8136 if (memberQualifier.hasOffset()) { in fixBlockUniformOffsets() 8599 if (qualifier.hasOffset() || in updateStandaloneQualifierDefaults()
|
D | reflection.cpp | 180 if (memberList[m].type->getQualifier().hasOffset()) in getOffsets()
|
/external/angle/third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/ |
D | ParseHelper.cpp | 5951 if (src.hasOffset()) in mergeObjectLayoutQualifiers() 6049 if (qualifier.hasOffset() && !type.isAtomic()) in layoutObjectCheck() 6253 if (qualifier.hasOffset()) { in layoutTypeCheck() 6438 if (qualifier.hasOffset() || qualifier.hasAlign()) in layoutQualifierCheck() 6527 if (qualifier.hasOffset()) in fixOffset() 6962 if (publicType.qualifier.hasOffset()) in declareTypeDefaults() 8109 if (memberQualifier.hasOffset()) { in declareBlock() 8218 if (memberQualifier.hasAlign() || memberQualifier.hasOffset()) { in declareBlock() 8602 if (memberQualifier.hasOffset()) { in fixBlockUniformOffsets() 9067 if (qualifier.hasOffset() || in updateStandaloneQualifierDefaults()
|