HomeSort by relevance Sort by last modified time
    Searched defs:cb (Results 201 - 225 of 875) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/avahi/avahi-sharp/
EntryGroup.cs 73 private EntryGroupCallback cb; field in class:Avahi.EntryGroup
76 private static extern IntPtr avahi_entry_group_new (IntPtr client, EntryGroupCallback cb, IntPtr userdata);
154 cb = OnEntryGroupCallback;
157 handle = avahi_entry_group_new (client.Handle, cb, IntPtr.Zero);
RecordBrowser.cs 88 private RecordBrowserCallback cb; field in class:Avahi.RecordBrowser
96 LookupFlags flags, RecordBrowserCallback cb,
147 cb = OnRecordBrowserCallback;
168 (ushort) clazz, (ushort) type, flags, cb, IntPtr.Zero);
ServiceBrowser.cs 75 private ServiceBrowserCallback cb; field in class:Avahi.ServiceBrowser
83 ServiceBrowserCallback cb,
135 cb = OnServiceBrowserCallback;
157 flags, cb, IntPtr.Zero);
  /external/boringssl/src/crypto/dh/
dh_test.cc 109 BN_GENCB cb; local
110 BN_GENCB_set(&cb, &GenerateCallback, stdout);
112 if (!a || !DH_generate_parameters_ex(a.get(), 64, DH_GENERATOR_5, &cb)) {
  /external/clang/test/SemaTemplate/
temp_arg_nontype_cxx1z.cpp 82 constexpr int C::*cb = b; member in class:PtrMem::C
84 constexpr int E::*ecb = cb; // expected-note +{{here}}
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
GifFrameManager.java 80 public void getNextFrame(FrameCallback cb) {
89 next = new DelayTarget(cb, targetTime);
121 private final FrameCallback cb; field in class:GifFrameManager.DelayTarget
126 public DelayTarget(FrameCallback cb, long targetTime) {
128 this.cb = cb;
145 cb.onFrameRead(index);
  /external/glide/library/src/main/java/com/bumptech/glide/request/
RequestFutureTarget.java 128 public void getSize(SizeReadyCallback cb) {
129 cb.onSizeReady(width, height);
  /external/glide/library/src/main/java/com/bumptech/glide/request/target/
ViewTarget.java 65 * @param cb {@inheritDoc}
68 public void getSize(SizeReadyCallback cb) {
69 sizeDeterminer.getSize(cb);
123 for (SizeReadyCallback cb : cbs) {
124 cb.onSizeReady(width, height);
159 public void getSize(SizeReadyCallback cb) {
162 cb.onSizeReady(view.getWidth(), view.getHeight());
164 cb.onSizeReady(layoutParams.width, layoutParams.height);
175 cb.onSizeReady(width, height);
179 if (!cbs.contains(cb)) {
    [all...]
  /external/iw/
event.c 696 struct nl_cb *cb = nl_cb_alloc(iw_debug ? NL_CB_DEBUG : NL_CB_DEFAULT); local
699 if (!cb) {
705 nl_cb_set(cb, NL_CB_SEQ_CHECK, NL_CB_CUSTOM, no_seq_check, NULL);
711 nl_cb_set(cb, NL_CB_VALID, NL_CB_CUSTOM, wait_event, &wait_ev);
713 nl_cb_set(cb, NL_CB_VALID, NL_CB_CUSTOM, print_event, args);
718 nl_recvmsgs(state->nl_sock, cb);
720 nl_cb_put(cb);
738 struct nl_cb *cb,
iw.c 231 struct nl_cb *cb,
300 struct nl_cb *cb; local
436 cb = nl_cb_alloc(iw_debug ? NL_CB_DEBUG : NL_CB_DEFAULT);
438 if (!cb || !s_cb) {
461 err = cmd->handler(state, cb, msg, argc, argv, idby);
473 nl_cb_err(cb, NL_CB_CUSTOM, error_handler, &err);
474 nl_cb_set(cb, NL_CB_FINISH, NL_CB_CUSTOM, finish_handler, &err);
475 nl_cb_set(cb, NL_CB_ACK, NL_CB_CUSTOM, ack_handler, &err);
478 nl_recvmsgs(state->nl_sock, cb);
480 nl_cb_put(cb);
    [all...]
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/
BundleCoverageImplTest.java 86 ClassCoverageImpl cb = new ClassCoverageImpl("p2/B", 2, false, null, local
88 cb.setSourceFileName("B.java");
92 Arrays.asList((IClassCoverage) ca, (IClassCoverage) cb),
105 assertEquals(Collections.singletonList(cb), p2.getClasses());
  /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/libbrillo/brillo/streams/
file_stream.cc 174 DataCallback cb = read_data_callback_; local
176 cb.Run(Stream::AccessMode::READ);
181 DataCallback cb = write_data_callback_; local
183 cb.Run(Stream::AccessMode::WRITE);
  /external/libevent/
evbuffer-internal.h 39 /* Experimental cb flag: "never deferred." Implementation note:
69 } cb; member in struct:evbuffer_cb_entry
70 /** Argument to pass to cb. */
evrpc-internal.h 101 void (*cb)(void *, enum EVRPC_HOOK_RESULT); member in struct:evrpc_hook_ctx
188 void (*cb)(struct evrpc_status*, void *request, void *reply, void *arg); member in struct:evrpc_request_wrapper
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/Gimpact/
gim_box_collision.h 470 btVector3 ca,cb;//extends local
472 box.get_center_extend(cb,eb);
482 T[i] = transcache.m_R1to0[i].dot(cb) + transcache.m_T1to0[i] - ca[i];
  /external/libnl/lib/
cache.c 468 struct nl_cb *cb; local
477 cb = nl_cb_clone(sk->s_cb);
478 if (cb == NULL)
481 nl_cb_set(cb, NL_CB_VALID, NL_CB_CUSTOM, update_msg_parser, &x);
483 err = nl_recvmsgs(sk, cb);
489 nl_cb_put(cb);
520 struct nl_msgtype *type, change_func_t cb, void *data)
531 if (cb)
532 cb(cache, old, NL_ACT_DEL, data);
539 if (old == NULL && cb)
    [all...]
socket.c 90 static struct nl_sock *__alloc_socket(struct nl_cb *cb)
99 sk->s_cb = cb;
119 struct nl_cb *cb; local
121 cb = nl_cb_alloc(default_cb);
122 if (!cb)
125 return __alloc_socket(cb);
130 * @arg cb Callback handler
137 struct nl_sock *nl_socket_alloc_cb(struct nl_cb *cb)
139 if (cb == NULL)
142 return __alloc_socket(nl_cb_get(cb));
    [all...]
  /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/nfacct/
nfacct.c 397 struct nl_cb *cb; local
447 cb = nl_cb_alloc(NL_CB_DEFAULT);
448 if (!cb)
451 if (nl_cb_set(cb, NL_CB_MSG_IN,
456 nl_socket_set_cb(handle,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/opencv3/3rdparty/libjpeg/
jdcolor.c 24 int * Cb_b_tab; /* => table for Cb to B conversion */
26 INT32 * Cb_g_tab; /* => table for Cb to G conversion */
39 * YCbCr is defined per CCIR 601-1, except that Cb and Cr are
44 * G = Y - 0.34414 * Cb - 0.71414 * Cr
45 * B = Y + 1.77200 * Cb
49 * where Cb and Cr represent the incoming values less CENTERJSAMPLE.
59 * by precalculating the constants times Cb and Cr for all possible values.
64 * The Cr=>R and Cb=>B values can be rounded to integers in advance; the
113 /* The Cb or Cr value we are thinking of is x = i - CENTERJSAMPLE */
117 /* Cb=>B value is nearest int to 1.77200 * x *
146 register int y, cb, cr; local
445 register int y, cb, cr; local
    [all...]
jdmerge.c 18 * G = Y + K2 * Cb + K3 * Cr
19 * B = Y + K4 * Cb
54 int * Cb_b_tab; /* => table for Cb to B conversion */
56 INT32 * Cb_g_tab; /* => table for Cb to G conversion */
105 /* The Cb or Cr value we are thinking of is x = i - CENTERJSAMPLE */
109 /* Cb=>B value is nearest int to 1.77200 * x */
114 /* Cb=>G value is scaled-up -0.34414 * x */
232 int cb, cr; local
251 cb = GETJSAMPLE(*inptr1++);
254 cgreen = (int) RIGHT_SHIFT(Cbgtab[cb] + Crgtab[cr], SCALEBITS)
294 int cb, cr; local
    [all...]
  /external/opencv3/3rdparty/libtiff/
tif_predict.c 256 unsigned int cb = cp[2]; local
262 cp[2] = (char) (cb += cp[2]);
269 unsigned int cb = cp[2]; local
276 cp[2] = (char) (cb += cp[2]);
  /external/opencv3/modules/calib3d/src/
solvepnp.cpp 255 Ptr<PointSetRegistrator::Callback> cb; // pointer to callback local
256 cb = makePtr<PnPRansacCallback>( cameraMatrix, distCoeffs, ransac_kernel_method, useExtrinsicGuess, rvec, tvec);
266 int result = createRANSACPointSetRegistrator(cb, model_points,

Completed in 3536 milliseconds

1 2 3 4 5 6 7 891011>>