/external/iptables/extensions/ |
libxt_recent.c | 85 static void recent_parse(struct xt_option_call *cb) 87 struct xt_recent_mtinfo *info = cb->data; 89 xtables_option_parse(cb); 90 switch (cb->entry->id) { 93 if (cb->invert) 98 if (cb->invert) 103 if (cb->invert) 108 if (cb->invert) 123 static void recent_check(struct xt_fcheck_call *cb) 125 if (!(cb->xflags & F_ANY_OP) [all...] |
libip6t_hbh.c | 102 static void hbh_parse(struct xt_option_call *cb) 104 struct ip6t_opts *optinfo = cb->data; 106 xtables_option_parse(cb); 107 switch (cb->entry->id) { 109 if (cb->invert) 113 optinfo->optsnr = parse_options(cb->arg, optinfo->opts);
|
libip6t_ipv6header.c | 159 static void ipv6header_parse(struct xt_option_call *cb) 161 struct ip6t_ipv6header_info *info = cb->data; 163 xtables_option_parse(cb); 164 switch (cb->entry->id) { 166 if (!(info->matchflags = parse_header(cb->arg))) 168 if (cb->invert)
|
libipt_MASQUERADE.c | 74 static void MASQUERADE_parse(struct xt_option_call *cb) 76 const struct ipt_entry *entry = cb->xt_entry; 78 struct nf_nat_multi_range *mr = cb->data; 89 xtables_option_parse(cb); 90 switch (cb->entry->id) { 95 parse_ports(cb->arg, mr);
|
libipt_SAME.c | 73 static void SAME_parse(struct xt_option_call *cb) 75 struct ipt_same_info *mr = cb->data; 78 xtables_option_parse(cb); 79 switch (cb->entry->id) { 86 parse_to(cb->arg, &mr->range[mr->rangesize]); 88 if (cb->xflags & F_RANDOM)
|
libxt_CT.c | 99 static void ct_parse(struct xt_option_call *cb) 101 struct xt_ct_target_info *info = cb->data; 103 xtables_option_parse(cb); 104 switch (cb->entry->id) { 109 info->ct_events = ct_parse_events(ct_event_tbl, ARRAY_SIZE(ct_event_tbl), cb->arg); 112 info->exp_events = ct_parse_events(exp_event_tbl, ARRAY_SIZE(exp_event_tbl), cb->arg);
|
libxt_udp.c | 46 static void udp_parse(struct xt_option_call *cb) 48 struct xt_udp *udpinfo = cb->data; 50 xtables_option_parse(cb); 51 switch (cb->entry->id) { 53 if (cb->invert) 57 if (cb->invert)
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm_gcc/ |
h264bsdWriteMacroblock.S | 31 #define cb r4 define 97 LDR cb, [image, #0x10] 120 VLD1 {qRow0, qRow1}, [data]! ;//cb rows 0,1,2,3 122 VLD1 {qRow2, qRow3}, [data]! ;//cb rows 4,5,6,7 128 VST1 {dRow0}, [cb,:64], cwidth 131 VST1 {dRow1}, [cb,:64], cwidth 134 VST1 {dRow2}, [cb,:64], cwidth 137 VST1 {dRow3}, [cb,:64], cwidth 140 VST1 {dRow4}, [cb,:64], cwidth 143 VST1 {dRow5}, [cb,:64], cwidt [all...] |
/system/core/libnl_2/ |
netlink.c | 105 int nl_recvmsgs(struct nl_sock *sk, struct nl_cb *cb) 147 cb_rc = cb->cb_err(&nla, nlme, cb->cb_err_arg); 162 if (cb->cb_set[i]) { 166 cb_rc = cb->cb_set[i](msg, cb->cb_args[i]); 172 cb_rc = cb->cb_set[i](msg, cb->cb_args[i]); 178 cb_rc = cb->cb_set[i](msg, cb->cb_args[i]) [all...] |
/external/qemu/distrib/sdl-1.2.15/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...] |
/sdk/emulator/opengl/host/libs/libOpenglRender/ |
ColorBuffer.cpp | 54 ColorBuffer *cb = new ColorBuffer(); local 57 s_gl.glGenTextures(1, &cb->m_tex); 58 s_gl.glBindTexture(GL_TEXTURE_2D, cb->m_tex); 78 s_gl.glGenTextures(1, &cb->m_blitTex); 79 s_gl.glBindTexture(GL_TEXTURE_2D, cb->m_blitTex); 90 cb->m_width = p_width; 91 cb->m_height = p_height; 92 cb->m_internalFormat = texInternalFormat; 95 cb->m_eglImage = s_egl.eglCreateImageKHR(fb->getDisplay(), 98 (EGLClientBuffer)cb->m_tex [all...] |
/external/jpeg/ |
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/qemu/distrib/jpeg-6b/ |
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/webkit/Source/WebCore/editing/ |
InsertLineBreakCommand.cpp | 59 Element* cb = pos.deprecatedNode()->enclosingBlockFlowElement(); local 60 if (cb == pos.deprecatedNode()) 61 appendNode(node, cb); 71 Element* cb = pos.deprecatedNode()->enclosingBlockFlowElement(); local 72 if (cb == pos.deprecatedNode()) 73 appendNode(node, cb);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
LocationController.java | 66 public void addStateChangedCallback(LocationGpsStateChangeCallback cb) { 67 mChangeCallbacks.add(cb); 125 for (LocationGpsStateChangeCallback cb : mChangeCallbacks) { 126 cb.onLocationGpsStateChanged(true, text); 133 for (LocationGpsStateChangeCallback cb : mChangeCallbacks) { 134 cb.onLocationGpsStateChanged(false, null);
|
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/ |
BordeauxService.java | 155 public void registerCallback(IBordeauxServiceCallback cb) { 156 if (cb != null) mCallbacks.register(cb); 159 public void unregisterCallback(IBordeauxServiceCallback cb) { 160 if (cb != null) mCallbacks.unregister(cb);
|
/dalvik/dexgen/src/com/android/dexgen/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/libnl-headers/netlink/ |
cache.h | 82 void (*cb)(struct nl_object *, 87 void (*cb)(struct 98 extern void nl_cache_ops_foreach(void (*cb)(struct nl_cache_ops *, void *), void *);
|
/packages/apps/Gallery2/src/com/android/camera/ |
CameraManager.java | 274 Object cb) { 275 camera.setAutoFocusMoveCallback((AutoFocusMoveCallback) cb); 352 public void setPreviewCallback(final PreviewCallback cb) { 353 mCameraHandler.obtainMessage(SET_PREVIEW_CALLBACK, cb).sendToTarget(); 356 public void setPreviewCallbackWithBuffer(final PreviewCallback cb) { 357 mCameraHandler.obtainMessage(SET_PREVIEW_CALLBACK_WITH_BUFFER, cb).sendToTarget(); 364 public void autoFocus(AutoFocusCallback cb) { 365 mCameraHandler.obtainMessage(AUTO_FOCUS, cb).sendToTarget(); 374 public void setAutoFocusMoveCallback(AutoFocusMoveCallback cb) { 375 mCameraHandler.obtainMessage(SET_AUTO_FOCUS_MOVE_CALLBACK, cb).sendToTarget() [all...] |
/external/chromium/third_party/libevent/ |
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/chromium/third_party/libjingle/source/talk/base/ |
win32socketserver.h | 62 virtual int Send(const void *pv, size_t cb); 63 virtual int SendTo(const void *pv, size_t cb, const SocketAddress& addr); 64 virtual int Recv(void *pv, size_t cb); 65 virtual int RecvFrom(void *pv, size_t cb, SocketAddress *paddr);
|
/external/clang/test/Misc/ |
diag-aka-types.cpp | 43 void helper(callback cb) {} // expected-note{{candidate function not viable: no known conversion from 'void (*)(struct data *)' (aka 'void (*)(ns::data *)') to 'callback' (aka 'void (*)(struct data *)') for 1st argument}}
|