HomeSort by relevance Sort by last modified time
    Searched full:ctx (Results 351 - 375 of 4417) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/mesa/src/src/mesa/main/
syncobj.c 71 _mesa_new_sync_object(struct gl_context *ctx, GLenum type)
74 (void) ctx;
82 _mesa_delete_sync_object(struct gl_context *ctx, struct gl_sync_object *syncObj)
84 (void) ctx;
90 _mesa_fence_sync(struct gl_context *ctx, struct gl_sync_object *syncObj,
93 (void) ctx;
102 _mesa_check_sync(struct gl_context *ctx, struct gl_sync_object *syncObj)
104 (void) ctx;
114 _mesa_wait_sync(struct gl_context *ctx, struct gl_sync_object *syncObj,
117 (void) ctx;
    [all...]
shaderobj.h 46 _mesa_init_shader_state(struct gl_context * ctx);
49 _mesa_free_shader_state(struct gl_context *ctx);
53 _mesa_reference_shader(struct gl_context *ctx, struct gl_shader **ptr,
57 _mesa_lookup_shader(struct gl_context *ctx, GLuint name);
60 _mesa_lookup_shader_err(struct gl_context *ctx, GLuint name, const char *caller);
65 _mesa_reference_shader_program(struct gl_context *ctx,
69 _mesa_init_shader(struct gl_context *ctx, struct gl_shader *shader);
72 _mesa_new_shader(struct gl_context *ctx, GLuint name, GLenum type);
75 _mesa_init_shader_program(struct gl_context *ctx, struct gl_shader_program *prog);
78 _mesa_lookup_shader_program(struct gl_context *ctx, GLuint name)
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
api_images.c 99 struct vg_context *ctx = vg_current_context(); local
102 vg_set_error(ctx, VG_UNSUPPORTED_IMAGE_FORMAT_ERROR);
106 vg_set_error(ctx, VG_ILLEGAL_ARGUMENT_ERROR);
111 vg_set_error(ctx, VG_ILLEGAL_ARGUMENT_ERROR);
115 vg_set_error(ctx, VG_ILLEGAL_ARGUMENT_ERROR);
122 vg_set_error(ctx, VG_ILLEGAL_ARGUMENT_ERROR);
131 struct vg_context *ctx = vg_current_context(); local
135 vg_set_error(ctx, VG_BAD_HANDLE_ERROR);
139 vg_set_error(ctx, VG_BAD_HANDLE_ERROR);
149 struct vg_context *ctx = vg_current_context() local
177 struct vg_context *ctx = vg_current_context(); local
205 struct vg_context *ctx = vg_current_context(); local
229 struct vg_context *ctx = vg_current_context(); local
257 struct vg_context *ctx = vg_current_context(); local
277 struct vg_context *ctx = vg_current_context(); local
296 struct vg_context *ctx = vg_current_context(); local
315 struct vg_context *ctx = vg_current_context(); local
335 struct vg_context *ctx = vg_current_context(); local
358 struct vg_context *ctx = vg_current_context(); local
396 struct vg_context *ctx = vg_current_context(); local
470 struct vg_context *ctx = vg_current_context(); local
    [all...]
api_path.c 43 struct vg_context *ctx = vg_current_context(); local
46 vg_set_error(ctx, VG_UNSUPPORTED_PATH_FORMAT_ERROR);
51 vg_set_error(ctx, VG_ILLEGAL_ARGUMENT_ERROR);
55 vg_set_error(ctx, VG_ILLEGAL_ARGUMENT_ERROR);
66 struct vg_context *ctx = vg_current_context(); local
70 vg_set_error(ctx, VG_BAD_HANDLE_ERROR);
81 struct vg_context *ctx = vg_current_context(); local
84 vg_set_error(ctx, VG_BAD_HANDLE_ERROR);
95 struct vg_context *ctx = vg_current_context(); local
100 vg_set_error(ctx, VG_BAD_HANDLE_ERROR)
112 struct vg_context *ctx = vg_current_context(); local
125 struct vg_context *ctx = vg_current_context(); local
148 struct vg_context *ctx = vg_current_context(); local
191 struct vg_context *ctx = vg_current_context(); local
223 struct vg_context *ctx = vg_current_context(); local
246 struct vg_context *ctx = vg_current_context(); local
274 struct vg_context *ctx = vg_current_context(); local
311 struct vg_context *ctx = vg_current_context(); local
369 struct vg_context *ctx = vg_current_context(); local
406 struct vg_context *ctx = vg_current_context(); local
469 struct vg_context *ctx = vg_current_context(); local
    [all...]
  /external/mesa3d/src/mesa/main/
syncobj.c 71 _mesa_new_sync_object(struct gl_context *ctx, GLenum type)
74 (void) ctx;
82 _mesa_delete_sync_object(struct gl_context *ctx, struct gl_sync_object *syncObj)
84 (void) ctx;
90 _mesa_fence_sync(struct gl_context *ctx, struct gl_sync_object *syncObj,
93 (void) ctx;
102 _mesa_check_sync(struct gl_context *ctx, struct gl_sync_object *syncObj)
104 (void) ctx;
114 _mesa_wait_sync(struct gl_context *ctx, struct gl_sync_object *syncObj,
117 (void) ctx;
    [all...]
shaderobj.h 46 _mesa_init_shader_state(struct gl_context * ctx);
49 _mesa_free_shader_state(struct gl_context *ctx);
53 _mesa_reference_shader(struct gl_context *ctx, struct gl_shader **ptr,
57 _mesa_lookup_shader(struct gl_context *ctx, GLuint name);
60 _mesa_lookup_shader_err(struct gl_context *ctx, GLuint name, const char *caller);
65 _mesa_reference_shader_program(struct gl_context *ctx,
69 _mesa_init_shader(struct gl_context *ctx, struct gl_shader *shader);
72 _mesa_new_shader(struct gl_context *ctx, GLuint name, GLenum type);
75 _mesa_init_shader_program(struct gl_context *ctx, struct gl_shader_program *prog);
78 _mesa_lookup_shader_program(struct gl_context *ctx, GLuint name)
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/evp/
digest.c 124 void EVP_MD_CTX_init(EVP_MD_CTX *ctx)
126 memset(ctx,'\0',sizeof *ctx);
131 EVP_MD_CTX *ctx=OPENSSL_malloc(sizeof *ctx); local
133 if (ctx)
134 EVP_MD_CTX_init(ctx);
136 return ctx;
139 int EVP_DigestInit(EVP_MD_CTX *ctx, const EVP_MD *type)
141 EVP_MD_CTX_init(ctx);
354 EVP_MD_CTX ctx; local
    [all...]
bio_enc.c 110 BIO_ENC_CTX *ctx; local
112 ctx=(BIO_ENC_CTX *)OPENSSL_malloc(sizeof(BIO_ENC_CTX));
113 if (ctx == NULL) return(0);
114 EVP_CIPHER_CTX_init(&ctx->cipher);
116 ctx->buf_len=0;
117 ctx->buf_off=0;
118 ctx->cont=1;
119 ctx->finished=0;
120 ctx->ok=1;
123 bi->ptr=(char *)ctx;
146 BIO_ENC_CTX *ctx; local
234 BIO_ENC_CTX *ctx; local
289 BIO_ENC_CTX *ctx,*dctx; local
413 BIO_ENC_CTX *ctx; local
    [all...]
  /external/openssl/crypto/evp/
digest.c 124 void EVP_MD_CTX_init(EVP_MD_CTX *ctx)
126 memset(ctx,'\0',sizeof *ctx);
131 EVP_MD_CTX *ctx=OPENSSL_malloc(sizeof *ctx); local
133 if (ctx)
134 EVP_MD_CTX_init(ctx);
136 return ctx;
139 int EVP_DigestInit(EVP_MD_CTX *ctx, const EVP_MD *type)
141 EVP_MD_CTX_init(ctx);
354 EVP_MD_CTX ctx; local
    [all...]
bio_enc.c 110 BIO_ENC_CTX *ctx; local
112 ctx=(BIO_ENC_CTX *)OPENSSL_malloc(sizeof(BIO_ENC_CTX));
113 if (ctx == NULL) return(0);
114 EVP_CIPHER_CTX_init(&ctx->cipher);
116 ctx->buf_len=0;
117 ctx->buf_off=0;
118 ctx->cont=1;
119 ctx->finished=0;
120 ctx->ok=1;
123 bi->ptr=(char *)ctx;
146 BIO_ENC_CTX *ctx; local
234 BIO_ENC_CTX *ctx; local
289 BIO_ENC_CTX *ctx,*dctx; local
413 BIO_ENC_CTX *ctx; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/
tri-instanced.c 29 static struct pipe_context *ctx = NULL; variable in typeref:struct:pipe_context
101 ctx->set_viewport_state( ctx, &vp );
130 handle = ctx->create_vertex_elements_state(ctx, 3, ve);
131 ctx->bind_vertex_elements_state(ctx, handle);
137 vbuf[0].buffer = pipe_buffer_create_with_data(ctx,
146 vbuf[1].buffer = pipe_buffer_create_with_data(ctx,
152 ctx->set_vertex_buffers(ctx, 2, vbuf)
    [all...]
vs-test.c 44 static struct pipe_context *ctx = NULL; variable in typeref:struct:pipe_context
103 ctx->transfer_inline_write(ctx,
113 pipe_set_constant_buffer(ctx,
139 ctx->set_viewport_state( ctx, &vp );
156 handle = ctx->create_vertex_elements_state(ctx, 2, ve);
157 ctx->bind_vertex_elements_state(ctx, handle)
    [all...]
  /external/mesa3d/src/gallium/tests/graw/
tri-instanced.c 29 static struct pipe_context *ctx = NULL; variable in typeref:struct:pipe_context
101 ctx->set_viewport_state( ctx, &vp );
130 handle = ctx->create_vertex_elements_state(ctx, 3, ve);
131 ctx->bind_vertex_elements_state(ctx, handle);
137 vbuf[0].buffer = pipe_buffer_create_with_data(ctx,
146 vbuf[1].buffer = pipe_buffer_create_with_data(ctx,
152 ctx->set_vertex_buffers(ctx, 2, vbuf)
    [all...]
vs-test.c 44 static struct pipe_context *ctx = NULL; variable in typeref:struct:pipe_context
103 ctx->transfer_inline_write(ctx,
113 pipe_set_constant_buffer(ctx,
139 ctx->set_viewport_state( ctx, &vp );
156 handle = ctx->create_vertex_elements_state(ctx, 2, ve);
157 ctx->bind_vertex_elements_state(ctx, handle)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/egl/main/
eglcontext.h 67 _eglInitContext(_EGLContext *ctx, _EGLDisplay *dpy,
72 _eglQueryContext(_EGLDriver *drv, _EGLDisplay *dpy, _EGLContext *ctx, EGLint attribute, EGLint *value);
76 _eglBindContext(_EGLContext *ctx, _EGLSurface *draw, _EGLSurface *read,
85 _eglGetContext(_EGLContext *ctx)
87 if (ctx)
88 _eglGetResource(&ctx->Resource);
89 return ctx;
97 _eglPutContext(_EGLContext *ctx)
99 return (ctx) ? _eglPutResource(&ctx->Resource) : EGL_FALSE
133 _EGLContext *ctx = (_EGLContext *) context; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
tgsi_dump.c 51 void (*dump_printf)(struct dump_ctx *ctx, const char *format, ...);
55 dump_ctx_printf(struct dump_ctx *ctx, const char *format, ...)
58 (void)ctx;
66 struct dump_ctx *ctx,
72 ctx->dump_printf( ctx, "%u", e );
74 ctx->dump_printf( ctx, "%s", enums[e] );
77 #define EOL() ctx->dump_printf( ctx, "\n"
212 struct dump_ctx *ctx = (struct dump_ctx *)iter; local
244 struct dump_ctx *ctx = (struct dump_ctx *)iter; local
396 struct dump_ctx ctx; local
409 struct dump_ctx *ctx = (struct dump_ctx *)iter; local
444 struct dump_ctx ctx; local
456 struct dump_ctx *ctx = (struct dump_ctx *) iter; local
473 struct dump_ctx ctx; local
485 struct dump_ctx *ctx = (struct dump_ctx *) iter; local
626 struct dump_ctx ctx; local
640 struct dump_ctx *ctx = (struct dump_ctx *) iter; local
651 struct dump_ctx ctx; local
706 struct str_dump_ctx ctx; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
i830_context.c 59 struct gl_context *ctx = &intel->ctx; local
72 intel_init_texture_formats(ctx);
77 intelInitSpanFuncs(ctx);
78 intelInitTriFuncs(ctx);
81 _tnl_destroy_pipeline(ctx);
82 _tnl_install_pipeline(ctx, intel_pipeline);
87 intel->ctx.Const.MaxTextureUnits = I830_TEX_UNITS;
88 intel->ctx.Const.MaxTextureImageUnits = I830_TEX_UNITS;
89 intel->ctx.Const.MaxTextureCoordUnits = I830_TEX_UNITS
    [all...]
  /external/mesa3d/src/egl/main/
eglcontext.h 67 _eglInitContext(_EGLContext *ctx, _EGLDisplay *dpy,
72 _eglQueryContext(_EGLDriver *drv, _EGLDisplay *dpy, _EGLContext *ctx, EGLint attribute, EGLint *value);
76 _eglBindContext(_EGLContext *ctx, _EGLSurface *draw, _EGLSurface *read,
85 _eglGetContext(_EGLContext *ctx)
87 if (ctx)
88 _eglGetResource(&ctx->Resource);
89 return ctx;
97 _eglPutContext(_EGLContext *ctx)
99 return (ctx) ? _eglPutResource(&ctx->Resource) : EGL_FALSE
133 _EGLContext *ctx = (_EGLContext *) context; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_dump.c 51 void (*dump_printf)(struct dump_ctx *ctx, const char *format, ...);
55 dump_ctx_printf(struct dump_ctx *ctx, const char *format, ...)
58 (void)ctx;
66 struct dump_ctx *ctx,
72 ctx->dump_printf( ctx, "%u", e );
74 ctx->dump_printf( ctx, "%s", enums[e] );
77 #define EOL() ctx->dump_printf( ctx, "\n"
212 struct dump_ctx *ctx = (struct dump_ctx *)iter; local
244 struct dump_ctx *ctx = (struct dump_ctx *)iter; local
396 struct dump_ctx ctx; local
409 struct dump_ctx *ctx = (struct dump_ctx *)iter; local
444 struct dump_ctx ctx; local
456 struct dump_ctx *ctx = (struct dump_ctx *) iter; local
473 struct dump_ctx ctx; local
485 struct dump_ctx *ctx = (struct dump_ctx *) iter; local
626 struct dump_ctx ctx; local
640 struct dump_ctx *ctx = (struct dump_ctx *) iter; local
651 struct dump_ctx ctx; local
706 struct str_dump_ctx ctx; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i915/
i830_context.c 59 struct gl_context *ctx = &intel->ctx; local
72 intel_init_texture_formats(ctx);
77 intelInitSpanFuncs(ctx);
78 intelInitTriFuncs(ctx);
81 _tnl_destroy_pipeline(ctx);
82 _tnl_install_pipeline(ctx, intel_pipeline);
87 intel->ctx.Const.MaxTextureUnits = I830_TEX_UNITS;
88 intel->ctx.Const.MaxTextureImageUnits = I830_TEX_UNITS;
89 intel->ctx.Const.MaxTextureCoordUnits = I830_TEX_UNITS
    [all...]
  /sdk/emulator/opengl/host/libs/GLESv2_dec/
GL2Decoder.cpp 36 GL2Decoder *ctx = (GL2Decoder *) userData; local
38 if (ctx == NULL || ctx->m_GL2library == NULL) {
47 func = (void *) ctx->m_GL2library->findSymbol(name);
84 GL2Decoder *ctx = (GL2Decoder *)self; local
85 ctx->glFinish();
91 GL2Decoder *ctx = (GL2Decoder *) self; local
94 ctx->glGetIntegerv(GL_NUM_COMPRESSED_TEXTURE_FORMATS, &nFormats);
98 ctx->glGetIntegerv(GL_COMPRESSED_TEXTURE_FORMATS, formats);
105 GL2Decoder *ctx = (GL2Decoder *) self local
117 GL2Decoder *ctx = (GL2Decoder *) self; local
124 GL2Decoder *ctx = (GL2Decoder *)self; local
131 GL2Decoder *ctx = (GL2Decoder *)self; local
137 GL2Decoder *ctx = (GL2Decoder *)self; local
    [all...]
  /dalvik/vm/hprof/
Hprof.cpp 44 hprof_context_t *ctx = (hprof_context_t *)calloc(1, sizeof(*ctx)); local
45 if (ctx == NULL) {
51 hprofContextInit(ctx, strdup(outputFileName), fd, false, directToDdms);
53 assert(ctx->memFp != NULL);
55 return ctx;
158 * Free any heap-allocated items in "ctx", and then free "ctx" itself.
160 void hprofFreeContext(hprof_context_t *ctx)
162 assert(ctx != NULL)
196 hprof_context_t *ctx; local
    [all...]
  /external/compiler-rt/lib/tsan/tests/rtl/
tsan_posix.cc 102 CondContext &ctx = *static_cast<CondContext*>(p); local
104 EXPECT_EQ(pthread_mutex_lock(&ctx.m), 0);
105 EXPECT_EQ(ctx.data, 0);
106 ctx.data = 1;
107 EXPECT_EQ(pthread_cond_signal(&ctx.c), 0);
108 EXPECT_EQ(pthread_mutex_unlock(&ctx.m), 0);
110 EXPECT_EQ(pthread_mutex_lock(&ctx.m), 0);
111 while (ctx.data != 2)
112 EXPECT_EQ(pthread_cond_wait(&ctx.c, &ctx.m), 0)
124 CondContext ctx; local
    [all...]
  /hardware/qcom/display/msm8974/libhwcomposer/
hwc_mdpcomp.h 43 int prepare(hwc_context_t *ctx, hwc_display_contents_1_t* list);
45 virtual bool draw(hwc_context_t *ctx, hwc_display_contents_1_t *list) = 0;
56 static bool init(hwc_context_t *ctx);
123 virtual bool allocLayerPipes(hwc_context_t *ctx,
126 ovutils::eDest getMdpPipe(hwc_context_t *ctx, ePipeType type, int mixer);
128 virtual int configure(hwc_context_t *ctx, hwc_layer_1_t *layer,
131 virtual bool arePipesAvailable(hwc_context_t *ctx,
135 void setMDPCompLayerFlags(hwc_context_t *ctx,
138 bool isFrameDoable(hwc_context_t *ctx);
140 bool isFullFrameDoable(hwc_context_t *ctx, hwc_display_contents_1_t* list)
    [all...]
  /external/chromium_org/third_party/libxml/src/include/libxml/
nanoftp.h 72 xmlNanoFTPFreeCtxt (void * ctx);
82 xmlNanoFTPConnect (void *ctx);
84 xmlNanoFTPClose (void *ctx);
86 xmlNanoFTPQuit (void *ctx);
96 xmlNanoFTPUpdateURL (void *ctx,
103 xmlNanoFTPGetResponse (void *ctx);
105 xmlNanoFTPCheckResponse (void *ctx);
111 xmlNanoFTPCwd (void *ctx,
114 xmlNanoFTPDele (void *ctx,
118 xmlNanoFTPGetConnection (void *ctx);
    [all...]

Completed in 1389 milliseconds

<<11121314151617181920>>