HomeSort by relevance Sort by last modified time
    Searched refs:ctx (Results 826 - 850 of 3875) sorted by null

<<31323334353637383940>>

  /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/openssl/crypto/bn/
bn_mod.c 119 int BN_mod(BIGNUM *rem, const BIGNUM *m, const BIGNUM *d, BN_CTX *ctx)
121 return(BN_div(NULL,rem,m,d,ctx));
127 int BN_nnmod(BIGNUM *r, const BIGNUM *m, const BIGNUM *d, BN_CTX *ctx)
132 if (!(BN_mod(r,m,d,ctx)))
141 int BN_mod_add(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m, BN_CTX *ctx)
144 return BN_nnmod(r, r, m, ctx);
159 int BN_mod_sub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m, BN_CTX *ctx)
162 return BN_nnmod(r, r, m, ctx);
179 BN_CTX *ctx)
188 BN_CTX_start(ctx);
    [all...]
bn_prime.c 130 const BIGNUM *a1_odd, int k, BN_CTX *ctx, BN_MONT_CTX *mont);
133 const BIGNUM *add, const BIGNUM *rem, BN_CTX *ctx);
135 const BIGNUM *add, const BIGNUM *rem, BN_CTX *ctx);
165 BN_CTX *ctx; local
168 ctx=BN_CTX_new();
169 if (ctx == NULL) goto err;
170 BN_CTX_start(ctx);
171 t = BN_CTX_get(ctx);
183 if (!probable_prime_dh_safe(ret,bits,add,rem,ctx))
188 if (!probable_prime_dh(ret,bits,add,rem,ctx))
248 BN_CTX *ctx = NULL; local
    [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...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
TimelineMemoryOverview.js 83 var ctx = this._context;
84 ctx.beginPath();
85 ctx.moveTo(0, this._canvas.height);
92 ctx.lineTo(0, height - y);
94 ctx.lineTo(x, height - y);
96 ctx.lineTo(x, height - y);
98 ctx.lineTo(width, height - y);
99 ctx.lineTo(width, this._canvas.height);
100 ctx.lineTo(0, this._canvas.height);
101 ctx.closePath()
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/
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/openssl/openssl/crypto/evp/
evp_aead.c 86 int EVP_AEAD_CTX_init(EVP_AEAD_CTX *ctx, const EVP_AEAD *aead,
90 ctx->aead = aead;
96 return aead->init(ctx, key, key_len, tag_len);
99 void EVP_AEAD_CTX_cleanup(EVP_AEAD_CTX *ctx)
101 if (ctx->aead == NULL)
103 ctx->aead->cleanup(ctx);
104 ctx->aead = NULL;
125 ssize_t EVP_AEAD_CTX_seal(const EVP_AEAD_CTX *ctx,
131 size_t possible_out_len = in_len + ctx->aead->overhead
    [all...]
openbsd_hw.c 84 #define CDATA(ctx) EVP_C_DATA(session_op,ctx)
120 static int dev_crypto_cleanup(EVP_CIPHER_CTX *ctx)
122 if(ioctl(fd,CIOCFSESSION,&CDATA(ctx)->ses) == -1)
125 OPENSSL_free(CDATA(ctx)->key);
130 static int dev_crypto_init_key(EVP_CIPHER_CTX *ctx,int cipher,
133 if(!dev_crypto_init(CDATA(ctx)))
136 CDATA(ctx)->key=OPENSSL_malloc(MAX_HW_KEY);
138 assert(ctx->cipher->iv_len <= MAX_HW_IV);
140 memcpy(CDATA(ctx)->key,key,klen)
    [all...]
  /external/mesa3d/src/gallium/tests/graw/
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/qemu/distrib/sdl-1.2.15/include/
SDL_rwops.h 122 #define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
123 #define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
124 #define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
125 #define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n
    [all...]
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_rwops.h 122 #define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
123 #define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
124 #define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
125 #define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n
    [all...]
  /prebuilts/tools/linux-x86/sdl/include/SDL/
SDL_rwops.h 122 #define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
123 #define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
124 #define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
125 #define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n
    [all...]
  /prebuilts/tools/windows/sdl/include/SDL/
SDL_rwops.h 122 #define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
123 #define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
124 #define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
125 #define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/vbo/
vbo_exec_array.c 68 vbo_check_buffers_are_unmapped(struct gl_context *ctx)
70 struct vbo_context *vbo = vbo_context(ctx);
87 vbo_get_minmax_index(struct gl_context *ctx,
93 const GLboolean restart = ctx->Array.PrimitiveRestart;
94 const GLuint restartIndex = ctx->Array.RestartIndex;
102 indices = ctx->Driver.MapBufferRange(ctx, (GLintptr) indices, size,
179 ctx->Driver.UnmapBuffer(ctx, ib->obj);
187 vbo_get_minmax_indices(struct gl_context *ctx,
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/
bn_prime.c 130 const BIGNUM *a1_odd, int k, BN_CTX *ctx, BN_MONT_CTX *mont);
133 const BIGNUM *add, const BIGNUM *rem, BN_CTX *ctx);
135 const BIGNUM *add, const BIGNUM *rem, BN_CTX *ctx);
165 BN_CTX *ctx; local
168 ctx=BN_CTX_new();
169 if (ctx == NULL) goto err;
170 BN_CTX_start(ctx);
171 t = BN_CTX_get(ctx);
183 if (!probable_prime_dh_safe(ret,bits,add,rem,ctx))
188 if (!probable_prime_dh(ret,bits,add,rem,ctx))
248 BN_CTX *ctx = NULL; local
    [all...]
  /external/mesa3d/src/mesa/vbo/
vbo_exec_array.c 68 vbo_check_buffers_are_unmapped(struct gl_context *ctx)
70 struct vbo_context *vbo = vbo_context(ctx);
87 vbo_get_minmax_index(struct gl_context *ctx,
93 const GLboolean restart = ctx->Array.PrimitiveRestart;
94 const GLuint restartIndex = ctx->Array.RestartIndex;
102 indices = ctx->Driver.MapBufferRange(ctx, (GLintptr) indices, size,
179 ctx->Driver.UnmapBuffer(ctx, ib->obj);
187 vbo_get_minmax_indices(struct gl_context *ctx,
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
nvc0_vbo_translate.c 40 nvc0_push_context_init(struct nvc0_context *nvc0, struct push_context *ctx)
42 ctx->push = nvc0->base.pushbuf;
44 ctx->translate = nvc0->vertex->translate;
45 ctx->vertex_size = nvc0->vertex->size;
47 ctx->need_vertex_id =
50 ctx->edgeflag.value = TRUE;
51 ctx->edgeflag.enabled = nvc0->vertprog->vp.edgeflag < PIPE_MAX_ATTRIBS;
54 ctx->edgeflag.data = NULL;
55 ctx->edgeflag.stride = 0;
82 nvc0_push_map_idxbuf(struct push_context *ctx, struct nvc0_context *nvc0
432 struct push_context ctx; local
    [all...]
  /external/mesa3d/src/gallium/drivers/nvc0/
nvc0_vbo_translate.c 40 nvc0_push_context_init(struct nvc0_context *nvc0, struct push_context *ctx)
42 ctx->push = nvc0->base.pushbuf;
44 ctx->translate = nvc0->vertex->translate;
45 ctx->vertex_size = nvc0->vertex->size;
47 ctx->need_vertex_id =
50 ctx->edgeflag.value = TRUE;
51 ctx->edgeflag.enabled = nvc0->vertprog->vp.edgeflag < PIPE_MAX_ATTRIBS;
54 ctx->edgeflag.data = NULL;
55 ctx->edgeflag.stride = 0;
82 nvc0_push_map_idxbuf(struct push_context *ctx, struct nvc0_context *nvc0
432 struct push_context ctx; local
    [all...]
  /external/e2fsprogs/e2fsck/
e2fsck.h 226 int (*progress)(e2fsck_t ctx, int pass, unsigned long cur,
371 extern void e2fsck_pass1(e2fsck_t ctx);
372 extern void e2fsck_pass1_dupblocks(e2fsck_t ctx, char *block_buf);
373 extern void e2fsck_pass2(e2fsck_t ctx);
374 extern void e2fsck_pass3(e2fsck_t ctx);
375 extern void e2fsck_pass4(e2fsck_t ctx);
376 extern void e2fsck_pass5(e2fsck_t ctx);
380 extern errcode_t e2fsck_reset_context(e2fsck_t ctx);
381 extern void e2fsck_free_context(e2fsck_t ctx);
382 extern int e2fsck_run(e2fsck_t ctx);
    [all...]
  /external/chromium_org/chrome/installer/util/
installation_validator.h 95 typedef void (*CommandValidatorFn)(const ProductContext& ctx,
106 const ProductContext& ctx,
109 const ProductContext& ctx,
112 virtual bool UsageStatsAllowed(const ProductContext& ctx) const = 0;
120 const ProductContext& ctx,
123 const ProductContext& ctx,
125 virtual bool UsageStatsAllowed(const ProductContext& ctx) const OVERRIDE;
133 const ProductContext& ctx,
136 const ProductContext& ctx,
138 virtual bool UsageStatsAllowed(const ProductContext& ctx) const OVERRIDE
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
gen7_sf_state.c 36 struct gl_context *ctx = &intel->ctx; local
40 bool shade_model_flat = ctx->Light.ShadeModel == GL_FLAT;
47 bool render_to_fbo = _mesa_is_user_fbo(ctx->DrawBuffer);
58 if ((ctx->Point.SpriteOrigin == GL_LOWER_LEFT) != render_to_fbo) {
81 if (ctx->Point.PointSprite &&
83 ctx->Point.CoordReplace[attr - FRAG_ATTRIB_TEX0]) {
107 ctx->VertexProgram._TwoSideEnabled,
162 struct gl_context *ctx = &intel->ctx; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
gen7_sf_state.c 36 struct gl_context *ctx = &intel->ctx; local
40 bool shade_model_flat = ctx->Light.ShadeModel == GL_FLAT;
47 bool render_to_fbo = _mesa_is_user_fbo(ctx->DrawBuffer);
58 if ((ctx->Point.SpriteOrigin == GL_LOWER_LEFT) != render_to_fbo) {
81 if (ctx->Point.PointSprite &&
83 ctx->Point.CoordReplace[attr - FRAG_ATTRIB_TEX0]) {
107 ctx->VertexProgram._TwoSideEnabled,
162 struct gl_context *ctx = &intel->ctx; local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/ec/
ecp_oct.c 71 const BIGNUM *x_, int y_bit, BN_CTX *ctx)
80 if (ctx == NULL)
82 ctx = new_ctx = BN_CTX_new();
83 if (ctx == NULL)
89 BN_CTX_start(ctx);
90 tmp1 = BN_CTX_get(ctx);
91 tmp2 = BN_CTX_get(ctx);
92 x = BN_CTX_get(ctx);
93 y = BN_CTX_get(ctx);
102 if (!BN_nnmod(x, x_, &group->field,ctx)) goto err
    [all...]
  /external/openssl/crypto/ec/
ecp_oct.c 71 const BIGNUM *x_, int y_bit, BN_CTX *ctx)
80 if (ctx == NULL)
82 ctx = new_ctx = BN_CTX_new();
83 if (ctx == NULL)
89 BN_CTX_start(ctx);
90 tmp1 = BN_CTX_get(ctx);
91 tmp2 = BN_CTX_get(ctx);
92 x = BN_CTX_get(ctx);
93 y = BN_CTX_get(ctx);
102 if (!BN_nnmod(x, x_, &group->field,ctx)) goto err
    [all...]
  /external/openssl/crypto/evp/
openbsd_hw.c 84 #define CDATA(ctx) EVP_C_DATA(session_op,ctx)
120 static int dev_crypto_cleanup(EVP_CIPHER_CTX *ctx)
122 if(ioctl(fd,CIOCFSESSION,&CDATA(ctx)->ses) == -1)
125 OPENSSL_free(CDATA(ctx)->key);
130 static int dev_crypto_init_key(EVP_CIPHER_CTX *ctx,int cipher,
133 if(!dev_crypto_init(CDATA(ctx)))
136 CDATA(ctx)->key=OPENSSL_malloc(MAX_HW_KEY);
138 assert(ctx->cipher->iv_len <= MAX_HW_IV);
140 memcpy(CDATA(ctx)->key,key,klen)
    [all...]

Completed in 2920 milliseconds

<<31323334353637383940>>