HomeSort by relevance Sort by last modified time
    Searched refs:ctx (Results 26 - 50 of 795) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/e2fsprogs/lib/ext2fs/
block.c 40 int ref_offset, struct block_context *ctx)
46 limit = ctx->fs->blocksize >> 2;
47 if (!(ctx->flags & BLOCK_FLAG_DEPTH_TRAVERSE) &&
48 !(ctx->flags & BLOCK_FLAG_DATA_ONLY))
49 ret = (*ctx->func)(ctx->fs, ind_block,
51 ref_offset, ctx->priv_data);
53 ctx->bcount += limit;
56 if (*ind_block >= ctx->fs->super->s_blocks_count ||
57 *ind_block < ctx->fs->super->s_first_data_block)
284 struct block_context ctx; local
    [all...]
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/openssl/crypto/evp/
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
411 BIO_ENC_CTX *ctx; local
    [all...]
e_des.c 68 static int des_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
74 static int des_ecb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
78 DES_ecb_encrypt((DES_cblock *)(in + i), (DES_cblock *)(out + i), ctx->cipher_data, ctx->encrypt);
82 static int des_ofb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
85 DES_ofb64_encrypt(in, out, (long)inl, ctx->cipher_data, (DES_cblock *)ctx->iv, &ctx->num);
89 static int des_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
92 DES_ncbc_encrypt(in, out, (long)inl, ctx->cipher_data
    [all...]
e_des3.c 68 static int des_ede_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
71 static int des_ede3_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
83 #define data(ctx) ((DES_EDE_KEY *)(ctx)->cipher_data)
87 static int des_ede_ecb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
93 &data(ctx)->ks1, &data(ctx)->ks2,
94 &data(ctx)->ks3,
95 ctx->encrypt);
99 static int des_ede_ofb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out
    [all...]
