HomeSort by: relevance | last modified time | path
    Searched refs:access (Results 1 - 25 of 375) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /xsrc/external/mit/xorg-server/dist/glamor/
glamor_prepare.h 27 glamor_prepare_access(DrawablePtr drawable, glamor_access_t access);
30 glamor_prepare_access_box(DrawablePtr drawable, glamor_access_t access,
37 glamor_prepare_access_picture(PicturePtr picture, glamor_access_t access);
40 glamor_prepare_access_picture_box(PicturePtr picture, glamor_access_t access,
glamor_prepare.c 34 glamor_prep_pixmap_box(PixmapPtr pixmap, glamor_access_t access, BoxPtr box)
74 if (access == GLAMOR_ACCESS_RW)
119 priv->map_access = access;
185 glamor_prepare_access(DrawablePtr drawable, glamor_access_t access)
197 return glamor_prep_pixmap_box(pixmap, access, &box);
201 glamor_prepare_access_box(DrawablePtr drawable, glamor_access_t access,
213 return glamor_prep_pixmap_box(pixmap, access, &box);
227 glamor_prepare_access_picture(PicturePtr picture, glamor_access_t access)
232 return glamor_prepare_access(picture->pDrawable, access);
236 glamor_prepare_access_picture_box(PicturePtr picture, glamor_access_t access,
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/compiler/nir/
nir_opt_access.c 26 /* This pass optimizes GL access qualifiers. So far it does three things:
194 if (var->data.access & ACCESS_CAN_REORDER)
197 unsigned access = var->data.access; local
201 if (!(access & ACCESS_NON_WRITEABLE)) {
203 access |= ACCESS_NON_WRITEABLE;
204 else if ((access & ACCESS_RESTRICT) && !_mesa_set_search(state->vars_written, var))
205 access |= ACCESS_NON_WRITEABLE;
208 if (state->infer_non_readable && !(access & ACCESS_NON_READABLE)) {
210 access |= ACCESS_NON_READABLE
223 enum gl_access_qualifier access = nir_intrinsic_access(instr); local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/util/
u_file.h 46 return access(path, mode);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/
u_file.h 46 return access(path, mode);
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/
st_cb_bufferobjects.h 59 st_access_flags_to_transfer_flags(GLbitfield access, bool wholeBuffer);
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/nv30/
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...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/nv30/
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...]
  /xsrc/external/mit/xf86-video-vmware/dist/saa/
saa_unaccel.c 57 * Finishes access to the tile in the GC, if used.
74 saa_access_t access; local
79 if (saa_pad_write(pDrawable, NULL, FALSE, &access)) {
86 saa_fad_write(pDrawable, access);
97 saa_access_t access
101 if (saa_pad_write(pDrawable, NULL, FALSE, &access)) {
105 saa_fad_write(pDrawable, access);
117 saa_access_t access; local
121 if (saa_pad_write(pDrawable, pGC, TRUE, &access)) {
126 saa_fad_write(pDrawable, access);
165 saa_access_t access = SAA_ACCESS_R; local
227 saa_access_t access; local
258 saa_access_t access; local
288 saa_access_t access; local
309 saa_access_t access; local
336 saa_access_t access; local
361 saa_access_t access; local
406 saa_access_t access; local
483 saa_access_t access; local
518 saa_access_t access; local
544 saa_access_t access; local
570 saa_access_t access; local
933 saa_access_t access; local
980 saa_access_t access; local
    [all...]
  /xsrc/external/mit/xorg-server/dist/test/xi2/
protocol-common.h 150 Mask access);
152 Mask access);
154 int __wrap_dixLookupClient(ClientPtr *c, XID id, ClientPtr client, Mask access);
155 int __real_dixLookupClient(ClientPtr *c, XID id, ClientPtr client, Mask access);
  /xsrc/external/mit/xorg-server.old/dist/test/xi2/
protocol-common.h 145 int __wrap_dixLookupWindow(WindowPtr *win, XID id, ClientPtr client, Mask access);
146 int __real_dixLookupWindow(WindowPtr *win, XID id, ClientPtr client, Mask access);
148 int __wrap_dixLookupClient(ClientPtr *c, XID id, ClientPtr client, Mask access);
149 int __real_dixLookupClient(ClientPtr *c, XID id, ClientPtr client, Mask access);
  /xsrc/external/mit/xorg-server/dist/hw/xquartz/bundle/
Info.plist.cpp 38 <string>A process launched by APPLE_APPLICATION_NAME wants access to your calendar data.</string>
40 <string>A process launched by APPLE_APPLICATION_NAME wants access to your camera.</string>
42 <string>A process launched by APPLE_APPLICATION_NAME wants access to your contacts.</string>
44 <string>A process launched by APPLE_APPLICATION_NAME wants access to your location information, even when not in use.</string>
46 <string>A process launched by APPLE_APPLICATION_NAME wants access to your location information.</string>
48 <string>A process launched by APPLE_APPLICATION_NAME wants access to your location information when in use.</string>
50 <string>A process launched by APPLE_APPLICATION_NAME wants access to your microphone.</string>
52 <string>A process launched by APPLE_APPLICATION_NAME wants access to your reminders.</string>
  /xsrc/external/mit/MesaLib/dist/src/mesa/main/
shaderimage.h 76 * and access from the shader is allowed. Otherwise loads from this unit
87 GLboolean layered, GLint layer, GLenum access,
92 GLboolean layered, GLint layer, GLenum access,
97 GLboolean layered, GLint layer, GLenum access,
shaderimage.c 431 .Access = GL_READ_ONLY,
521 GLenum access, GLenum format, bool check_level_layer)
545 if (access != GL_READ_ONLY &&
546 access != GL_WRITE_ONLY &&
547 access != GL_READ_WRITE) {
548 _mesa_error(ctx, GL_INVALID_VALUE, "glBindImageTexture(access)");
562 GLint level, GLboolean layered, GLint layer, GLenum access,
566 u->Access = access;
585 GLenum access, GLenum format
    [all...]
  /xsrc/external/mit/xf86-video-nouveau/dist/src/
nouveau_local.h 151 PUSH_REFN(struct nouveau_pushbuf *push, struct nouveau_bo *bo, uint32_t access)
153 nouveau_bufctx_refn(BUFCTX(push), 0, bo, access); local
158 struct nouveau_bo *bo, uint32_t offset, uint32_t access)
161 bo, offset, access | NOUVEAU_BO_LOW, 0, 0);
167 struct nouveau_bo *bo, uint32_t access, uint32_t vor, uint32_t tor)
170 bo, 0, access | NOUVEAU_BO_OR, vor, tor);
179 struct nouveau_bo *bo, uint32_t data, uint32_t access,
183 bo, data, access | NOUVEAU_BO_OR, vor, tor);
192 struct nouveau_bo *bo, uint32_t data, uint32_t access,
196 bo, data, access | NOUVEAU_BO_OR, vor, tor)
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/iris/
iris_pipe_control.c 158 * memory operations performed from the caching domain \p access.
167 * previous access was performed from the same batch or a different one, but
185 enum iris_domain access)
211 * the previous access and invalidating the specified domain.
215 if (i != access) {
218 /* Invalidate unless the most recent read/write access from
220 * specified domain. Flush if the most recent access from
223 if (seqno > batch->coherent_seqnos[access][i]) {
224 bits |= invalidate_bits[access];
237 if (!iris_domain_is_read_only(access)) {
    [all...]
iris_batch.h 196 bool writable, enum iris_domain access);
333 enum iris_domain access)
335 batch->coherent_seqnos[access][access] = batch->next_seqno - 1;
345 enum iris_domain access)
348 batch->coherent_seqnos[access][i] = batch->coherent_seqnos[i][i];
iris_genx_macros.h 56 !iris_domain_is_read_only(addr.access), addr.access);
147 .access = IRIS_DOMAIN_OTHER_READ };
151 rw_bo(struct iris_bo *bo, uint64_t offset, enum iris_domain access)
154 .access = access };
  /xsrc/external/mit/MesaLib/dist/src/compiler/spirv/
vtn_variables.c 48 * boundary in our access chain in which case alignment is meaningless.
75 ptr->access |= ACCESS_NON_UNIFORM;
84 enum gl_access_qualifier access; member in struct:access_align
100 aa->access |= ACCESS_NON_UNIFORM;
117 /* If we're adding access flags, make a copy of the pointer. We could
121 if (aa.access & ~ptr->access) {
124 copy->access |= aa.access;
312 enum gl_access_qualifier access = base->access | deref_chain->access local
2317 enum gl_access_qualifier *access = void_ptr; local
2399 enum gl_access_qualifier access = 0; local
2506 SpvMemoryAccessMask access; local
2548 SpvMemoryAccessMask access; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/zink/
zink_bo.h 226 zink_bo_usage_check_completion(struct zink_screen *screen, struct zink_bo *bo, enum zink_resource_access access)
228 if (access & ZINK_RESOURCE_ACCESS_READ && !zink_screen_usage_check_completion(screen, bo->reads))
230 if (access & ZINK_RESOURCE_ACCESS_WRITE && !zink_screen_usage_check_completion(screen, bo->writes))
236 zink_bo_usage_wait(struct zink_context *ctx, struct zink_bo *bo, enum zink_resource_access access)
238 if (access & ZINK_RESOURCE_ACCESS_READ)
240 if (access & ZINK_RESOURCE_ACCESS_WRITE)
  /xsrc/external/mit/MesaLib.old/dist/src/compiler/spirv/
vtn_variables.c 56 ssa->access |= ACCESS_NON_UNIFORM;
231 /* Dereference the given base pointer by the access chain */
238 enum gl_access_qualifier access = base->access | deref_chain->access; local
300 access |= type->access;
314 * a pointer which just has a block index and a later access chain
321 ptr->access = access;
396 enum gl_access_qualifier access = base->access; local
2398 enum gl_access_qualifier access = 0; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/nouveau/
nouveau_local.h 103 struct nouveau_bo *bo, uint32_t offset, uint32_t access)
106 bo, offset, access | NOUVEAU_BO_LOW, 0, 0);
112 struct nouveau_bo *bo, uint32_t data, uint32_t access,
116 bo, data, access | NOUVEAU_BO_OR, vor, tor);
126 struct nouveau_bo *bo, uint32_t data, uint32_t access,
130 bo, data, access | NOUVEAU_BO_OR, vor, tor);
132 if (access & NOUVEAU_BO_LOW)
135 if (access & NOUVEAU_BO_OR) {
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/nouveau/
nouveau_local.h 103 struct nouveau_bo *bo, uint32_t offset, uint32_t access)
106 bo, offset, access | NOUVEAU_BO_LOW, 0, 0);
112 struct nouveau_bo *bo, uint32_t data, uint32_t access,
116 bo, data, access | NOUVEAU_BO_OR, vor, tor);
126 struct nouveau_bo *bo, uint32_t data, uint32_t access,
130 bo, data, access | NOUVEAU_BO_OR, vor, tor);
132 if (access & NOUVEAU_BO_LOW)
135 if (access & NOUVEAU_BO_OR) {
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
shaderimage.h 76 * and access from the shader is allowed. Otherwise loads from this unit
87 GLboolean layered, GLint layer, GLenum access,
92 GLboolean layered, GLint layer, GLenum access,
  /xsrc/external/mit/libXau/dist/include/X11/
Xauth.h 74 #if __has_attribute(access)
75 # define XAU_ACCESS_ATTRIBUTE(X) __attribute__((access X))

Completed in 29 milliseconds

1 2 3 4 5 6 7 8 91011>>