HomeSort by relevance Sort by last modified time
    Searched defs:access (Results 51 - 75 of 1004) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/deqp/modules/glshared/
glsRandomShaderProgram.cpp 186 rsg::ExecValueAccess access = m_execCtx.getValue(attribVar); local
196 access.component(0).asFloat(ndx) = attribValue[0];
197 if (numComponents >= 2) access.component(1).asFloat(ndx) = attribValue[1];
198 if (numComponents >= 3) access.component(2).asFloat(ndx) = attribValue[2];
199 if (numComponents >= 4) access.component(3).asFloat(ndx) = attribValue[3];
207 const rsg::ExecConstValueAccess access = m_execCtx.getValue(m_positionVar); local
214 packet->position[0] = access.component(0).asFloat(ndx);
215 packet->position[1] = access.component(1).asFloat(ndx);
216 packet->position[2] = access.component(2).asFloat(ndx);
217 packet->position[3] = access.component(3).asFloat(ndx)
227 const rsg::ExecConstValueAccess access = m_execCtx.getValue(var); local
265 rsg::ExecValueAccess access = m_execCtx.getValue(var); local
    [all...]
  /external/libdrm/nouveau/
private.h 87 uint32_t access; member in struct:nouveau_bo_priv
  /external/parameter-framework/upstream/parameter/
