HomeSort by relevance Sort by last modified time
    Searched defs:access (Results 76 - 100 of 936) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/v8/src/crankshaft/
hydrogen-load-elimination.cc 53 FieldOf(l->access()),
67 FieldOf(s->access()),
204 DCHECK(!instr->access().IsInobject() ||
205 instr->access().existing_inobject_property());
207 int field = FieldOf(instr->access());
231 if (instr->access().IsInobject() &&
232 !instr->access().existing_inobject_property()) {
237 int field = FieldOf(instr->access());
279 int field = FieldOf(s->access());
289 HObjectAccess access = instr->access() local
    [all...]
  /external/v8/test/cctest/compiler/
test-js-context-specialization.cc 99 ContextAccess access = OpParameter<ContextAccess>(r.replacement()); local
100 CHECK_EQ(Context::GLOBAL_EVAL_FUN_INDEX, static_cast<int>(access.index()));
101 CHECK_EQ(0, static_cast<int>(access.depth()));
102 CHECK_EQ(false, access.immutable());
181 ContextAccess access = OpParameter<ContextAccess>(r.replacement()); local
182 CHECK_EQ(Context::GLOBAL_EVAL_FUN_INDEX, static_cast<int>(access.index()));
183 CHECK_EQ(0, static_cast<int>(access.depth()));
184 CHECK_EQ(false, access.immutable());
  /external/v8/test/unittests/compiler/
change-lowering-unittest.cc 185 FieldAccess access = {kTaggedBase, FixedArrayBase::kHeaderSize, local
190 Node* store = graph()->NewNode(simplified()->StoreField(access), p0, p1,
198 p0, IsIntPtrConstant(access.offset - access.tag()), p1,
204 FieldAccess access = {kTaggedBase, FixedArrayBase::kHeaderSize, local
209 Node* store = graph()->NewNode(simplified()->StoreField(access), p0, p1,
217 p0, IsIntPtrConstant(access.offset - access.tag()), p1,
223 FieldAccess access = {kTaggedBase, FixedArrayBase::kHeaderSize, local
227 Node* load = graph()->NewNode(simplified()->LoadField(access), p0
241 ElementAccess access = {kTaggedBase, FixedArrayBase::kHeaderSize, Type::Any(), local
268 ElementAccess access = {kTaggedBase, FixedArrayBase::kHeaderSize, local
292 ElementAccess access = {kTaggedBase, FixedArrayBase::kHeaderSize, Type::Any(), local
316 ElementAccess access = {kTaggedBase, FixedArrayBase::kHeaderSize, local
    [all...]
escape-analysis-unittest.cc 76 Node* Store(const FieldAccess& access, Node* allocation, Node* value,
84 return effect_ = graph()->NewNode(simplified()->StoreField(access),
88 Node* Load(const FieldAccess& access, Node* from, Node* effect = nullptr,
96 return graph()->NewNode(simplified()->LoadField(access), from, effect,
135 FieldAccess access = {kTaggedBase, offset, MaybeHandle<Name>(), Type::Any(), local
137 return access;
js-typed-lowering-unittest.cc 6 #include "src/compiler/access-builder.h"
675 ElementAccess access = AccessBuilder::ForTypedArrayElement(type, true); local
694 IsLoadElement(access,
808 ElementAccess access = AccessBuilder::ForTypedArrayElement(type, true); local
815 Node* value = Parameter(access.type);
831 access, IsIntPtrConstant(bit_cast<intptr_t>(&backing_store[0])),
    [all...]
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
MockKeyStore.java 91 private KeyBlob access(int uid, String key, boolean createIfNotExist) { method in class:MockKeyStore
110 return access(uid, key, false);
114 access(uid, key, true).update(value, flags);
130 return access(uid, key, false) != null;
144 access(destUid, destKey, true).update(blob.blob, blob.flag);
  /packages/apps/Nfc/src/com/android/nfc/
NfceeAccessControl.java 55 * Map from UID to NFCEE access, used as a cache.
84 boolean access = false;
91 // Ensure the package has access permissions
93 access = true;
99 mUidCache.put(uid, access);
100 return access;
111 Boolean access = mUidCache.get(info.uid); local
112 if (access == null) {
113 access = checkPackageNfceeAccess(info.packageName);
114 mUidCache.put(info.uid, access);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/alsa/
pcm_ioplug.h 43 SND_PCM_IOPLUG_HW_ACCESS = 0, /**< access type */
111 snd_pcm_access_t access; /**< access type; filled after hw_params is called */ member in struct:snd_pcm_ioplug
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/alsa/
pcm_ioplug.h 43 SND_PCM_IOPLUG_HW_ACCESS = 0, /**< access type */
111 snd_pcm_access_t access; /**< access type; filled after hw_params is called */ member in struct:snd_pcm_ioplug
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
io.h 310 int __cdecl access(const char *_Filename,int _AccessMode) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
350 /* Old versions of MSVCRT access() just ignored X_OK, while the version
357 #define access(__f,__m) __mingw_access (__f, __m) macro
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/
interfaces.py 27 from . import access namespace
45 if not access.is_idparam(name):
107 """Extract the paramaters from an access vector.
109 Extract the paramaters (in the form $N) from an access
144 if access.is_idparam(av.src_type):
148 if access.is_idparam(av.tgt_type):
152 if access.is_idparam(av.obj_class):
157 if access.is_idparam(perm):
164 if access.is_idparam(role.role):
171 if access.is_idparam(x)
    [all...]
  /external/deqp/framework/randomshaders/
rsgProgramExecutor.cpp 241 ExecValueAccess access = execCtx.getValue(input->getVariable()); local
250 interpolateVertexInput(access, vtxNdx-packetStart, input->getValueRange(), xf, yf);
265 ExecConstValueAccess access = execCtx.getValue(output); local
271 copyVarying(varyingAccess, access, vtxNdx-packetStart);
317 ExecValueAccess access = execCtx.getValue(input->getVariable()); local
329 interpolateFragmentInput(access, fragNdx-packetStart,
  /external/fonttools/Lib/fontTools/misc/
psOperators.py 10 access = 0 variable in class:ps_object
62 access = _accessstrings[item.access]
63 if access:
64 access = ' ' + access
66 psstring = psstring + ' ' + str(item) + access
68 psstring = psstring + str(item) + access
106 access = _accessstrings[value.access]
    [all...]
  /external/google-breakpad/src/third_party/libdisasm/
ia32_implicit.c 13 * would have 'write only' access for AX and 'read only' access for AL,
387 enum x86_op_access access = (enum x86_op_access) OP_PERM(list->type); local
416 op->access |= access;
  /external/jetty/src/java/org/eclipse/jetty/server/session/
AbstractSession.java 60 private long _accessed; // the time of the last access
61 private long _lastAccessed; // the time of the last access excluding this one
277 protected boolean access(long time) method in class:AbstractSession
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
FieldProviderTransformer.java 48 private int access; field in class:FieldProviderTransformer
51 public void begin_class(int version, int access, String className, Type superType, Type[] interfaces, String sourceFile) {
52 if (!TypeUtils.isAbstract(access)) {
55 this.access = access;
57 super.begin_class(version, access, className, superType, interfaces, sourceFile);
60 public void declare_field(int access, String name, Type type, Object value) {
61 super.declare_field(access, name, type, value);
63 if (!TypeUtils.isStatic(access)) {
69 if (!TypeUtils.isInterface(access)) {
    [all...]
  /frameworks/native/libs/binder/
IMemory.cpp 321 int access = PROT_READ; local
323 access |= PROT_WRITE;
327 mBase = mmap(0, size, access, MAP_SHARED, fd, offset);
  /libcore/luni/src/main/java/libcore/io/
BlockGuardOs.java 67 @Override public boolean access(String path, int mode) throws ErrnoException { method in class:BlockGuardOs
69 return os.access(path, mode);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/
Xw32defs.h 13 # define access _access macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/rpcsvc/
nlm_prot.h 128 fsh_access access; member in struct:nlm_share
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xw32defs.h 13 # define access _access macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/rpcsvc/
nlm_prot.h 128 fsh_access access; member in struct:nlm_share
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-gradle/4.10/
proguard-gradle-4.10.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-gradle/4.9/
proguard-gradle-4.9.jar 
  /external/jacoco/
asm-debug-all-5.0.1.jar 

Completed in 681 milliseconds

1 2 34 5 6 7 8 91011>>