HomeSort by relevance Sort by last modified time
    Searched defs:access (Results 126 - 150 of 1340) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/ImageMagick/MagickCore/
nt-base.h 84 #if !defined(access)
86 # define access(path,mode) _access_s(path,mode) macro
190 # define mmap(address,length,protection,access,file,offset) \
191 NTMapMemory(address,length,protection,access,file,offset)
  /external/annotation-tools/asmx/test/conform/org/objectweb/asm/commons/
GASMifierMethodVisitor.java 57 int access; field in class:GASMifierMethodVisitor
71 public GASMifierMethodVisitor(int access, String desc) {
73 this.access = access;
76 int nextLocal = ((Opcodes.ACC_STATIC & access) != 0) ? 0 : 1;
520 if (var == 0 && (access & ACC_STATIC) == 0) {
565 int nextLocal = ((Opcodes.ACC_STATIC & access) != 0) ? 0 : 1;
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/tessellation/
vktTessellationShaderInputOutputTests.cpp 472 tcu::PixelBufferAccess access = image.getAccess(); local
478 access.setPixel(white, x, y);
  /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/desugar/java/com/google/devtools/build/android/desugar/
Java7Compatibility.java 43 private int access; field in class:Java7Compatibility
58 int access,
64 this.access = access;
68 isInterface = BitFlags.isSet(access, Opcodes.ACC_INTERFACE);
71 access, local
80 int access, String name, String desc, String signature, String[] exceptions) {
84 && (access & (Opcodes.ACC_BRIDGE | Opcodes.ACC_ABSTRACT | Opcodes.ACC_STATIC))
90 && BitFlags.isSet(access, Opcodes.ACC_SYNTHETIC | Opcodes.ACC_STATIC)) {
96 || BitFlags.isSet(access, Opcodes.ACC_ABSTRACT
    [all...]
  /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/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/instr/
ProbeArrayStrategyFactoryTest.java 227 private IProbeArrayStrategy test(int version, int access, boolean clinit,
230 writer.visit(version, access, "Foo", "java/lang/Object", null, null);
264 private final int access; field in class:ProbeArrayStrategyFactoryTest.AddedMethod
269 AddedMethod(int access, String name, String desc) {
270 this.access = access;
278 assertEquals(InstrSupport.INITMETHOD_ACC, access);
285 assertEquals(InstrSupport.CLINIT_ACC, access);
303 public FieldVisitor visitField(int access, String name, String desc,
306 fieldAccess = access;
    [all...]
  /external/kernel-headers/original/uapi/rdma/
rdma_user_rxe.h 94 int access; member in struct:rxe_send_wr::__anon23559::__anon23563
  /external/mksh/src/
os2.c 244 /* alias of access() */
247 /* replacement for access() of kLIBC which fails if there are trailing dots */
249 access(const char *name, int mode) function
290 /* access()/search_access() version */
  /external/pdfium/fxjs/xfa/
cjx_field.cpp 365 void CJX_Field::access(CFXJSE_Value* pValue, function in class:CJX_Field
  /external/python/cpython3/PC/clinic/
winreg.c.h 214 " access=winreg.KEY_WRITE)\n"
225 " access\n"
226 " An integer that specifies an access mask that describes the\n"
227 " desired security access for the key. Default is KEY_WRITE.\n"
242 int reserved, REGSAM access);
248 static const char * const _keywords[] = {"key", "sub_key", "reserved", "access", NULL};
253 REGSAM access = KEY_WRITE; local
257 clinic_HKEY_converter, &key, &sub_key, &reserved, &access)) {
260 _return_value = winreg_CreateKeyEx_impl(module, key, sub_key, reserved, access);
312 "DeleteKeyEx($module, /, key, sub_key, access=winreg.KEY_WOW64_64KEY,\n
351 REGSAM access = KEY_WOW64_64KEY; local
638 REGSAM access = KEY_READ; local
690 REGSAM access = KEY_READ; local
    [all...]
  /external/v8/src/compiler/
load-elimination.cc 712 FieldAccess const& access = FieldAccessOf(node->op()); local
718 if (access.offset == HeapObject::kMapOffset &&
719 access.base_is_tagged == kTaggedBase) {
720 DCHECK(IsAnyTagged(access.machine_type.representation()));
729 int field_index = FieldIndexOf(access);
750 if (access.map.ToHandle(&field_map)) {
757 FieldAccess const& access = FieldAccessOf(node->op()); local
763 if (access.offset == HeapObject::kMapOffset &&
764 access.base_is_tagged == kTaggedBase) {
765 DCHECK(IsAnyTagged(access.machine_type.representation()))
821 ElementAccess const& access = ElementAccessOf(node->op()); local
989 FieldAccess const& access = FieldAccessOf(current->op()); local
    [all...]
store-store-elimination.cc 179 StoreOffset ToOffset(const FieldAccess& access) {
180 return ToOffset(access.offset);
186 unsigned int RepSizeOf(FieldAccess access) {
187 return RepSizeOf(access.machine_type.representation());
190 bool AtMostTagged(FieldAccess access) {
191 return RepSizeOf(access) <= RepSizeOf(MachineRepresentation::kTagged);
194 bool AtLeastTagged(FieldAccess access) {
195 return RepSizeOf(access) >= RepSizeOf(MachineRepresentation::kTagged);
266 FieldAccess access = OpParameter<FieldAccess>(node->op()); local
267 StoreOffset offset = ToOffset(access);
307 FieldAccess access = OpParameter<FieldAccess>(node->op()); local
    [all...]
  /external/v8/src/ppc/
assembler-ppc-inl.h 122 ConstantPoolEntry::Access access; local
123 if (Assembler::IsConstantPoolLoadStart(pc_, &access))
125 pc_, constant_pool, access, ConstantPoolEntry::INTPTR);
155 ConstantPoolEntry::Access access; local
157 IsConstantPoolLoadEnd(pc - 3 * kInstrSize, &access)) {
158 len = (access == ConstantPoolEntry::OVERFLOWED) ? 2 : 1;
168 ConstantPoolEntry::Access access; local
448 ConstantPoolEntry::Access access; local
626 ConstantPoolEntry::Access access; local
    [all...]
  /frameworks/native/libs/binder/
IMemory.cpp 332 int access = PROT_READ; local
334 access |= PROT_WRITE;
337 mBase = mmap(0, size, access, MAP_SHARED, fd, offset);
  /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 
  /prebuilts/tools/common/m2/repository/org/ow2/asm/asm-debug-all/5.1/
asm-debug-all-5.1.jar 
  /prebuilts/tools/common/m2/repository/org/ow2/asm/asm-debug-all/5.0.1/
asm-debug-all-5.0.1.jar 
  /prebuilts/tools/common/m2/repository/org/ow2/asm/asm-debug-all/5.0.2/
asm-debug-all-5.0.2.jar 
  /prebuilts/tools/common/m2/repository/org/ow2/asm/asm-debug-all/5.0.4/
asm-debug-all-5.0.4.jar 
  /prebuilts/tools/common/offline-m2/org/ow2/asm/asm-debug-all/5.0.1/
asm-debug-all-5.0.1.jar 

Completed in 1096 milliseconds

1 2 3 4 56 7 8 91011>>