HomeSort by relevance Sort by last modified time
    Searched defs:ctx (Results 1 - 25 of 452) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /development/tools/emulator/opengl/system/GLESv1_enc/
GLEncoderUtils.cpp 22 GLEncoder *ctx = (GLEncoder *)self; local
23 return ctx->pixelDataSize(width, height, format, type, pack);
  /external/chromium/chrome/browser/resources/shared/css/
tree.css.js 8 var ctx = document.getCSSCanvasContext('2d', 'tree-triangle', a + 1, a2 + 2); variable
10 ctx.fillStyle = '#000';
11 ctx.translate(.5, .5);
13 ctx.beginPath();
14 ctx.moveTo(0, 0);
15 ctx.lineTo(0, 1);
16 ctx.lineTo(a2, 1 + a2);
17 ctx.lineTo(a, 1);
18 ctx.lineTo(a, 0);
19 ctx.closePath()
    [all...]
  /external/wpa_supplicant_8/src/crypto/
aes-encblock.c 31 void *ctx; local
32 ctx = aes_encrypt_init(key, 16);
33 if (ctx == NULL)
35 aes_encrypt(ctx, in, out);
36 aes_encrypt_deinit(ctx);
aes-unwrap.c 35 void *ctx; local
42 ctx = aes_decrypt_init(kek, 16);
43 if (ctx == NULL)
60 aes_decrypt(ctx, b, b);
66 aes_decrypt_deinit(ctx);
aes-wrap.c 35 void *ctx; local
44 ctx = aes_encrypt_init(kek, 16);
45 if (ctx == NULL)
60 aes_encrypt(ctx, b, b);
67 aes_encrypt_deinit(ctx);
aes-cbc.c 32 void *ctx; local
37 ctx = aes_encrypt_init(key, 16);
38 if (ctx == NULL)
46 aes_encrypt(ctx, cbc, cbc);
50 aes_encrypt_deinit(ctx);
65 void *ctx; local
70 ctx = aes_decrypt_init(key, 16);
71 if (ctx == NULL)
78 aes_decrypt(ctx, pos, pos);
84 aes_decrypt_deinit(ctx);
    [all...]
  /development/tools/emulator/opengl/tests/gles_android_wrapper/
