HomeSort by relevance Sort by last modified time
    Searched refs:Access (Results 101 - 125 of 239) sorted by null

1 2 3 45 6 7 8 910

  /external/llvm/lib/DebugInfo/PDB/
PDBExtras.cpp 253 const PDB_MemberAccess &Access) {
254 switch (Access) {
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
LoopIdiomRecognize.cpp 365 /// mayLoopAccessLocation - Return true if the specified loop might access the
366 /// specified pointer location, which is a loop-strided access. The 'Access'
367 /// argument specifies what the verboten forms of access are (read or write).
368 static bool mayLoopAccessLocation(Value *Ptr,AliasAnalysis::ModRefResult Access,
372 // Get the location that may be stored across the loop. Since the access is
377 // If the loop iterates a fixed number of times, we can refine the access size
392 (AA.getModRefInfo(I, StoreLoc) & Access))
  /external/v8/src/
utils.h 513 // a local scope using an instance of Access. Attempts to re-reserve
521 template <typename S> friend class Access;
527 // Locally scoped access to a static resource.
529 class Access {
531 explicit Access(StaticResource<T>* resource)
538 ~Access() {
    [all...]
assembler.cc 1755 ConstantPoolEntry::Access access = local
    [all...]
  /frameworks/native/libs/math/tests/
vec_test.cpp 85 TEST_F(VecTest, Access) {
quat_test.cpp 103 TEST_F(QuatTest, Access) {
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Sdio/Dxe/SDMediaDeviceDxe/
MMCSDTransfer.c 1011 SwitchArgument.Access = WriteByte_Mode;
    [all...]
  /external/clang/include/clang/AST/
DeclCXX.h 93 /// \brief Represents an access specifier followed by colon ':'.
96 /// of an access specifier followed by a colon in the list of member
99 /// Note that they do not represent other uses of access specifiers,
102 /// "access declarations" (C++98 11.3 [class.access.dcl]).
116 /// \brief The location of the access specifier.
118 /// \brief Sets the location of the access specifier.
121 /// \brief The location of the colon following the access specifier.
148 /// level of access (public, protected, private) is used for the
161 /// specifier, including the "virtual" (if present) and access
    [all...]
  /external/clang/include/clang/Serialization/
ASTBitCodes.h 800 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
    [all...]
  /external/clang/lib/AST/
TypeLoc.cpp 337 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
NSAPI.cpp 449 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
clusapi.h 349 #define CLCTL_EXTERNAL_CODE(Function,Access,Modify) (((Access) << CLUSCTL_ACCESS_SHIFT) | ((CLCTL_CLUSTER_BASE + Function) << CLUSCTL_FUNCTION_SHIFT) | ((Modify) << CLCTL_MODIFY_SHIFT))
350 #define CLCTL_INTERNAL_CODE(Function,Access,Modify) (((Access) << CLUSCTL_ACCESS_SHIFT) | CLCTL_INTERNAL_MASK | ((CLCTL_CLUSTER_BASE + Function) << CLUSCTL_FUNCTION_SHIFT) | ((Modify) << CLCTL_MODIFY_SHIFT))
    [all...]
ksproxy.h 561 KSDDKAPI HRESULT WINAPI KsOpenDefaultDevice(REFGUID Category,ACCESS_MASK Access,PHANDLE DeviceHandle);
  /external/libusb/libusb/os/
windows_winusb.h 204 struct libusb_device *parent_dev; // access to parent is required for usermode ops
390 #define CTL_CODE(DeviceType, Function, Method, Access) \
391 (((DeviceType) << 16) | ((Access) << 14) | ((Function) << 2) | (Method))
  /external/llvm/lib/DebugInfo/CodeView/
TypeDumper.cpp 511 void CVTypeDumper::printMemberAttributes(MemberAccess Access, MethodKind Kind,
513 W->printEnum("AccessSpecifier", uint8_t(Access),
  /external/v8/src/arm/
assembler-arm.h     [all...]
  /external/clang/lib/Analysis/
PrintfFormatString.cpp 623 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
  /external/clang/lib/CodeGen/
CGDebugInfo.h 67 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
CodeGenTypes.cpp 468 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
  /external/compiler-rt/lib/tsan/tests/rtl/
tsan_test_util_posix.cc 440 void ScopedThread::Access(void *addr, bool is_write,
  /external/llvm/include/llvm/Support/
Dwarf.h 616 const char *AccessibilityString(unsigned Access);
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
Dwarf.h 683 const char *AccessibilityString(unsigned Access);
  /external/compiler-rt/lib/asan/
asan_report.cc 72 const char *Access() { return Blue(); }
386 // current memory access, indicate it in the log.
412 // FIXME: we may want to also print the size of the access here,
414 str.append("%s <== Memory access at offset %zd %s this variable%s\n",
459 // Try to fetch precise stack frame for this access.
460 AsanThread::StackFrameAccess access; local
461 if (!t->GetStackFrameAccessByAddr(addr, &access)) {
465 Printf(" at offset %zu in frame%s\n", access.offset, d.EndLocation());
478 access.frame_pc = *reinterpret_cast<uptr *>(access.frame_pc)
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopIdiomRecognize.cpp 695 /// mayLoopAccessLocation - Return true if the specified loop might access the
696 /// specified pointer location, which is a loop-strided access. The 'Access'
697 /// argument specifies what the verboten forms of access are (read or write).
699 mayLoopAccessLocation(Value *Ptr, ModRefInfo Access, Loop *L,
703 // Get the location that may be stored across the loop. Since the access is
708 // If the loop iterates a fixed number of times, we can refine the access size
723 (AA.getModRefInfo(&I, StoreLoc) & Access))
    [all...]
  /external/llvm/lib/Transforms/Utils/
MemorySSA.cpp 329 // We create an access to represent "live on entry", for things like
340 // could just look up the memory access for every possible instruction in the
422 // Now optimize the MemoryUse's defining access to point to the nearest
467 assert(!isa<PHINode>(I) && "Cannot create a defined access for a PHI");
471 "Tried to create a memory access for a non-memory touching instruction");
499 "New and old access must be in the same block");
510 "New and old access must be in the same block");
538 "Trying to create a memory access with a non-memory instruction");
613 "Trying to remove memory access that still has uses");
654 // Re-point the uses at our defining access
    [all...]

Completed in 1547 milliseconds

1 2 3 45 6 7 8 910