/external/chromium_org/media/webm/ |
webm_cluster_parser_unittest.cc | 54 ClusterBuilder cb; local 55 cb.SetClusterTimecode(0); 60 cb.AddSimpleBlock(block_info[i].track_num, 67 cb.AddBlockGroup(block_info[i].track_num, 73 return cb.Finish(); 82 ClusterBuilder cb; local 83 cb.SetClusterTimecode(0); 84 cb.AddSimpleBlock(kVideoTrackNum, 0, 0, kEncryptedFrame, bytes_to_write); 85 return cb.Finish();
|
/external/chromium_org/net/disk_cache/ |
stress_cache.cc | 123 net::TestCompletionCallback cb; local 124 int rv = cache->Init(cb.callback()); 126 if (cb.GetResult(rv) != net::OK) { 164 net::TestCompletionCallback cb; local 165 rv = cache->OpenEntry(keys[key], &entries[slot], cb.callback()); 166 if (cb.GetResult(rv) != net::OK) { 167 rv = cache->CreateEntry(keys[key], &entries[slot], cb.callback()); 168 CHECK_EQ(net::OK, cb.GetResult(rv)); 174 rv = entries[slot]->WriteData(0, 0, buffer.get(), size, cb.callback(), 176 CHECK_EQ(size, cb.GetResult(rv)) [all...] |
/external/chromium_org/net/http/ |
mock_http_cache.cc | 508 net::TestCompletionCallback cb; local 510 int rv = http_cache_.GetBackend(&backend, cb.callback()); 511 rv = cb.GetResult(rv); 520 net::TestCompletionCallback cb; local 522 int rv = disk_entry->ReadData(0, 0, buffer.get(), size, cb.callback()); 523 rv = cb.GetResult(rv); 538 net::TestCompletionCallback cb; local 543 int rv = disk_entry->WriteData(0, 0, data.get(), len, cb.callback(), true); 544 rv = cb.GetResult(rv); 550 net::TestCompletionCallback cb; local 558 net::TestCompletionCallback cb; local 623 net::CompletionCallback cb = callback_; local [all...] |
partial_data.cc | 491 CompletionCallback cb = callback_; local 493 cb.Run(result);
|
/external/chromium_org/net/quic/crypto/ |
aes_128_gcm_12_decrypter_nss.cc | 34 CK_BYTE cb[16]; member in struct:net::__anon11299::CK_AES_CTR_PARAMS 179 memcpy(ctr_params.cb, gcm_params->pIv, gcm_params->ulIvLen); 180 ctr_params.cb[12] = 0; 181 ctr_params.cb[13] = 0; 182 ctr_params.cb[14] = 0; 183 ctr_params.cb[15] = 1;
|
aes_128_gcm_12_encrypter_nss.cc | 34 CK_BYTE cb[16]; member in struct:net::__anon11303::CK_AES_CTR_PARAMS 185 memcpy(ctr_params.cb, gcm_params->pIv, gcm_params->ulIvLen); 186 ctr_params.cb[12] = 0; 187 ctr_params.cb[13] = 0; 188 ctr_params.cb[14] = 0; 189 ctr_params.cb[15] = 1;
|
/external/chromium_org/net/tools/crash_cache/ |
crash_cache.cc | 131 net::TestCompletionCallback cb; local 134 cb.callback()); 135 cb.GetResult(rv); // Ignore the result; 141 net::TestCompletionCallback* cb) { 148 int rv = backend->Init(cb->callback()); 150 return (cb->GetResult(rv) == net::OK && !(*cache)->GetEntryCount()); 156 net::TestCompletionCallback cb; local 158 if (!CreateCache(path, cache_thread, &cache, &cb)) 169 int rv = cache->CreateEntry(test_name, &entry, cb.callback()); 170 if (cb.GetResult(rv) != net::OK 193 net::TestCompletionCallback cb; local 232 net::TestCompletionCallback cb; local 276 net::TestCompletionCallback cb; local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
RenderSVGRoot.cpp | 190 RenderBlock* cb = containingBlock(); local 191 ASSERT(cb); 192 while (cb->isAnonymous()) { 193 cb = cb->containingBlock(); 194 cb->addPercentHeightDescendant(const_cast<RenderSVGRoot*>(this));
|
/external/chromium_org/third_party/libevent/ |
evhttp.h | 229 void (*cb)(struct evhttp_request *, void *); member in struct:evhttp_request 246 void (*cb)(struct evhttp_request *, void *), void *arg); 250 void (*cb)(struct evhttp_request *, void *));
|
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...] |
http-internal.h | 85 void (*cb)(struct evhttp_connection *, void *); member in struct:evhttp_connection 99 void (*cb)(struct evhttp_request *req, void *); member in struct:evhttp_cb
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_inlines.h | 467 struct pipe_constant_buffer cb; local 468 cb.buffer = buf; 469 cb.buffer_offset = 0; 470 cb.buffer_size = buf->width0; 471 cb.user_buffer = NULL; 472 pipe->set_constant_buffer(pipe, shader, index, &cb);
|
/external/chromium_org/third_party/openssl/openssl/crypto/des/ |
des_opts.c | 399 #define print_name(name) fprintf(stderr,"Doing %s %ld times\n",name,cb); 405 for (count=0,run=1; COND(cb); count++) \ 412 tm[index]=((double)COUNT(cb))/tm[index]; 431 long ca,cb,cc,cd,ce; local 464 cb=count*3;
|
/external/chromium_org/webkit/browser/appcache/ |
appcache_response.cc | 104 net::CompletionCallback cb = callback_; local 106 cb.Run(result);
|
/external/elfutils/libdwfl/ |
dwfl_module_getdwarf.c | 610 const Dwfl_Callbacks *const cb = mod->dwfl->callbacks; local 613 if (cb->section_address == NULL)
|
/external/javassist/src/main/javassist/expr/ |
Expr.java | 100 CtBehavior[] cb = thisClass.getDeclaredBehaviors(); local 101 for (int i = cb.length - 1; i >= 0; --i) 102 if (cb[i].getMethodInfo2() == mi) 103 return cb[i]; 114 for (int i = cb.length - 1; i >= 0; --i) { 115 if (thisMethod.getName().equals(cb[i].getMethodInfo2().getName()) 117 .equals(cb[i].getMethodInfo2().getDescriptor())) { 118 return cb[i];
|
/external/jmonkeyengine/engine/src/core/com/jme3/effect/ |
ParticlePointMesh.java | 77 ByteBuffer cb = BufferUtils.createByteBuffer(numParticles * 4); local 79 cvb.setupData(Usage.Stream, 4, Format.UnsignedByte, cb); 84 buf.updateData(cb);
|
/external/jmonkeyengine/engine/src/core/com/jme3/font/ |
BitmapTextPage.java | 140 VertexBuffer cb = m.getBuffer(Type.Color);
local 145 ByteBuffer bcb = (ByteBuffer) cb.getData();
161 cb.updateData(bcb);
|
/external/jpeg/ |
jdcolor.c | 25 int * Cb_b_tab; /* => table for Cb to B conversion */ 27 INT32 * Cb_g_tab; /* => table for Cb to G conversion */ 56 * YCbCr is defined per CCIR 601-1, except that Cb and Cr are 60 * G = Y - 0.34414 * Cb - 0.71414 * Cr 61 * B = Y + 1.77200 * Cb 62 * where Cb and Cr represent the incoming values less CENTERJSAMPLE. 72 * by precalculating the constants times Cb and Cr for all possible values. 77 * The Cr=>R and Cb=>B values can be rounded to integers in advance; the 114 /* The Cb or Cr value we are thinking of is x = i - CENTERJSAMPLE */ 118 /* Cb=>B value is nearest int to 1.77200 * x * 146 register int y, cb, cr; local 187 register int y, cb, cr; local 228 register int y, cb, cr; local 300 register int y, cb, cr; local 696 register int y, cb, cr; local [all...] |
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...] |
/external/kernel-headers/original/linux/netfilter/ |
nfnetlink.h | 123 struct nfnl_callback *cb; /* callback for individual types */ member in struct:nfnetlink_subsystem
|
/external/kernel-headers/original/linux/ |
relay.h | 62 struct rchan_callbacks *cb; /* client callbacks */ member in struct:rchan 165 struct rchan_callbacks *cb);
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_inlines.h | 467 struct pipe_constant_buffer cb; local 468 cb.buffer = buf; 469 cb.buffer_offset = 0; 470 cb.buffer_size = buf->width0; 471 cb.user_buffer = NULL; 472 pipe->set_constant_buffer(pipe, shader, index, &cb);
|
/external/opencv/cvaux/src/ |
cvbgfg_codebook.cpp | 142 CvBGCodeBookElem** cb = model->cbmap + image->cols*(y + roi.y) + roi.x; local 144 for( x = 0; x < roi.width; x++, p += 3, cb++ ) 157 for( e = *cb; e != 0; e = e->next ) 214 e->next = *cb; 215 *cb = e; 265 CvBGCodeBookElem** cb = model->cbmap + image->cols*(y + roi.y) + roi.x; local 267 for( x = 0; x < roi.width; x++, p += 3, cb++ ) 275 for( e = *cb; e != 0; e = e->next ) 327 CvBGCodeBookElem** cb = model->cbmap + model->size.width*(y + roi.y) + roi.x; local 329 for( x = 0; x < roi.width; x++, cb++ [all...] |
/external/openssl/crypto/des/ |
des_opts.c | 399 #define print_name(name) fprintf(stderr,"Doing %s %ld times\n",name,cb); 405 for (count=0,run=1; COND(cb); count++) \ 412 tm[index]=((double)COUNT(cb))/tm[index]; 431 long ca,cb,cc,cd,ce; local 464 cb=count*3;
|