ArrayParameter.cpp 120 /// Actual parameter access
121 // String access
136 bool CArrayParameter::access(std::vector<bool> &abValues, bool bSet, function in class:CArrayParameter
143 bool CArrayParameter::access(std::vector<uint32_t> &auiValues, bool bSet, function in class:CArrayParameter
149 // Signed Integer Access
150 bool CArrayParameter::access(std::vector<int32_t> &aiValues, bool bSet, function in class:CArrayParameter
156 // Double Access
157 bool CArrayParameter::access(std::vector<double> &adValues, bool bSet, function in class:CArrayParameter
163 // String Access
164 bool CArrayParameter::access(std::vector<string> &astrValues, bool bSet function in class:CArrayParameter
    [all...]
  /external/proguard/src/proguard/ant/
ClassSpecificationElement.java 40 private String access; field in class:ClassSpecificationElement
76 String access = classSpecificationElement.access; local
93 requiredAccessFlags(true, access, type),
94 requiredAccessFlags(false, access, type),
116 public void setAccess(String access)
118 this.access = access;
202 String access,
208 if (access != null
    [all...]
  /external/selinux/sepolgen/src/sepolgen/
audit.py 24 from . import access namespace
142 """AVC message representing an access denial or granted message.
152 access - list of accesses that were allowed or denied
184 # This is kind of sucky - the access that is in a space separated
266 raise ValueError("Error during access vector computation")
492 Access vector set representing the denied access in the
495 role_types = access.RoleTypeSet()
503 """Convert the audit logs access into a an access vector set
    [all...]
policygen.py 35 from . import access namespace
46 """Generate a reference policy module from access vectors.
49 or updates an existing module based on requested access
50 in the form of access vectors.
59 why a particular access was allowed based on the audit
60 messages that generated the access. The access vectors
72 If the module paramater is not None then access
116 """Set whether access is explained.
176 rule.comment += "\n#!!!! This avc is a constraint violation. You would need to modify the attributes of either the source or target types to allow this access.
    [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/
js-type-feedback-unittest.cc 7 #include "src/compiler/access-builder.h"
264 FieldAccess access = AccessBuilder::ForPropertyCellValue(); local
267 access, CaptureEq(&cell_capture), graph()->start(), graph()->start());
316 FieldAccess access = AccessBuilder::ForPropertyCellValue(); local
319 access, CaptureEq(&cell_capture), graph()->start(), graph()->start());
  /external/zlib/src/examples/
zran.c 1 /* zran.c -- example of zlib/gzip stream indexing and random access
12 for random access of a compressed file. A file containing a zlib or gzip
14 its entirety, and an index built with access points about every SPAN bytes
19 An access point can be created at the start of any deflate block, by saving
26 a new access point. If so, that point is saved in a data structure that
39 requests for random access reads from the compressed data would try to use
44 access, mainly copying the 32K byte dictionary. So if small pieces of the
49 not be constrained to have access points at block boundaries, but requires
50 more memory per access point, and also cannot be saved to file due to the
62 #define SPAN 1048576L /* desired distance between access points *
75 struct access { struct
    [all...]
  /hardware/qcom/display/msmcobalt/sdm/include/utils/
sys.h 57 typedef int (*access)(const char *, int); typedef in class:sdm::Sys
72 static access access_;
  /packages/services/Car/vehicle_network_service/
VehiclePropertyAccessControl.cpp 66 // Converts the string representation, access, to an integer form and store it
67 // in value. true is returned if the parameter, access, is "r", "w", "rw" or
69 // only used for logging in the event that the string, access, was not
74 const xmlChar* access) {
75 if (!value || !property || !uid || !access) {
80 if (xmlStrcmp(access, (const xmlChar *)"r") == 0) {
83 else if (xmlStrcmp(access, (const xmlChar *)"w") == 0) {
86 else if ((xmlStrcmp(access, (const xmlChar *)"rw") == 0)
87 || (xmlStrcmp(access, (const xmlChar *)"wr") == 0)) {
91 ALOGE("Unknown access tag %s for UID %s in PROPERTY %s\n",access, uid
137 xmlChar* access = NULL; local
294 int32_t access; local
337 int32_t access = (*uidAccessMap)[uid]; local
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/perl5/
noembed.h 100 #ifdef access
101 #undef access macro
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/
audit.py 24 from . import access namespace
142 """AVC message representing an access denial or granted message.
152 access - list of accesses that were allowed or denied
184 # This is kind of sucky - the access that is in a space separated
266 raise ValueError("Error during access vector computation")
492 Access vector set representing the denied access in the
495 role_types = access.RoleTypeSet()
503 """Convert the audit logs access into a an access vector set
    [all...]
policygen.py 35 from . import access namespace
46 """Generate a reference policy module from access vectors.
49 or updates an existing module based on requested access
50 in the form of access vectors.
59 why a particular access was allowed based on the audit
60 messages that generated the access. The access vectors
72 If the module paramater is not None then access
116 """Set whether access is explained.
176 rule.comment += "\n#!!!! This avc is a constraint violation. You would need to modify the attributes of either the source or target types to allow this access.
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
Executor.java 56 * If a subroutine is passed, the access flags will be modified if this instruction accesses
424 access(index, Type.INTEGER, subroutine); method
786 access(index, type, subroutine); method
875 access(index, type, subroutine); method
980 private void access(int index, Type type, Subroutine subroutine) { method in class:Executor
    [all...]
  /external/deqp/framework/opengl/
gluTexture.cpp 96 tcu::ConstPixelBufferAccess access = m_refTexture.getLevel(levelNdx); local
97 gl.texImage1D(GL_TEXTURE_1D, levelNdx, m_format, access.getWidth(), 0 /* border */, transferFormat.format, transferFormat.dataType, access.getDataPtr());
179 tcu::ConstPixelBufferAccess access = m_refTexture.getLevel(levelNdx); local
180 DE_ASSERT(access.getRowPitch() == access.getFormat().getPixelSize()*access.getWidth());
181 gl.texImage2D(GL_TEXTURE_2D, levelNdx, m_format, access.getWidth(), access.getHeight(), 0 /* border */, transferFormat.format, transferFormat.dataType, access.getDataPtr())
366 tcu::ConstPixelBufferAccess access = m_refTexture.getLevelFace(levelNdx, (tcu::CubeFace)face); local
485 tcu::ConstPixelBufferAccess access = m_refTexture.getLevel(levelNdx); local
572 tcu::ConstPixelBufferAccess access = m_refTexture.getLevel(levelNdx); local
694 tcu::ConstPixelBufferAccess access = m_refTexture.getLevel(levelNdx); local
785 tcu::ConstPixelBufferAccess access = m_refTexture.getLevel(levelNdx); local
    [all...]
  /external/deqp/modules/egl/
teglColorClearCase.cpp 105 tcu::PixelBufferAccess access = tcu::getSubregion(dst.getAccess(), clearIter->x, clearIter->y, 0, clearIter->width, clearIter->height, 1); local
106 tcu::clear(access, pixelFormat.convertColor(clearIter->color).toIVec());
423 tcu::PixelBufferAccess access = tcu::getSubregion(refFrame.getAccess(), local
426 tcu::clear(access, pixelFmt.convertColor(packet.clears[clearNdx].color).toIVec());
  /external/deqp/modules/gles31/functional/
es31fSSBOArrayLengthTests.cpp 55 SSBOArrayLengthCase (Context& context, const char* name, const char* desc, ArrayAccess access, bool sized);
75 SSBOArrayLengthCase::SSBOArrayLengthCase (Context& context, const char* name, const char* desc, ArrayAccess access, bool sized)
77 , m_access (access)
288 SSBOArrayLengthCase::ArrayAccess access; member in struct:deqp::gles31::Functional::Qualifier
306 this->addChild(new SSBOArrayLengthCase(m_context, name.c_str(), desc.c_str(), qualifiers[qualifierNdx].access, arraysSized[sizeNdx]));
  /external/fio/engines/
windowsaio.c 157 DWORD access; local
187 access = GENERIC_READ;
189 access = (GENERIC_READ | GENERIC_WRITE);
196 f->hFile = CreateFile(f->file_name, access, sharemode,
  /external/icu/icu4c/source/common/unicode/
utext.h 24 * The Text Access API provides a means to allow text that is stored in alternative
29 * ICU Text Access allows other formats, such as UTF-8 or non-contiguous
41 * access to the actual text.
79 * or UTF-32, for example. When coding to the UText access API, no assumptions
107 * Most UText access functions have as their first parameter a (UText *) pointer,
349 * This is true for read access only with shallow clones, and for both read and
350 * write access with deep clones.
360 * @param readOnly TRUE to request that the cloned UText have read only access to the
681 * #define inline versions of selected performance-critical text access functions
1257 UTextAccess *access; member in struct:UTextFuncs
    [all...]
  /external/jarjar/src/main/com/tonicsystems/jarjar/util/
ClassHeaderReader.java 25 private int access; field in class:ClassHeaderReader
38 return access;
57 access = 0;
109 access = readUnsignedShort(index);
  /external/jetty/src/java/org/eclipse/jetty/server/
SessionManager.java 247 public HttpCookie access(HttpSession session, boolean secure); method in interface:SessionManager
254 * @see #access(HttpSession, boolean)
  /external/jetty/src/java/org/eclipse/jetty/server/session/
SessionHandler.java 148 HttpSession access = null; local
162 // access any existing session
171 access = session;
172 HttpCookie cookie = _sessionManager.access(session,request.isSecure());
203 if (access != null)
204 _sessionManager.complete(access);
207 if (session != null && old_session == null && session != access)
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_miptree.c 235 unsigned access = 0; local
242 access |= NOUVEAU_BO_RD;
244 access |= NOUVEAU_BO_WR;
246 ret = nouveau_bo_map(tx->tmp.bo, access, nv30->base.client);
nv30_winsys.h 44 struct nouveau_bo *bo, uint32_t access)
46 nouveau_bufctx_refn(bufctx(push), bin, bo, access); local
51 struct nouveau_bo *bo, uint32_t offset, uint32_t access)
54 bo, offset, access | NOUVEAU_BO_LOW, 0, 0)->priv = NULL;
60 struct nouveau_bo *bo, uint32_t access, uint32_t vor, uint32_t tor)
63 bo, 0, access | NOUVEAU_BO_OR, vor, tor)->priv = NULL;
72 struct nouveau_bo *bo, uint32_t data, uint32_t access,
76 bo, data, access | NOUVEAU_BO_OR, vor, tor)->priv = NULL;
85 struct nouveau_bo *bo, uint32_t data, uint32_t access,
90 bo, data, access | NOUVEAU_BO_OR, vor, tor)
    [all...]

Completed in 1474 milliseconds

1 23 4 5 6 7 8 91011>>