HomeSort by: relevance | last modified time | path
    Searched defs:Access (Results 1 - 20 of 20) sorted by relevancy

  /src/sys/external/bsd/acpica/dist/executer/
exprep.c 84 * DESCRIPTION: Generate an optimal access width for fields defined with the
90 * of this access width must be deferred until the region length has
134 * Iterative search for the maximum access width that is both aligned
142 * 1) Round end offset up to next access boundary and make sure that
144 * 2) When the Access width is greater than the FieldByteLength, we
168 /* Single access is optimal */
181 * try the next wider access on next iteration
206 * previous access
209 "Backing off to previous optimal access width of %u\n",
217 * just use max access widt
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
DependentDiagnostic.h 12 // At the moment, the only consumer of this interface is access
38 enum AccessNonce { Access = 0 };
53 DD->AccessData.Access = AS;
61 return Access;
65 assert(getKind() == Access);
70 assert(getKind() == Access);
71 return AccessSpecifier(AccessData.Access);
75 assert(getKind() == Access);
80 assert(getKind() == Access);
85 assert(getKind() == Access);
    [all...]
CXXInheritance.h 72 /// The access along this inheritance path. This is only
74 /// used to indicate a path which permits no legal access.
75 AccessSpecifier Access = AS_public;
84 Access = AS_public;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
MinimalTypeDumper.cpp 141 static std::string memberAccess(MemberAccess Access) {
142 switch (Access) {
148 return formatUnknownEnum(Access);
185 std::string Access = memberAccess(Attrs.getAccess());
187 if (!Access.empty())
188 Opts.push_back(Access);
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_report.cc 42 const char *Access() { return Blue(); }
162 Printf("%s", d.Access());
171 Printf(" %s access of %s at %p by %s",
  /src/external/apache2/llvm/dist/llvm/lib/Target/M68k/
M68kCollapseMOVEMPass.cpp 51 AccessTy Access;
56 Mask(0), Access(AccessTy::None) {}
141 void setLoad() { Access = AccessTy::Load; }
142 void setStore() { Access = AccessTy::Store; }
144 bool isLoad() const { return Access == AccessTy::Load; }
145 bool isStore() const { return Access == AccessTy::Store; }
151 /// access type into a `MOVEState` instance.
  /src/external/gpl3/gcc/dist/libsanitizer/tsan/
tsan_report.cpp 25 const char *Access() { return Blue(); }
145 Printf("%s", d.Access());
154 Printf(" %s access of %s at %p by %s",
  /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_report.cpp 25 const char *Access() { return Blue(); }
149 Printf("%s", d.Access());
158 Printf(" %s access of %s at %p by %s",
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_descriptions.h 47 const char *Access() { return Blue(); }
  /src/external/gpl3/gcc/dist/libsanitizer/asan/
asan_descriptions.h 46 const char *Access() { return Blue(); }
  /src/external/gpl3/gcc.old/dist/libsanitizer/asan/
asan_descriptions.h 46 const char *Access() { return Blue(); }
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
MemProfiler.cpp 1 //===- MemProfiler.cpp - memory allocation and access profiler ------------===//
10 // to increment the access count held in a shadow memory location, or
93 ClMemoryAccessCallbackPrefix("memprof-memory-access-callback-prefix",
94 cl::desc("Prefix for memory access callbacks"),
165 /// If it is an interesting memory access, populate information
166 /// about the access and return a InterestingMemoryAccess struct.
172 InterestingMemoryAccess &Access);
330 InterestingMemoryAccess Access;
336 Access.IsWrite = false;
337 Access.TypeSize = DL.getTypeStoreSizeInBits(LI->getType())
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/hwasan/
hwasan_report.cpp 133 const char *Access() { return Blue(); }
591 Printf("%s", d.Access());
627 "Stack of invalid access unknown. Issue detected at deallocation "
704 Printf("%s", d.Access());
714 // If the access starts after the end of the short granule, then the first
715 // bad byte is the first byte of the access; otherwise it is the first
731 Printf("Invalid access starting at offset %zu\n", offset);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaAccess.cpp 1 //===---- SemaAccess.cpp - C++ Access Control -------------------*- C++ -*-===//
9 // This file provides Sema routines for C++ access control semantics.
36 /// SetMemberAccessSpecifier - Set the access specifier of a member.
37 /// Returns true on error (when the previous member decl access specifier
38 /// is different from the new member decl access specifier).
43 // Use the lexical access specifier.
48 // C++ [class.access.spec]p3: When a member is redeclared its access
88 // class template, but for access purposes behaves like the constructor
101 // C++11 [class.access.nest]p1
1791 AccessSpecifier access = target->getAccess(); local
    [all...]
SemaDecl.cpp 346 // computed, which is either the type of the base of a member access
1187 // member accesses, as we need to defer certain access checks until we know
1239 // For an implicit class member access, transform the result into a member
1240 // access expression if necessary.
1632 // FIXME: Should check for private access too but access is set after we get
4260 // Inherit access appropriately.
4920 // That includes picking up the appropriate access specifier.
5130 // Any access specifier is fine.
9676 AccessSpecifier Access = AS_public
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
MemorySSA.h 13 /// Memory SSA class builds an SSA form that links together memory access
167 /// The user iterators for a memory access
173 /// MemoryUse/MemoryDef, this walks the defining access.
179 /// Get the iterators for the all access list and the defs only list
180 /// We default to the all access list.
259 /// Get the access that produces the memory state used by this Use.
272 // Retrieve AliasResult type of the optimized access. Ideally this would be
370 /// Represents a read-write access to memory, whether it is a must-alias,
499 // Block iterator interface. This provides access to the list of incoming
623 // After deleting incoming memory access MA, the incoming accesses order ma
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/hwasan/
hwasan_report.cpp 156 const char *Access() { return Blue(); }
509 // If the access starts after the end of the short granule, then the first
510 // bad byte is the first byte of the access; otherwise it is the first
850 Printf("%s", d.Access());
900 "Stack of invalid access unknown. Issue detected at deallocation "
973 Printf("%s", d.Access());
987 Printf("Invalid access starting at offset %zu\n", mismatch_offset);
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseDeclCXX.cpp 1442 // The usual access checking rules do not apply to names used to specify
1445 // As an extension we do not perform access checking on the names used to
2101 /// attribute-specifier-seq[opt] 'virtual' access-specifier[opt]
2103 /// attribute-specifier-seq[opt] access-specifier 'virtual'[opt]
2118 // Parse an (optional) access specifier.
2119 AccessSpecifier Access = getAccessSpecifierIfPresent();
2120 if (Access != AS_none)
2126 // access specifier.
2168 Access, BaseType.get(), BaseLoc,
2173 /// a C++ access-specifier
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
CodeViewDebug.cpp 171 // have access the file in the filesystem.
397 // function types take some special handling, and require access to the
2000 // If there was no explicit access control, provide the default for the tag.
2004 llvm_unreachable("access flags are exclusive");
2419 MemberAccess Access =
2423 StaticDataMemberRecord SDMR(Access, MemberBaseType, MemberName);
2453 DataMemberRecord DMR(Access, MemberBaseType, MemberOffsetInBytes,
  /src/external/bsd/openldap/dist/servers/slapd/
slap.h 951 /* Access Control Internals */
1257 * represents an access control list
1377 typedef struct Access {
1384 #define ACL_ACCESS2PRIV(access) ((0x01U << ACL_LEVEL((access))) | ACL_QUALIFIERS((access)))
1537 struct Access *a_next;
1538 } Access;
1553 /* "by" part: list of who has what access to the entries */
1554 Access *acl_access
    [all...]

Completed in 171 milliseconds