/external/compiler-rt/lib/tsan/rtl/ |
tsan_rtl.cc | 595 // we consider only 3 cases regarding access sizes: 624 // the current access info, so we are done 679 // load current access into access[0:63] 680 const m128 access = _mm_cvtsi64_si128(a); local 681 // duplicate high part of access in addr0: 682 // addr0[0:31] = access[32:63] 683 // addr0[32:63] = access[32:63] 684 // addr0[64:95] = access[32:63] 685 // addr0[96:127] = access[32:63 [all...] |
/external/curl/lib/ |
smb.h | 167 unsigned int access; member in struct:smb_nt_create
|
/external/deqp/external/vulkancts/modules/vulkan/image/ |
vktImageLoadStoreTests.cpp | 67 tcu::ConstPixelBufferAccess getLayerOrSlice (const Texture& texture, const tcu::ConstPixelBufferAccess access, const int layer) 76 return access; 79 return tcu::getSubregion(access, 0, layer, access.getWidth(), 1); 85 return tcu::getSubregion(access, 0, 0, layer, access.getWidth(), access.getHeight(), 1); 132 void replaceBadFloatReinterpretValues (const tcu::PixelBufferAccess access) 134 DE_ASSERT(tcu::getTextureChannelClass(access.getFormat().type) == tcu::TEXTURECHANNELCLASS_FLOATING_POINT); 136 for (int z = 0; z < access.getDepth(); ++z 192 const tcu::PixelBufferAccess access = reference.getAccess(); local [all...] |
/external/deqp/external/vulkancts/modules/vulkan/ssbo/ |
vktSSBOLayoutTests.cpp | 200 const bool access = !unusedOk || (rnd.getFloat() < accessWeight); local 201 const bool read = access ? (rnd.getFloat() < readWeight) : false; 202 const bool write = access ? (!read || (rnd.getFloat() < writeWeight)) : false; 397 block.addMember(BufferVar("u", VarType(glu::TYPE_UINT, glu::PRECISION_LOWP), 0 /* no access */)); 435 block.addMember(BufferVar("v", VarType(glu::TYPE_FLOAT_VEC2, glu::PRECISION_LOWP), 0 /* no access */)); 473 block.addMember(BufferVar("v", VarType(glu::TYPE_FLOAT_VEC2, glu::PRECISION_LOWP), 0 /* no access */)); 506 block.addMember(BufferVar("u", VarType(glu::TYPE_FLOAT_VEC2, glu::PRECISION_LOWP), 0 /* no access */)); 547 block.addMember(BufferVar("u", VarType(glu::TYPE_UINT, glu::PRECISION_LOWP), 0 /* no access */)); 595 block.addMember(BufferVar("v", VarType(glu::TYPE_FLOAT_VEC2, glu::PRECISION_LOWP), 0 /* no access */)); 634 blockA.addMember(BufferVar("b", VarType(glu::TYPE_UINT_VEC3, glu::PRECISION_LOWP), 0 /* no access */)); [all...] |
/external/deqp/modules/gles2/functional/ |
es2fTextureUnitTests.cpp | 716 tcu::PixelBufferAccess access = is2d ? m_textures2d.back()->getLevel(levelNdx) : m_texturesCube.back()->getLevelFace(levelNdx, (tcu::CubeFace)face); local 717 tcu::fillWithGrid(access, curCellSize, tcu::RGBA(colorA).toVec()*cScale + cBias, tcu::RGBA(colorB).toVec()*cScale + cBias); 861 tcu::ConstPixelBufferAccess access = texture->getLevel(levelNdx); local 862 int width = access.getWidth(); 863 int height = access.getHeight(); 865 DE_ASSERT(access.getRowPitch() == access.getFormat().getPixelSize()*width); 867 context.texImage2D(GL_TEXTURE_2D, levelNdx, m_textureParams[texNdx].format, width, height, 0, m_textureParams[texNdx].format, m_textureParams[texNdx].dataType, access.getDataPtr()); 885 tcu::ConstPixelBufferAccess access = texture->getLevelFace(levelNdx, (tcu::CubeFace)face); local 886 int width = access.getWidth() [all...] |
/external/deqp/modules/gles31/functional/ |
es31fSSBOLayoutTests.cpp | 201 const bool access = !unusedOk || (rnd.getFloat() < accessWeight); local 202 const bool read = access ? (rnd.getFloat() < readWeight) : false; 203 const bool write = access ? (!read || (rnd.getFloat() < writeWeight)) : false; 402 block.addMember(BufferVar("u", VarType(glu::TYPE_UINT, glu::PRECISION_LOWP), 0 /* no access */)); 442 block.addMember(BufferVar("v", VarType(glu::TYPE_FLOAT_VEC2, glu::PRECISION_LOWP), 0 /* no access */)); 482 block.addMember(BufferVar("v", VarType(glu::TYPE_FLOAT_VEC2, glu::PRECISION_LOWP), 0 /* no access */)); 517 block.addMember(BufferVar("u", VarType(glu::TYPE_FLOAT_VEC2, glu::PRECISION_LOWP), 0 /* no access */)); 560 block.addMember(BufferVar("u", VarType(glu::TYPE_UINT, glu::PRECISION_LOWP), 0 /* no access */)); 610 block.addMember(BufferVar("v", VarType(glu::TYPE_FLOAT_VEC2, glu::PRECISION_LOWP), 0 /* no access */)); 651 blockA.addMember(BufferVar("b", VarType(glu::TYPE_UINT_VEC3, glu::PRECISION_LOWP), 0 /* no access */)); [all...] |
/external/owasp/sanitizer/tools/findbugs/lib/ |
asm-tree-3.3.jar | |
/external/pdfium/samples/ |
pdfium_test.cc | 47 #define access _access macro 991 if (access(event_filename.c_str(), R_OK) == 0) {
|
/external/python/cpython2/Modules/ |
mmapmodule.c | 112 access_mode access; member in struct:__anon30371 134 if (m_obj->access != ACCESS_READ && m_obj->access != ACCESS_COPY) 323 if (self->access != ACCESS_READ) 332 if ((self->access == ACCESS_WRITE) || (self->access == ACCESS_DEFAULT)) 560 if (self->access == ACCESS_READ || self->access == ACCESS_COPY) 1022 "Windows: mmap(fileno, length[, tagname[, access[, offset]]])\n\ 1031 Unix: mmap(fileno, length[, flags[, prot[, access[, offset]]]])\n 1107 int access = (int)ACCESS_DEFAULT; local 1272 int access = (access_mode)ACCESS_DEFAULT; local [all...] |
/external/r8/src/main/java/com/android/tools/r8/graph/ |
JarClassFileReader.java | 69 private static DexAccessFlags createAccessFlags(int access) { 71 return new DexAccessFlags(access & ~ACC_SYNTHETIC_ATTRIBUTE & ~ACC_DEPRECATED); 133 public void visitInnerClass(String name, String outerName, String innerName, int access) { 135 // If the inner class is this class, record its original access flags and name in its 140 innerName, access, application.getFactory()); 174 public void visit(int version, int access, String name, String signature, String superName, 176 accessFlags = createAccessFlags(access); 203 int access, String name, String desc, String signature, Object value) { 204 return new CreateFieldVisitor(this, access, name, desc, signature, value); 209 int access, String name, String desc, String signature, String[] exceptions) 297 private final int access; field in class:JarClassFileReader.CreateFieldVisitor 393 private final int access; field in class:JarClassFileReader.CreateMethodVisitor [all...] |
/external/v8/src/compiler/ |
js-create-lowering.cc | 10 #include "src/compiler/access-builder.h" 55 void Store(const FieldAccess& access, Node* value) { 56 effect_ = graph()->NewNode(simplified()->StoreField(access), allocation_, 61 void Store(ElementAccess const& access, Node* index, Node* value) { 62 effect_ = graph()->NewNode(simplified()->StoreElement(access), allocation_, 80 void Store(const FieldAccess& access, Handle<Object> value) { 81 Store(access, jsgraph()->Constant(value)); 1097 ElementAccess access = IsFastDoubleElementsKind(elements_kind) local 1159 FieldAccess access = {kTaggedBase, index.offset(), local 1204 FieldAccess access = local 1299 ElementAccess const access = local [all...] |
js-native-context-specialization.cc | 10 #include "src/compiler/access-builder.h" 11 #include "src/compiler/access-info.h" 115 // constant-folding for optimizing property access, but we should 151 // We can constant-fold the super constructor access if the 188 // Compute property access info for @@hasInstance on {receiver}. 208 // Monomorphic property access. 229 // Monomorphic property access. 286 ContextAccess const& access = ContextAccessOf(node->op()); local 290 if (access.index() == Context::NATIVE_CONTEXT_INDEX) { 310 FieldAccess access = local [all...] |
/frameworks/base/core/java/android/view/ |
ViewTreeObserver.java | 941 CopyOnWriteArray.Access<OnGlobalLayoutListener> access = listeners.start(); local 973 CopyOnWriteArray.Access<OnPreDrawListener> access = listeners.start(); local 995 CopyOnWriteArray.Access<OnWindowShownListener> access = listeners.start(); local 1047 CopyOnWriteArray.Access<OnScrollChangedListener> access = listeners.start(); local 1079 CopyOnWriteArray.Access<OnComputeInternalInsetsListener> access = listeners.start(); local [all...] |
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
BackingStore.java | 33 /** Access mode None: Frame data will not be accessed at all. */ 35 /** Access mode Bytes: Frame data will be accessed as a ByteBuffer. */ 37 /** Access mode Texture: Frame data will be accessed as a TextureSource. */ 39 /** Access mode RenderTarget: Frame data will be accessed as a RenderTarget. */ 41 /** Access mode Object: Frame data will be accessed as a generic Object. */ 43 /** Access mode Bitmap: Frame data will be accessed as a Bitmap. */ 45 /** Access mode Allocation: Frame data will be accessed as a RenderScript Allocation. */ 88 public Backing lockBacking(int mode, int access) { 89 Backing backing = fetchBacking(mode, access); 186 private Backing fetchBacking(int mode, int access) { 276 int access = backing.requiresGpu() ? ACCESS_BYTES : backing.readAccess(); local 508 int access = backing.readAccess(); local 603 int access = backing.readAccess(); local 724 int access = backing.readAccess(); local 843 int access = backing.readAccess(); local [all...] |
/libcore/luni/src/main/java/libcore/io/ |
Linux.java | 52 public native boolean access(String path, int mode) throws ErrnoException; method in class:Linux
|
Os.java | 49 public boolean access(String path, int mode) throws ErrnoException; method in interface:Os
|
/libcore/ojluni/src/main/java/sun/nio/fs/ |
UnixNativeDispatcher.java | 444 * access(const char* path, int amode); 446 static void access(UnixPath path, int amode) throws UnixException { method in class:UnixNativeDispatcher
|
/libcore/ojluni/src/main/native/ |
zip_util.c | 82 * respect to file access needs. 97 const DWORD access = local 120 access, /* Read and/or write permission */ [all...] |
/prebuilts/devtools/tools/lib/ |
asm-tree-4.0.jar | |
/prebuilts/tools/common/asm-tools/ |
asm-tree-4.0.jar | |
/prebuilts/tools/common/m2/repository/asm/asm-tree/3.3/ |
asm-tree-3.3.jar | |
/prebuilts/tools/common/m2/repository/asm/asm-tree/3.3.1/ |
asm-tree-3.3.1.jar | |
/prebuilts/tools/common/m2/repository/org/apache/maven/shared/maven-dependency-analyzer/1.4/ |
maven-dependency-analyzer-1.4.jar | |
/prebuilts/tools/common/m2/repository/org/ow2/asm/asm-tree/4.0/ |
asm-tree-4.0.jar | |
/prebuilts/tools/common/m2/repository/cglib/cglib-nodep/2.1_3/ |
cglib-nodep-2.1_3.jar | |