e_xcbc_d.c 68 static int desx_cbc_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
70 static int desx_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
81 #define data(ctx) ((DESX_CBC_KEY *)(ctx)->cipher_data)
103 static int desx_cbc_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
108 DES_set_key_unchecked(deskey,&data(ctx)->ks);
109 memcpy(&data(ctx)->inw[0],&key[8],8);
110 memcpy(&data(ctx)->outw[0],&key[16],8);
115 static int desx_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
118 DES_xcbc_encrypt(in,out,inl,&data(ctx)->ks
    [all...]
  /external/webkit/WebCore/inspector/front-end/
SummaryBar.js 97 var ctx = canvas.getContext("2d");
100 ctx.fillStyle = color;
101 ctx.fillRect(0, 0, 13, 13);
103 var gradient = ctx.createLinearGradient(0, 0, 13, 13);
107 ctx.fillStyle = gradient;
108 ctx.fillRect(0, 0, 13, 13);
110 gradient = ctx.createLinearGradient(13, 13, 0, 0);
114 ctx.fillStyle = gradient;
115 ctx.fillRect(0, 0, 13, 13);
117 ctx.strokeStyle = "rgba(0, 0, 0, 0.6)"
    [all...]
  /external/openssl/crypto/bio/
bf_buff.c 95 BIO_F_BUFFER_CTX *ctx; local
97 ctx=(BIO_F_BUFFER_CTX *)OPENSSL_malloc(sizeof(BIO_F_BUFFER_CTX));
98 if (ctx == NULL) return(0);
99 ctx->ibuf=(char *)OPENSSL_malloc(DEFAULT_BUFFER_SIZE);
100 if (ctx->ibuf == NULL) { OPENSSL_free(ctx); return(0); }
101 ctx->obuf=(char *)OPENSSL_malloc(DEFAULT_BUFFER_SIZE);
102 if (ctx->obuf == NULL) { OPENSSL_free(ctx->ibuf); OPENSSL_free(ctx); return(0);
134 BIO_F_BUFFER_CTX *ctx; local
200 BIO_F_BUFFER_CTX *ctx; local
273 BIO_F_BUFFER_CTX *ctx; local
457 BIO_F_BUFFER_CTX *ctx; local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/rsn_supp/
wpa_i.h 50 struct wpa_sm_ctx *ctx; member in struct:wpa_sm
114 WPA_ASSERT(sm->ctx->set_state);
115 sm->ctx->set_state(sm->ctx->ctx, state);
120 WPA_ASSERT(sm->ctx->get_state);
121 return sm->ctx->get_state(sm->ctx->ctx);
126 WPA_ASSERT(sm->ctx->deauthenticate)
    [all...]
  /bootable/bootloader/legacy/libc/
sha.c 33 static void SHA1_transform(SHA_CTX *ctx) {
36 uint8_t *p = ctx->buf;
51 A = ctx->state[0];
52 B = ctx->state[1];
53 C = ctx->state[2];
54 D = ctx->state[3];
55 E = ctx->state[4];
76 ctx->state[0] += A;
77 ctx->state[1] += B;
78 ctx->state[2] += C
135 SHA_CTX ctx; local
    [all...]
  /external/emma/core/java12/com/vladium/util/
IClassLoadStrategy.java 28 ClassLoader getClassLoader (ClassLoadContext ctx);
  /external/webkit/JavaScriptCore/API/
JSProfilerPrivate.cpp 35 void JSStartProfiling(JSContextRef ctx, JSStringRef title)
37 Profiler::profiler()->startProfiling(toJS(ctx), title->ustring());
40 void JSEndProfiling(JSContextRef ctx, JSStringRef title)
42 ExecState* exec = toJS(ctx);
  /external/webkit/WebCore/html/canvas/
WebGLFramebuffer.cpp 35 PassRefPtr<WebGLFramebuffer> WebGLFramebuffer::create(WebGLRenderingContext* ctx)
37 return adoptRef(new WebGLFramebuffer(ctx));
40 WebGLFramebuffer::WebGLFramebuffer(WebGLRenderingContext* ctx)
41 : CanvasObject(ctx)
WebGLProgram.cpp 35 PassRefPtr<WebGLProgram> WebGLProgram::create(WebGLRenderingContext* ctx)
37 return adoptRef(new WebGLProgram(ctx));
40 WebGLProgram::WebGLProgram(WebGLRenderingContext* ctx)
41 : CanvasObject(ctx)
  /external/wpa_supplicant/
aes.h 19 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt);
20 void aes_encrypt_deinit(void *ctx);
22 void aes_decrypt(void *ctx, const u8 *crypt, u8 *plain);
23 void aes_decrypt_deinit(void *ctx);
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
aes.h 19 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt);
20 void aes_encrypt_deinit(void *ctx);
22 void aes_decrypt(void *ctx, const u8 *crypt, u8 *plain);
23 void aes_decrypt_deinit(void *ctx);
  /external/openssl/crypto/engine/
eng_dyn.c 73 static int dynamic_load(ENGINE *e, dynamic_data_ctx *ctx);
169 dynamic_data_ctx *ctx = (dynamic_data_ctx *)ptr; local
170 if(ctx->dynamic_dso)
171 DSO_free(ctx->dynamic_dso);
172 if(ctx->DYNAMIC_LIBNAME)
173 OPENSSL_free((void*)ctx->DYNAMIC_LIBNAME);
174 if(ctx->engine_id)
175 OPENSSL_free((void*)ctx->engine_id);
176 if(ctx->dirs)
177 sk_pop_free(ctx->dirs, int_free_str)
234 dynamic_data_ctx *ctx; local
317 dynamic_data_ctx *ctx = dynamic_get_data_ctx(e); local
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/
IItemVisitor.java 19 Object visit (AllItem item, Object ctx);
20 Object visit (PackageItem item, Object ctx);
21 Object visit (SrcFileItem item, Object ctx);
22 Object visit (ClassItem item, Object ctx);
23 Object visit (MethodItem item, Object ctx);
  /external/e2fsprogs/e2fsck/
pass3.c 44 static void check_root(e2fsck_t ctx);
45 static int check_directory(e2fsck_t ctx, ext2_ino_t ino,
47 static void fix_dotdot(e2fsck_t ctx, ext2_ino_t ino, ext2_ino_t parent);
52 void e2fsck_pass3(e2fsck_t ctx)
54 ext2_filsys fs = ctx->fs;
73 if (!(ctx->options & E2F_OPT_PREEN))
74 fix_problem(ctx, PR_3_PASS_HEADER, &pctx);
83 fix_problem(ctx, PR_3_ALLOCATE_IBITMAP_ERROR, &pctx);
84 ctx->flags |= E2F_FLAG_ABORT;
88 if (ctx->options & E2F_OPT_TIME)
610 e2fsck_t ctx; member in struct:fix_dotdot_struct
696 e2fsck_t ctx; member in struct:expand_dir_struct
711 e2fsck_t ctx; local
    [all...]
unix.c 75 static void usage(e2fsck_t ctx)
82 ctx->program_name);
102 static void show_stats(e2fsck_t ctx)
104 ext2_filsys fs = ctx->fs;
111 dir_links = 2 * ctx->fs_directory_count - 1;
112 num_files = ctx->fs_total_count - dir_links;
113 num_links = ctx->fs_links_count - dir_links;
121 frag_percent = (10000 * ctx->fs_fragmented) / inodes_used;
126 ctx->device_name, inodes_used, inodes,
135 ctx->fs_fragmented)
491 e2fsck_t ctx = e2fsck_global_ctx; local
502 e2fsck_t ctx = e2fsck_global_ctx; local
513 e2fsck_t ctx = e2fsck_global_ctx; local
590 e2fsck_t ctx; local
886 e2fsck_t ctx; local
    [all...]
  /prebuilt/windows/sdl/host/include/SDL/
