Searched refs:cref (Results 1 - 25 of 29) sorted by relevance

12

/macosx-10.9.5/CommonCrypto-60049/lib/
H A DCommonCryptoCASTShoefly.c36 encCryptorRef = &key->cref;
46 CCCryptorEncryptDataBlock(key->cref, NULL, in, kCCBlockSizeCAST, out);
48 CCCryptorDecryptDataBlock(key->cref, NULL, in, kCCBlockSizeCAST, out);
H A DCommonCryptoAESShoefly.c46 &ctx->ctx, kCCContextSizeGENERIC, &ctx->cref, &dataUsed);
56 &ctx->ctx, kCCContextSizeGENERIC, &ctx->cref, &dataUsed);
66 &ctx->ctx, kCCContextSizeGENERIC, &ctx->cref, &dataUsed);
76 &ctx->ctx, kCCContextSizeGENERIC, &ctx->cref, &dataUsed);
85 (void) CCCryptorEncryptDataBlock(ctx->cref, in_iv, in_blk, num_blk * AES_BLOCK_SIZE, out_blk);
94 (void) CCCryptorDecryptDataBlock(ctx->cref, in_iv, in_blk, num_blk * AES_BLOCK_SIZE, out_blk);
/macosx-10.9.5/OpenSSH-186/osslshim/ossl/
H A Dossl-aes-cc.c67 key->data, AES_KEYST_SIZE, &key->cref, NULL);
83 if (key && key->cref) {
84 CCCryptorRelease(key->cref);
85 key->cref = NULL;
108 (void)CCCryptorUpdate(key->cref, (const void *)in, kCCBlockSizeAES128,
117 (void)CCCryptorUpdate(key->cref, (const void *)in, kCCBlockSizeAES128,
H A Dossl-aes.h46 CCCryptorRef cref; member in struct:aes_key_st
/macosx-10.9.5/CommonCrypto-60049/test/CommonCrypto/
H A DCommonCryptoReset.c33 CCCryptorRef cref;
46 ccNoPadding, NULL, key, 16, NULL, 0, 0, 0, &cref);
50 retval = CCCryptorUpdate(cref, plain, 16, cipher1, 16, &moved);
54 retval = CCCryptorUpdate(cref, plain, 16, cipher2, 16, &moved);
60 retval = CCCryptorReset(cref, NULL);
64 retval = CCCryptorUpdate(cref, plain, 16, cipher3, 16, &moved);
70 retval = CCCryptorReset(cref, nulliv);
74 retval = CCCryptorUpdate(cref, plain, 16, cipher4, 16, &moved);
80 retval = CCCryptorUpdate(cref, plain, 16, cipher5, 16, &moved);
86 retval = CCCryptorFinal(cref, unuse
[all...]
H A DCCCryptorTestFuncs.c24 CCCryptorRef cref; local
28 if((retval = CCCryptorCreateWithMode(op, mode, alg, padding, iv, key, keyLength, tweak, tweakLength, numRounds, options, &cref)) != kCCSuccess) {
32 if((retval = CCCryptorUpdate(cref, dataIn, dataInLength, dataOut, dataOutAvailable, &moved)) != kCCSuccess) {
40 if((retval = CCCryptorFinal(cref, dataOut, dataOutAvailable, &moved)) != kCCSuccess) {
46 CCCryptorRelease(cref);
62 CCCryptorRef cref; local
68 retval = CCCryptorCreate(op, alg, options, key, keyLength, iv, &cref);
81 retval = CCCryptorUpdate(cref, dataIn, p1, dataOut, dataOutAvailable, dataOutMoved);
92 retval = CCCryptorUpdate(cref, dataIn, p2, dataOut, dataOutAvailable, &newmoved);
112 retval = CCCryptorFinal(cref, dataOu
136 CCCryptorRef cref; local
484 CCCryptorRef cref; local
[all...]
/macosx-10.9.5/CPANInternal-140/DBIx-Class/lib/DBIx/Class/
H A DComponentised.pm26 my $cref = $_->can ('store_column')
28 push @broken, $_ if B::svref_2object($cref)->STASH->NAME ne 'DBIx::Class::Row';
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/tr1/
H A Dref_fwd.h55 cref(const _Tp& __t);
/macosx-10.9.5/CommonCrypto-60049/include/
H A DlionCompat.h35 CCCryptorRef cref; member in struct:__anon667
H A Daes.h53 CCCryptorRef cref; member in struct:__anon665
59 CCCryptorRef cref; member in struct:__anon666
/macosx-10.9.5/ruby-104/ruby/
H A Deval.c337 const NODE *cref = rb_vm_cref(); local
339 while (cref && cref->nd_next) {
340 VALUE klass = cref->nd_clss;
341 if (!(cref->flags & NODE_FL_CREF_PUSHED_BY_EVAL) &&
345 cref = cref->nd_next;
375 const NODE *cref = rb_vm_cref(); local
384 while (cref) {
385 klass = cref
1068 rb_using_refinement(NODE *cref, VALUE klass, VALUE module) argument
1110 NODE *cref = (NODE *) arg; local
1117 rb_using_module(NODE *cref, VALUE module) argument
1350 NODE *cref = rb_vm_cref(); local
[all...]
H A Dvm_eval.c15 static inline VALUE vm_yield_with_cref(rb_thread_t *th, int argc, const VALUE *argv, const NODE *cref);
19 static void vm_set_eval_stack(rb_thread_t * th, VALUE iseqval, const NODE *cref, rb_block_t *base_block);
1171 eval_string_with_cref(VALUE self, VALUE src, VALUE scope, NODE *cref, volatile VALUE file, volatile int line) argument
1244 vm_set_eval_stack(th, iseqval, cref, base_block);
1497 NODE *cref; local
1504 cref = vm_cref_push(th, under, NOEX_PUBLIC, blockptr);
1505 cref->flags |= NODE_FL_CREF_PUSHED_BY_EVAL;
1508 return vm_yield_with_cref(th, 1, &self, cref);
1511 return vm_yield_with_cref(th, RARRAY_LENINT(values), RARRAY_PTR(values), cref);
1520 NODE *cref; local
1538 NODE *cref = vm_cref_push(GET_THREAD(), under, NOEX_PUBLIC, NULL); local
[all...]
H A Dvm.c153 vm_set_eval_stack(rb_thread_t * th, VALUE iseqval, const NODE *cref, rb_block_t *base_block) argument
164 if (cref) {
165 th->cfp->ep[-1] = (VALUE)cref;
614 const rb_block_t *blockptr, const NODE *cref,
644 if (cref) {
645 th->cfp->ep[-1] = (VALUE)cref;
668 vm_yield_with_cref(rb_thread_t *th, int argc, const VALUE *argv, const NODE *cref) argument
671 return invoke_block_from_c(th, blockptr, blockptr->self, argc, argv, 0, cref,
843 debug_cref(NODE *cref)
845 while (cref) {
612 invoke_block_from_c(rb_thread_t *th, const rb_block_t *block, VALUE self, int argc, const VALUE *argv, const rb_block_t *blockptr, const NODE *cref, VALUE defined_class) argument
2010 vm_define_method(rb_thread_t *th, VALUE obj, ID id, VALUE iseqval, rb_num_t is_singleton, NODE *cref) argument
[all...]
H A Dinsns.def160 NODE *cref = rb_vm_get_cref(GET_ISEQ(), GET_EP());
161 val = rb_cvar_get(vm_get_cvar_base(cref, GET_CFP()), id);
175 NODE *cref = rb_vm_get_cref(GET_ISEQ(), GET_EP());
176 rb_cvar_set(vm_get_cvar_base(cref, GET_CFP()), id, val);
718 NODE *cref = rb_vm_get_cref(GET_ISEQ(), GET_EP());
719 klass = vm_get_cvar_base(cref, GET_CFP());
H A Dvm_method.c641 NODE *cref = rb_vm_cref(); local
642 VALUE refinements = cref ? cref->nd_refinements : Qnil;
/macosx-10.9.5/curl-78.94.1/curl/src/
H A Dmakefile.amiga22 $(CC) $(CFLAGS) -o cURL $(OBJS) $(LIBS) -Wl,-Map,cURL.map,--cref
/macosx-10.9.5/IOKitUser-907.100.13/graphics.subproj/
H A DIOGraphicsLibInternal.h31 #define DEBG(cref, fmt, args...) \
32 if (cref->logfile) { \
34 fprintf(cref->logfile, "%10lld %s: ", ((time - cref->time0) / 1000), __FUNCTION__); \
35 fprintf(cref->logfile, fmt, ## args); \
36 fflush(cref->logfile); \
51 #define DEBG(cref, fmt, args...) {}
/macosx-10.9.5/tcl-102/tk/tk/win/
H A DtkWinColor.c447 COLORREF cref;
470 cref = pixels[i] & 0x00ffffff;
471 index = GetNearestPaletteIndex(cmap->palette, cref);
473 if (cref == RGB(entry.peRed, entry.peGreen, entry.peBlue)) {
440 COLORREF cref; local
/macosx-10.9.5/tcl-102/tk84/tk/win/
H A DtkWinColor.c451 COLORREF cref;
476 cref = pixels[i] & 0x00ffffff;
477 index = GetNearestPaletteIndex(cmap->palette, cref);
479 if (cref == RGB(entry.peRed, entry.peGreen, entry.peBlue)) {
444 COLORREF cref; local
/macosx-10.9.5/CPANInternal-140/Log-Log4perl/lib/Log/Log4perl/
H A DConfig.pm716 if(my $cref = compile_if_perl($value)) {
717 return $cref->();
745 my $cref = eval "package main; $value" or
747 return $cref;
776 my $cref = $safe->reval("package main; $value") or
778 return $cref;
H A DAppender.pm91 my $cref =
93 $self->{warp_message} = $cref;
/macosx-10.9.5/CPANInternal-140/Log-Log4perl-1.40/lib/Log/Log4perl/
H A DConfig.pm753 if(my $cref = compile_if_perl($value)) {
754 return $cref->();
782 my $cref = eval "package main; $value" or
784 return $cref;
813 my $cref = $safe->reval("package main; $value") or
815 return $cref;
H A DAppender.pm95 my $cref =
97 $self->{warp_message} = $cref;
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/memory/unix/
H A Dapr_pools.c2346 static void run_cleanups(cleanup_t **cref) argument
2348 cleanup_t *c = *cref;
2351 *cref = c->next;
2353 c = *cref;
2359 static void run_child_cleanups(cleanup_t **cref) argument
2361 cleanup_t *c = *cref;
2364 *cref = c->next;
2366 c = *cref;
/macosx-10.9.5/apr-30/apr/apr/memory/unix/
H A Dapr_pools.c2340 static void run_cleanups(cleanup_t **cref) argument
2342 cleanup_t *c = *cref;
2345 *cref = c->next;
2347 c = *cref;
2353 static void run_child_cleanups(cleanup_t **cref) argument
2355 cleanup_t *c = *cref;
2358 *cref = c->next;
2360 c = *cref;

Completed in 227 milliseconds

12