HomeSort by relevance Sort by last modified time
    Searched refs:cb (Results 51 - 75 of 446) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium/third_party/libevent/
buffer.c 119 if (inbuf->off != oldoff && inbuf->cb != NULL)
120 (*inbuf->cb)(inbuf, oldoff, inbuf->off, inbuf->cbarg);
121 if (oldoff && outbuf->cb != NULL)
122 (*outbuf->cb)(outbuf, 0, oldoff, outbuf->cbarg);
166 if (buf->cb != NULL)
167 (*buf->cb)(buf, oldoff, buf->off, buf->cbarg);
313 if (datlen && buf->cb != NULL)
314 (*buf->cb)(buf, oldoff, buf->off, buf->cbarg);
338 if (buf->off != oldoff && buf->cb != NULL)
339 (*buf->cb)(buf, oldoff, buf->off, buf->cbarg)
    [all...]
evrpc.h 102 void (*cb)(struct evrpc_req_generic *, void *); member in struct:evrpc
182 void (*cb)(struct evrpc_status *, \
198 ctx->cb = (void (*)(struct evrpc_status *, \
199 void *, void *, void *))cb; \
210 (*(cb))(&status, request, reply, cbarg); \
356 void (*cb)(struct evrpc_status*, void *request, void *reply, void *arg); member in struct:evrpc_request_wrapper
383 * @param cb the callback to invoke when the RPC request has been answered
387 #define EVRPC_MAKE_REQUEST(name, pool, request, reply, cb, cbarg) \
388 evrpc_send_request_##name(pool, request, reply, cb, cbarg)
460 * @param cb the callback to call when the hook is activate
    [all...]
  /external/openssl/crypto/asn1/
n_pkey.c 110 int (*cb)(char *buf, int len, const char *prompt,
115 int (*cb)(char *buf, int len, const char *prompt,
118 return i2d_RSA_NET(a, pp, cb, 0);
122 int (*cb)(char *buf, int len, const char *prompt, int verify),
198 if (cb == NULL)
199 cb=EVP_read_pw_string;
200 i=cb((char *)buf,256,"Enter Private Key password:",1);
234 int (*cb)(char *buf, int len, const char *prompt,
237 return d2i_RSA_NET(a, pp, length, cb, 0);
241 int (*cb)(char *buf, int len, const char *prompt, int verify)
    [all...]
  /external/openssl/crypto/pem/
pem_pkey.c 75 EVP_PKEY *PEM_read_bio_PrivateKey(BIO *bp, EVP_PKEY **x, pem_password_cb *cb, void *u)
84 if (!PEM_bytes_read_bio(&data, &len, &nm, PEM_STRING_EVP_PKEY, bp, cb, u))
105 if (cb) klen=cb(psbuf,PEM_BUFSIZE,0,u);
142 pem_password_cb *cb, void *u)
148 cb, u);
152 pem_str,bp,x,enc,kstr,klen,cb,u);
209 EVP_PKEY *PEM_read_PrivateKey(FILE *fp, EVP_PKEY **x, pem_password_cb *cb, void *u)
220 ret=PEM_read_bio_PrivateKey(b,x,cb,u);
227 pem_password_cb *cb, void *u
    [all...]
  /external/openssl/crypto/rsa/
rsa_gen.c 71 static int rsa_builtin_keygen(RSA *rsa, int bits, BIGNUM *e_value, BN_GENCB *cb);
78 int RSA_generate_key_ex(RSA *rsa, int bits, BIGNUM *e_value, BN_GENCB *cb)
81 return rsa->meth->rsa_keygen(rsa, bits, e_value, cb);
82 return rsa_builtin_keygen(rsa, bits, e_value, cb);
85 static int rsa_builtin_keygen(RSA *rsa, int bits, BIGNUM *e_value, BN_GENCB *cb)
120 if(!BN_generate_prime_ex(rsa->p, bitsp, 0, NULL, NULL, cb))
125 if(!BN_GENCB_call(cb, 2, n++))
128 if(!BN_GENCB_call(cb, 3, 0))
138 if(!BN_generate_prime_ex(rsa->q, bitsq, 0, NULL, NULL, cb))
151 if(!BN_GENCB_call(cb, 2, n++)
    [all...]
  /system/core/libpixelflinger/
raster.cpp 59 surface_t* cb = &(c->state.buffers.color); local
62 if (uint32_t(xs) > cb->width)
64 if (uint32_t(ys) > cb->height)
66 if (uint32_t(xs + width) > cb->width)
68 if (uint32_t(ys + height) > cb->height)
105 const GGLFormat* fp = &(c->formats[cb->format]);
106 uint8_t* src = reinterpret_cast<uint8_t*>(cb->data)
107 + (xs + (cb->stride * ys)) * fp->size;
108 uint8_t* dst = reinterpret_cast<uint8_t*>(cb->data)
109 + (xd + (cb->stride * yd)) * fp->size
    [all...]
  /external/openssl/apps/
gendh.c 85 static int MS_CALLBACK dh_cb(int p, int n, BN_GENCB *cb);
91 BN_GENCB cb; local
107 BN_GENCB_set(&cb, dh_cb, bio_err);
206 if(((dh = DH_new()) == NULL) || !DH_generate_parameters_ex(dh, num, g, &cb))
223 static int MS_CALLBACK dh_cb(int p, int n, BN_GENCB *cb)
231 BIO_write(cb->arg,&c,1);
232 (void)BIO_flush(cb->arg);
  /external/jpeg/
jdmerge.c 18 * G = Y + K2 * Cb + K3 * Cr
19 * B = Y + K4 * Cb
72 int * Cb_b_tab; /* => table for Cb to B conversion */
74 INT32 * Cb_g_tab; /* => table for Cb to G conversion */
123 /* The Cb or Cr value we are thinking of is x = i - CENTERJSAMPLE */
127 /* Cb=>B value is nearest int to 1.77200 * x */
132 /* Cb=>G value is scaled-up -0.34414 * x */
256 int cb, cr; local
275 cb = GETJSAMPLE(*inptr1++);
278 cgreen = (int) RIGHT_SHIFT(Cbgtab[cb] + Crgtab[cr], SCALEBITS)
315 int cb, cr; local
379 int cb, cr; local
453 int cb, cr; local
529 int cb, cr; local
614 int cb, cr; local
    [all...]
jdcolor.c 23 int * Cb_b_tab; /* => table for Cb to B conversion */
25 INT32 * Cb_g_tab; /* => table for Cb to G conversion */
54 * YCbCr is defined per CCIR 601-1, except that Cb and Cr are
58 * G = Y - 0.34414 * Cb - 0.71414 * Cr
59 * B = Y + 1.77200 * Cb
60 * where Cb and Cr represent the incoming values less CENTERJSAMPLE.
70 * by precalculating the constants times Cb and Cr for all possible values.
75 * The Cr=>R and Cb=>B values can be rounded to integers in advance; the
112 /* The Cb or Cr value we are thinking of is x = i - CENTERJSAMPLE */
116 /* Cb=>B value is nearest int to 1.77200 * x *
144 register int y, cb, cr; local
185 register int y, cb, cr; local
226 register int y, cb, cr; local
298 register int y, cb, cr; local
694 register int y, cb, cr; local
    [all...]
  /external/openssl/include/openssl/
tls1.h 229 #define SSL_set_tlsext_debug_callback(ssl, cb) \
230 SSL_callback_ctrl(ssl,SSL_CTRL_SET_TLSEXT_DEBUG_CB,(void (*)(void))cb)
256 #define SSL_CTX_set_tlsext_servername_callback(ctx, cb) \
257 SSL_CTX_callback_ctrl(ctx,SSL_CTRL_SET_TLSEXT_SERVERNAME_CB,(void (*)(void))cb)
272 #define SSL_CTX_set_tlsext_status_cb(ssl, cb) \
273 SSL_CTX_callback_ctrl(ssl,SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB,(void (*)(void))cb)
280 #define SSL_CTX_set_tlsext_opaque_prf_input_callback(ctx, cb) \
281 SSL_CTX_callback_ctrl(ctx,SSL_CTRL_SET_TLSEXT_OPAQUE_PRF_INPUT_CB, (void (*)(void))cb)
285 #define SSL_CTX_set_tlsext_ticket_key_cb(ssl, cb) \
286 SSL_CTX_callback_ctrl(ssl,SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB,(void (*)(void))cb)
    [all...]
  /external/openssl/ssl/
tls1.h 229 #define SSL_set_tlsext_debug_callback(ssl, cb) \
230 SSL_callback_ctrl(ssl,SSL_CTRL_SET_TLSEXT_DEBUG_CB,(void (*)(void))cb)
256 #define SSL_CTX_set_tlsext_servername_callback(ctx, cb) \
257 SSL_CTX_callback_ctrl(ctx,SSL_CTRL_SET_TLSEXT_SERVERNAME_CB,(void (*)(void))cb)
272 #define SSL_CTX_set_tlsext_status_cb(ssl, cb) \
273 SSL_CTX_callback_ctrl(ssl,SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB,(void (*)(void))cb)
280 #define SSL_CTX_set_tlsext_opaque_prf_input_callback(ctx, cb) \
281 SSL_CTX_callback_ctrl(ctx,SSL_CTRL_SET_TLSEXT_OPAQUE_PRF_INPUT_CB, (void (*)(void))cb)
285 #define SSL_CTX_set_tlsext_ticket_key_cb(ssl, cb) \
286 SSL_CTX_callback_ctrl(ssl,SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB,(void (*)(void))cb)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_yuv_sw.c 109 unsigned char *cb, unsigned char *out,
113 unsigned char *cb, unsigned char *out,
127 unsigned char *cb, unsigned char *out,
131 unsigned char *cb, unsigned char *out,
137 unsigned char *cb, unsigned char *out,
165 + colortab[ *cb + 2*256 ];
166 cb_b = 2*768+256 + colortab[ *cb + 3*256 ];
167 ++cr; ++cb;
207 unsigned char *cb, unsigned char *out,
237 + colortab[ *cb + 2*256 ]
    [all...]
SDL_yuv_mmx.c 75 It is a requirement that the cr/cb/lum are 8 byte aligned and
82 unsigned char *cb, unsigned char *out,
143 // create Cb (result in mm1)
217 "addl $2,%1\n" // cb+2
233 : "m" (cr), "r"(cb),"r"(lum),
243 unsigned char *cb, unsigned char *out,
266 "movd (%1), %%mm0\n" // 4 Cb 0 0 0 0 u3 u2 u1 u0
273 "punpcklbw %%mm7, %%mm0\n" // 4 W cb 0 u3 0 u2 0 u1 0 u0
277 "movq %%mm0, %%mm2\n" // Cb 0 u3 0 u2 0 u1 0 u0
417 : "m" (cr), "r"(cb),"r"(lum)
    [all...]
  /external/webkit/WebCore/editing/
InsertLineBreakCommand.cpp 60 Element* cb = pos.node()->enclosingBlockFlowElement(); local
61 if (cb == pos.node())
62 appendNode(node, cb);
72 Element* cb = pos.node()->enclosingBlockFlowElement(); local
73 if (cb == pos.node())
74 appendNode(node, cb);
  /external/webkit/WebCore/rendering/
RenderView.cpp 350 RenderBlock* cb = os->containingBlock(); local
351 while (cb && !cb->isRenderView()) {
352 RenderSelectionInfo* blockInfo = selectedObjects.get(cb);
355 selectedObjects.set(cb, new RenderSelectionInfo(cb, clipToVisibleContent));
356 cb = cb->containingBlock();
430 RenderBlock* cb = os->containingBlock(); local
431 while (cb && !cb->isRenderView())
481 RenderBlock* cb = o->containingBlock(); local
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/form/
Form11n.java 83 CstLiteralBits cb = (CstLiteralBits) cst; local
85 return cb.fitsInInt() && signedFitsInNibble(cb.getIntBits());
Form21s.java 82 CstLiteralBits cb = (CstLiteralBits) cst; local
84 return cb.fitsInInt() && signedFitsInShort(cb.getIntBits());
Form22b.java 84 CstLiteralBits cb = (CstLiteralBits) cst; local
86 return cb.fitsInInt() && signedFitsInByte(cb.getIntBits());
Form22s.java 84 CstLiteralBits cb = (CstLiteralBits) cst; local
86 return cb.fitsInInt() && signedFitsInShort(cb.getIntBits());
  /external/bluetooth/bluez/audio/
control.h 38 unsigned int avctp_add_state_cb(avctp_state_cb cb, void *user_data);
source.h 40 unsigned int source_add_state_cb(source_state_cb cb, void *user_data);
  /external/bluetooth/glib/gio/inotify/
inotify-kernel.h 35 gboolean _ik_startup (void (*cb) (ik_event_t *event));
  /external/kernel-headers/original/linux/
errqueue.h 29 #define SKB_EXT_ERR(skb) ((struct sock_exterr_skb *) ((skb)->cb))
  /external/openssl/crypto/engine/
eng_int.h 103 ENGINE_CLEANUP_CB *cb; member in struct:st_engine_cleanup_item
106 void engine_cleanup_add_first(ENGINE_CLEANUP_CB *cb);
107 void engine_cleanup_add_last(ENGINE_CLEANUP_CB *cb);
131 void engine_table_doall(ENGINE_TABLE *table, engine_table_doall_cb *cb, void *arg);
  /external/qemu/
gdbstub.h 16 void gdb_do_syscall(gdb_syscall_complete_cb cb, const char *fmt, ...);

Completed in 665 milliseconds

1 23 4 5 6 7 8 91011>>