SDL_rwops.h 101 #define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
102 #define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, SEEK_CUR)
103 #define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
104 #define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n
    [all...]
  /external/openssl/crypto/pkcs7/
bio_ber.c 129 BIO_BER_CTX *ctx; local
131 ctx=(BIO_BER_CTX *)OPENSSL_malloc(sizeof(BIO_BER_CTX));
132 if (ctx == NULL) return(0);
134 memset((char *)ctx,0,sizeof(BIO_BER_CTX));
137 bi->ptr=(char *)ctx;
156 int bio_ber_get_header(BIO *bio, BIO_BER_CTX *ctx)
170 if (ctx->buf_off != 0)
172 p=ctx->buf;
173 j=ctx->buf_off;
174 n=ctx->buf_len-j
229 BIO_BER_CTX *ctx; local
276 BIO_ENC_CTX *ctx; local
331 BIO_ENC_CTX *ctx,*dctx; local
451 BIO_ENC_CTX *ctx; local
    [all...]
  /dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
NativeCrypto.java 45 public static native void EVP_free(int ctx);
49 public static native void EVP_DigestInit(int ctx, String algorithm);
51 public static native void EVP_DigestUpdate(int ctx, byte[] buffer, int offset, int length);
53 public static native int EVP_DigestFinal(int ctx, byte[] hash, int offset);
55 public static native int EVP_DigestSize(int ctx);
57 public static native int EVP_DigestBlockSize(int ctx);
61 public static native void EVP_VerifyInit(int ctx, String algorithm);
63 public static native void EVP_VerifyUpdate(int ctx, byte[] buffer, int offset, int length);
65 public static native int EVP_VerifyFinal(int ctx, byte[] signature, int offset, int length, int key);
  /external/emma/core/java12/com/vladium/jcd/cls/attribute/
IAttributeVisitor.java 20 Object visit (GenericAttribute_info attribute, Object ctx);
22 Object visit (CodeAttribute_info attribute, Object ctx);
23 Object visit (ConstantValueAttribute_info attribute, Object ctx);
24 Object visit (ExceptionsAttribute_info attribute, Object ctx);
25 Object visit (LineNumberTableAttribute_info attribute, Object ctx);
26 Object visit (SourceFileAttribute_info attribute, Object ctx);
27 Object visit (SyntheticAttribute_info attribute, Object ctx);
28 Object visit (BridgeAttribute_info attribute, Object ctx);
29 Object visit (InnerClassesAttribute_info attribute, Object ctx);
  /external/openssl/crypto/
LPdir_vms.c 63 const char *LP_find_file(LP_DIR_CTX **ctx, const char *directory)
73 if (ctx == NULL || directory == NULL)
80 if (*ctx == NULL)
108 *ctx = (LP_DIR_CTX *)malloc(sizeof(LP_DIR_CTX));
109 if (*ctx == NULL)
114 memset(*ctx, '\0', sizeof(LP_DIR_CTX));
116 strcpy((*ctx)->filespec,directory);
117 strcat((*ctx)->filespec,"*.*;");
118 (*ctx)->filespec_dsc.dsc$w_length = filespeclen;
119 (*ctx)->filespec_dsc.dsc$b_dtype = DSC$K_DTYPE_T
    [all...]

Completed in 406 milliseconds

12 3 4 5 6 7 8 91011>>