/external/qemu/slirp-android/ |
D | slirp.h | 114 #undef _P 116 # define _P(x) x macro 118 # define _P(x) () macro 131 char *strdup _P((const char *)); 136 void *malloc _P((size_t arg)); 137 void free _P((void *ptr)); 187 void if_start _P((void)); 189 void if_start _P((struct ttys *)); 195 extern int vsprintf_len _P((char *, const char *, va_list)); 196 extern int sprintf_len _P((char *, const char *, ...)); [all …]
|
D | socket.h | 79 void so_init _P((void)); 80 struct socket * solookup _P((struct socket *, uint32_t, u_int, uint32_t, u_int)); 81 struct socket * socreate _P((void)); 82 void sofree _P((struct socket *)); 83 int soread _P((struct socket *)); 84 void sorecvoob _P((struct socket *)); 85 int sosendoob _P((struct socket *)); 86 int sowrite _P((struct socket *)); 87 void sorecvfrom _P((struct socket *)); 88 int sosendto _P((struct socket *, struct mbuf *)); [all …]
|
D | misc.h | 22 extern int (*lprint_print) _P((void *, const char *, va_list)); 27 char *strdup _P((const char *)); 30 void do_wait _P((int)); 70 void getouraddr _P((void)); 71 void slirp_insque _P((void *, void *)); 72 void slirp_remque _P((void *)); 73 int add_exec _P((struct ex_list **, int, char *, int, int)); 74 int slirp_openpty _P((int *, int *)); 76 void snooze_hup _P((int)); 77 void snooze _P((void)); [all …]
|
D | mbuf.h | 133 void m_init _P((void)); 134 struct mbuf * m_get _P((void)); 135 void m_free _P((struct mbuf *)); 136 void m_cat _P((register struct mbuf *, register struct mbuf *)); 137 void m_inc _P((struct mbuf *, int)); 138 void m_adj _P((struct mbuf *, int)); 139 int m_copy _P((struct mbuf *, struct mbuf *, int, int)); 140 struct mbuf * dtom _P((void *));
|
D | udp.h | 97 void udp_init _P((void)); 98 void udp_input _P((register struct mbuf *, int)); 99 int udp_output_ _P((struct socket *, struct mbuf *, SockAddress *)); 100 int udp_attach _P((struct socket *)); 101 void udp_detach _P((struct socket *)); 102 struct socket * udp_listen _P((u_int, u_int32_t, u_int, int)); 103 int udp_unlisten _P((u_int));
|
D | sbuf.h | 24 void sbfree _P((struct sbuf *)); 25 void sbdrop _P((struct sbuf *, int)); 26 void sbreserve _P((struct sbuf *, int)); 27 void sbappend _P((struct socket *, struct mbuf *)); 28 void sbcopy _P((struct sbuf *, int, int, char *));
|
D | tcp_timer.h | 129 void tcp_fasttimo _P((void)); 130 void tcp_slowtimo _P((void)); 131 void tcp_canceltimers _P((struct tcpcb *));
|
D | ip_icmp.h | 158 void icmp_input _P((struct mbuf *, int)); 161 void icmp_reflect _P((struct mbuf *));
|
/external/qemu/slirp/ |
D | slirp.h | 122 #undef _P 124 # define _P(x) x macro 126 # define _P(x) () macro 140 char *strdup _P((const char *)); 145 void *malloc _P((size_t arg)); 146 void free _P((void *ptr)); 150 int inet_aton _P((const char *cp, struct in_addr *ia)); 234 void if_start _P((void)); 236 void if_start _P((struct ttys *)); 242 extern int vsprintf_len _P((char *, const char *, va_list)); [all …]
|
D | misc.h | 22 extern int (*lprint_print) _P((void *, const char *, va_list)); 27 char *strdup _P((const char *)); 30 void do_wait _P((int)); 72 int show_x _P((char *, struct socket *)); 73 void redir_x _P((u_int32_t, int, int, int)); 74 void getouraddr _P((void)); 75 void slirp_insque _P((void *, void *)); 76 void slirp_remque _P((void *)); 77 int add_exec _P((struct ex_list **, int, char *, int, int)); 78 int slirp_openpty _P((int *, int *)); [all …]
|
D | socket.h | 76 struct socket * solookup _P((struct socket *, struct in_addr, u_int, struct in_addr, u_int)); 77 struct socket * socreate _P((void)); 78 void sofree _P((struct socket *)); 79 int soread _P((struct socket *)); 80 void sorecvoob _P((struct socket *)); 81 int sosendoob _P((struct socket *)); 82 int sowrite _P((struct socket *)); 83 void sorecvfrom _P((struct socket *)); 84 int sosendto _P((struct socket *, struct mbuf *)); 85 struct socket * solisten _P((u_int, u_int32_t, u_int, int)); [all …]
|
D | mbuf.h | 133 void m_init _P((void)); 134 struct mbuf * m_get _P((void)); 135 void m_free _P((struct mbuf *)); 136 void m_cat _P((register struct mbuf *, register struct mbuf *)); 137 void m_inc _P((struct mbuf *, int)); 138 void m_adj _P((struct mbuf *, int)); 139 int m_copy _P((struct mbuf *, struct mbuf *, int, int)); 140 struct mbuf * dtom _P((void *));
|
D | sbuf.h | 24 void sbfree _P((struct sbuf *)); 25 void sbdrop _P((struct sbuf *, int)); 26 void sbreserve _P((struct sbuf *, int)); 27 void sbappend _P((struct socket *, struct mbuf *)); 28 void sbcopy _P((struct sbuf *, int, int, char *));
|
D | udp.h | 99 void udp_init _P((void)); 100 void udp_input _P((register struct mbuf *, int)); 101 int udp_output _P((struct socket *, struct mbuf *, struct sockaddr_in *)); 102 int udp_attach _P((struct socket *)); 103 void udp_detach _P((struct socket *)); 104 struct socket * udp_listen _P((u_int, u_int32_t, u_int, int));
|
D | tcp_timer.h | 129 void tcp_fasttimo _P((void)); 130 void tcp_slowtimo _P((void)); 131 void tcp_canceltimers _P((struct tcpcb *));
|
D | ip_icmp.h | 156 void icmp_input _P((struct mbuf *, int)); 159 void icmp_reflect _P((struct mbuf *));
|
D | debug.h | 39 void debug_init _P((char *, int));
|
/external/libvpx/vpx_mem/ |
D | vpx_mem.c | 124 _P(printf("[vpx][mm] ERROR vpx_memalign() Couldn't create memory for Heap.\n");) in vpx_memalign() 237 _P(printf("ERROR xvpx_malloc MEM_TRACK_USAGE error vpx_memory_tracker_init().\n");) in xvpx_memalign() 320 _P(printf("ERROR xvpx_malloc MEM_TRACK_USAGE error vpx_memory_tracker_init().\n");) in xvpx_realloc() 404 _P(fprintf(stderr, "[vpx_mem][xvpx_free] addr: %p not found in" in xvpx_free() 461 … _P(printf("WARNING: vpx_memcpy dest:0x%x source:0x%x len:%d\n", (int)dest, (int)source, length);) in vpx_memcpy() 481 _P(printf("WARNING: vpx_memset dest:0x%x val:%d len:%d\n", (int)dest, val, length);) in vpx_memset() 501 … _P(printf("WARNING: vpx_memmove dest:0x%x src:0x%x count:%d\n", (int)dest, (int)src, count);) in vpx_memmove() 533 _P(printf("[vpx][mm] total memory size:%d g_p_mng_memory_raw:0x%x g_p_mng_memory:0x%x\n" in vpx_mm_create_heap_memory() 540 _P(printf("[vpx][mm] Couldn't allocate memory:%d for vpx memory manager.\n" in vpx_mm_create_heap_memory() 559 … _P(printf("[vpx][mm] memory size:%d for vpx memory manager. g_p_mng_memory:0x%x chunk_size:%d\n" in vpx_mm_create_heap_memory() [all …]
|
/external/kernel-headers/original/linux/ |
D | ctype.h | 13 #define _P 0x10 /* punct */ macro 26 #define isgraph(c) ((__ismask(c)&(_P|_U|_L|_D)) != 0) 28 #define isprint(c) ((__ismask(c)&(_P|_U|_L|_D|_SP)) != 0) 29 #define ispunct(c) ((__ismask(c)&(_P)) != 0)
|
/external/clang/test/SemaObjC/ |
D | property-ivar-mismatch.m | 18 void * _P; // expected-note {{ivar is declared here}} field 24 @synthesize P=_P; // expected-error {{ype of property 'P' ('int') does not match type of ivar '_P' …
|
/external/libvpx/vpx_mem/include/ |
D | vpx_mem_intrnl.h | 91 # define _P(x) macro 93 # define _P(x) x macro
|
/external/opencv/cv/src/ |
D | cvundistort.cpp | 373 const CvMat* _R, const CvMat* _P ) in cvUndistortPoints() argument 415 if( _P ) in cvUndistortPoints() 419 CV_ASSERT( CV_IS_MAT(_P) && _P->rows == 3 && (_P->cols == 3 || _P->cols == 4)); in cvUndistortPoints() 420 cvConvert( cvGetCols(_P, &_P3x3, 0, 3), &_PP ); in cvUndistortPoints()
|
/external/stlport/stlport/stl/config/ |
D | _evc.h | 301 inline void *__cdecl operator new(size_t, void *_P) { return (_P); } in new() argument
|
/external/clang/test/CodeGenObjC/ |
D | objc-align.m | 28 // RUNX: grep '@"\\01l_OBJC_LABEL_PROTOCOL_$_P" = weak hidden global .*, section "__DATA, __objc_pr… 31 // RUNX: grep '@"\\01l_OBJC_PROTOCOL_$_P" = weak hidden global .*, section "__DATA,__datacoal_nt,co…
|
/external/clang/test/CodeGenCXX/ |
D | temp-order.cpp | 25 A(TempTracker &_TT, unsigned _P, bool _Truth = true) in A() 26 : TT(_TT), P(_P), Truth(_Truth) {} in A()
|