glesv1_emul_ifc.cpp 12 gl_wrapper_context_t *ctx = new gl_wrapper_context_t; local
13 if (ctx == NULL) {
17 ctx->initDispatchByName(ApiInitializer::s_getProc, initializer);
20 return ctx;
glesv2_emul_ifc.cpp 12 gl2_wrapper_context_t *ctx = new gl2_wrapper_context_t; local
13 if (ctx == NULL) {
17 ctx->initDispatchByName(ApiInitializer::s_getProc, initializer);
20 return ctx;
  /external/openssl/crypto/
o_dir_test.c 50 OPENSSL_DIR_CTX *ctx = NULL; local
53 while((result = OPENSSL_DIR_read(&ctx, CURRDIR)) != NULL)
64 if (!OPENSSL_DIR_end(&ctx))
  /development/tools/emulator/opengl/system/GLESv2_enc/
GL2EncoderUtils.cpp 23 GL2Encoder *ctx = (GL2Encoder *)self; local
24 assert (ctx->state() != NULL);
25 return ctx->state()->pixelDataSize(width, height, format, type, pack);
36 GL2Encoder * ctx = (GL2Encoder *) self; local
37 assert (ctx->shared() != NULL);
38 return ctx->shared()->getProgramUniformType(program, location);
  /external/chromium/third_party/libjingle/source/talk/base/
stringdigest.cc 36 MD5_CTX ctx; local
37 MD5Init(&ctx);
38 MD5Update(&ctx, const_cast<unsigned char *>(reinterpret_cast<const unsigned char *>(data.data())), static_cast<unsigned int>(data.size()));
40 MD5Final(digest, &ctx);
  /external/e2fsprogs/lib/ext2fs/
dblist_dir.c 39 struct dir_context ctx; local
43 ctx.dir = 0;
44 ctx.flags = flags;
46 ctx.buf = block_buf;
48 retval = ext2fs_get_mem(dblist->fs->blocksize, &ctx.buf);
52 ctx.func = func;
53 ctx.priv_data = priv_data;
54 ctx.errcode = 0;
56 retval = ext2fs_dblist_iterate(dblist, db_dir_proc, &ctx);
59 ext2fs_free_mem(&ctx.buf)
68 struct dir_context *ctx; local
    [all...]
  /external/srtp/crypto/include/
hmac.h 54 sha1_ctx_t ctx; member in struct:__anon11431
  /external/wpa_supplicant_8/src/drivers/
netlink.h 22 void *ctx; member in struct:netlink_config
23 void (*newlink_cb)(void *ctx, struct ifinfomsg *ifi, u8 *buf,
25 void (*dellink_cb)(void *ctx, struct ifinfomsg *ifi, u8 *buf,
rfkill.h 21 void *ctx; member in struct:rfkill_config
23 void (*blocked_cb)(void *ctx);
24 void (*unblocked_cb)(void *ctx);
  /external/elfutils/tests/
asm-tst4.c 30 AsmCtx_t *ctx; local
36 ctx = asm_begin (fname, false, EM_386, ELFCLASS32, ELFDATA2LSB);
37 if (ctx == NULL)
53 scn = asm_newscn (ctx, buf, SHT_PROGBITS, SHF_ALLOC | SHF_WRITE);
58 asm_abort (ctx);
67 asm_abort (ctx);
73 if (asm_end (ctx) != 0)
76 asm_abort (ctx);
asm-tst5.c 32 AsmCtx_t *ctx; local
38 ctx = asm_begin (fname, false, EM_386, ELFCLASS32, ELFDATA2LSB);
39 if (ctx == NULL)
55 scn = asm_newscn (ctx, buf, SHT_PROGBITS, SHF_ALLOC | SHF_WRITE);
60 asm_abort (ctx);
70 asm_abort (ctx);
79 asm_abort (ctx);
85 if (asm_end (ctx) != 0)
88 asm_abort (ctx);
asm-tst6.c 30 AsmCtx_t *ctx; local
36 ctx = asm_begin (fname, false, EM_386, ELFCLASS32, ELFDATA2LSB);
37 if (ctx == NULL)
51 grp = asm_newscngrp (ctx, buf, NULL, 0);
55 asm_abort (ctx);
59 scn = asm_newscn_ingrp (ctx, ".data", SHT_PROGBITS,
65 asm_abort (ctx);
76 asm_abort (ctx);
85 asm_abort (ctx);
94 asm_abort (ctx);
    [all...]
  /external/openssl/crypto/dh/
dh_check.c 76 BN_CTX *ctx=NULL; local
81 ctx=BN_CTX_new();
82 if (ctx == NULL) goto err;
107 if (!BN_is_prime_ex(dh->p,BN_prime_checks,ctx,NULL))
112 if (!BN_is_prime_ex(q,BN_prime_checks,ctx,NULL))
117 if (ctx != NULL) BN_CTX_free(ctx);
dh_gen.c 107 BN_CTX *ctx=NULL; local
109 ctx=BN_CTX_new();
110 if (ctx == NULL) goto err;
111 BN_CTX_start(ctx);
112 t1 = BN_CTX_get(ctx);
113 t2 = BN_CTX_get(ctx);
169 if (ctx != NULL)
171 BN_CTX_end(ctx);
172 BN_CTX_free(ctx);
  /development/tools/emulator/opengl/tests/ut_renderer/
RendererContext.cpp 22 EGLContext ctx; local
28 ctx = eglCreateContext(dpy, config, shared, context_attributes);
31 return new RendererContext(dpy, ctx, version);
  /external/e2fsprogs/e2fsck/
ehandler.c 33 e2fsck_t ctx; local
35 ctx = (e2fsck_t) fs->priv_data;
36 if (ctx->flags & E2F_FLAG_EXITING)
59 preenhalt(ctx);
60 if (ask(ctx, _("Ignore error"), 1)) {
61 if (ask(ctx, _("Force rewrite"), 1))
80 e2fsck_t ctx; local
82 ctx = (e2fsck_t) fs->priv_data;
83 if (ctx->flags & E2F_FLAG_EXITING)
108 preenhalt(ctx);
    [all...]
  /external/mesa3d/src/glsl/
hir_field_selection.cpp 35 void *ctx = state; local
65 result = new(ctx) ir_dereference_record(op,
91 result = new(ctx) ir_constant(op->type->array_size());
101 return result ? result : ir_call::get_error_instruction(ctx);
  /external/openssl/crypto/dsa/
dsa_key.c 79 BN_CTX *ctx=NULL; local
82 if ((ctx=BN_CTX_new()) == NULL) goto err;
115 if (!BN_mod_exp(pub_key,dsa->g,prk,dsa->p,ctx)) goto err;
125 if (ctx != NULL) BN_CTX_free(ctx);
  /external/openssl/crypto/rsa/
rsa_chk.c 59 BN_CTX *ctx; local
68 ctx = BN_CTX_new();
70 m == NULL || ctx == NULL)
98 r = BN_mul(i, key->p, key->q, ctx);
115 r = BN_mul(l, i, j, ctx);
117 r = BN_gcd(m, i, j, ctx);
119 r = BN_div(k, NULL, l, m, ctx); /* remainder is 0 */
122 r = BN_mod_mul(i, key->d, key->e, k, ctx);
137 r = BN_mod(j, key->d, i, ctx);
151 r = BN_mod(j, key->d, i, ctx);
    [all...]

Completed in 993 milliseconds

1 2 3 4 5 6 7 8 91011>>