HomeSort by relevance Sort by last modified time
    Searched defs:Pos (Results 226 - 250 of 284) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/MC/
MCInstrDesc.h 191 unsigned Pos = 16 + Constraint * 4;
192 return (int)(OpInfo[OpNum].Constraints >> Pos) & 0xf;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
miniport.h 91 Pos,
  /device/linaro/bootloader/edk2/BaseTools/Source/C/TianoCompress/
TianoCompress.c 1051 UINT32 Pos;
1085 Pos = 0;
1088 Flags = mBuf[Pos++];
1094 EncodeC (mBuf[Pos++] + (1U << UINT8_BIT));
1095 Index3 = mBuf[Pos++];
1098 Index3 += mBuf[Pos++];
1103 EncodeC (mBuf[Pos++]);
1120 IN UINT32 Pos
1131 Pos - The 'Position' field of a Pointer
1159 mBuf[mOutputPos++] = (UINT8) (Pos >> 24);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/DisplayEngineDxe/
FormDisplay.c 1033 LIST_ENTRY *Pos;
1038 Pos = *CurrentPosition;
1040 if (Pos == &gMenuOption) {
1044 PreMenuOption = MENU_OPTION_FROM_LINK (Pos);
1047 NextMenuOption = MENU_OPTION_FROM_LINK (Pos);
1079 if ((GoUp ? Pos->BackLink : Pos->ForwardLink) == &gMenuOption) {
1084 Pos = (GoUp ? Pos->BackLink : Pos->ForwardLink);
    [all...]
  /external/capstone/arch/ARM/
ARMDisassembler.c 98 unsigned Pos;
101 for (Pos = NumTZ+1; Pos <= 3; ++Pos) {
102 bool T = ((Mask >> Pos) & 1) == (int)CondBit0;
    [all...]
  /external/clang/lib/AST/
DeclBase.cpp     [all...]
  /external/clang/lib/Basic/
SourceManager.cpp     [all...]
  /external/clang/lib/CodeGen/
TargetInfo.cpp     [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp     [all...]
  /external/clang/lib/Lex/
Lexer.cpp     [all...]
  /external/deqp/external/vulkancts/modules/vulkan/synchronization/
vktSynchronizationWin32KeyedMutexTests.cpp 769 " float4 Pos : POSITION;\n"
774 " float4 Pos : SV_POSITION;\n"
780 " output.Pos = input.Pos;\n"
801 float Pos[3];
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp 590 MachineBasicBlock::iterator Pos = CopyUseMI;
591 EntryMBB->insertAfter(Pos, NewMI);
    [all...]
  /external/llvm/lib/Support/
CommandLine.cpp 493 static bool CommaSeparateAndAddOccurrence(Option *Handler, unsigned pos,
500 StringRef::size_type Pos = Val.find(',');
502 while (Pos != StringRef::npos) {
504 if (Handler->addOccurrence(pos, ArgName, Val.substr(0, Pos), MultiArg))
507 Val = Val.substr(Pos + 1);
508 Value.substr(Pos + 1); // Increment the original value pointer as well.
510 Pos = Val.find(',');
516 return Handler->addOccurrence(pos, ArgName, Value, MultiArg);
    [all...]
  /external/llvm/lib/Target/ARM/
ARMFrameLowering.cpp 549 MachineBasicBlock::iterator Pos = std::next(GPRCS1Push);
574 BuildMI(MBB, Pos, dl, TII.get(TargetOpcode::CFI_INSTRUCTION))
583 MachineBasicBlock::iterator Pos = std::next(GPRCS2Push);
598 BuildMI(MBB, Pos, dl, TII.get(TargetOpcode::CFI_INSTRUCTION))
610 MachineBasicBlock::iterator Pos = std::next(LastPush);
620 BuildMI(MBB, Pos, dl, TII.get(TargetOpcode::CFI_INSTRUCTION))
    [all...]
  /external/llvm/lib/Target/Hexagon/
RDFGraph.h 641 Iterator &up() { Pos = DS.nextUp(Pos); return *this; }
642 Iterator &down() { Pos = DS.nextDown(Pos); return *this; }
644 assert(Pos >= 1);
645 return DS.Stack[Pos-1];
648 assert(Pos >= 1);
649 return &DS.Stack[Pos-1];
651 bool operator==(const Iterator &It) const { return Pos == It.Pos; }
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
DataFlowSanitizer.cpp 260 Value *getShadowAddress(Value *Addr, Instruction *Pos);
317 Value *getArgTLS(unsigned Index, Instruction *Pos);
321 Value *combineShadows(Value *V1, Value *V2, Instruction *Pos);
324 Instruction *Pos);
326 Instruction *Pos);
525 size_t Pos = Asm.find(SearchStr);
526 if (Pos != std::string::npos) {
527 Asm.replace(Pos, SearchStr.size(),
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/
ELFObjectWriter.cpp 218 size_t Pos = AliasName.find('@');
219 if (Pos == StringRef::npos)
227 StringRef Rest = AliasName.substr(Pos);
629 size_t Pos = Name.find("@@@");
630 if (Pos != StringRef::npos) {
631 Buf += Name.substr(0, Pos);
633 Buf += Name.substr(Pos + Skip);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/MCParser/
AsmParser.cpp     [all...]
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
CommandLine.cpp 513 static bool CommaSeparateAndAddOccurrence(Option *Handler, unsigned pos,
520 StringRef::size_type Pos = Val.find(',');
522 while (Pos != StringRef::npos) {
524 if (Handler->addOccurrence(pos, ArgName, Val.substr(0, Pos), MultiArg))
527 Val = Val.substr(Pos + 1);
529 Pos = Val.find(',');
535 return Handler->addOccurrence(pos, ArgName, Value, MultiArg);
    [all...]
Host.cpp     [all...]
  /external/swiftshader/third_party/subzero/src/
IceCfg.cpp     [all...]
  /frameworks/compile/slang/
slang_rs_reflection.cpp     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/StaticAnalyzer/Core/BugReporter/
PathDiagnostic.h 436 PathDiagnosticLocation Pos;
438 PathDiagnosticSpotPiece(const PathDiagnosticLocation &pos,
442 : PathDiagnosticPiece(s, k), Pos(pos) {
443 assert(Pos.isValid() && Pos.asLocation().isValid() &&
445 if (addPosRange && Pos.hasRange()) addRange(Pos.asRange());
448 PathDiagnosticLocation getLocation() const override { return Pos; }
449 void flattenLocations() override { Pos.flatten();
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/StaticAnalyzer/Core/BugReporter/
PathDiagnostic.h 436 PathDiagnosticLocation Pos;
438 PathDiagnosticSpotPiece(const PathDiagnosticLocation &pos,
442 : PathDiagnosticPiece(s, k), Pos(pos) {
443 assert(Pos.isValid() && Pos.asLocation().isValid() &&
445 if (addPosRange && Pos.hasRange()) addRange(Pos.asRange());
448 PathDiagnosticLocation getLocation() const override { return Pos; }
449 void flattenLocations() override { Pos.flatten();
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/StaticAnalyzer/Core/BugReporter/
PathDiagnostic.h 436 PathDiagnosticLocation Pos;
438 PathDiagnosticSpotPiece(const PathDiagnosticLocation &pos,
442 : PathDiagnosticPiece(s, k), Pos(pos) {
443 assert(Pos.isValid() && Pos.asLocation().isValid() &&
445 if (addPosRange && Pos.hasRange()) addRange(Pos.asRange());
448 PathDiagnosticLocation getLocation() const override { return Pos; }
449 void flattenLocations() override { Pos.flatten();
    [all...]

Completed in 942 milliseconds

1 2 3 4 5 6 7 8 91011>>