Searched refs:ap (Results 1 - 25 of 170) sorted by relevance

1234567

/vbox/src/libs/xpcom18a4/nsprpub/lib/tests/
H A Darena.c76 PLArenaPool ap; local
80 PL_InitArenaPool( &ap, "AllocArena", 2048, sizeof(double));
82 &ap, ap.first, ap.current, ap.arenasize ));
86 PL_ARENA_ALLOCATE( ptr, &ap, 512 );
88 &ap, ap.first, ap
113 PLArenaPool ap; local
138 PLArenaPool ap; local
230 PLArenaPool ap; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Stdio/
H A Dfscanf.c60 va_list ap; local
62 va_start(ap, fmt);
63 ret = __svfscanf(fp, fmt, ap);
64 va_end(ap);
H A Dprintf.c57 va_list ap; local
59 va_start(ap, fmt);
60 ret = vfprintf(stdout, fmt, ap);
61 va_end(ap);
H A Dswscanf.c39 va_list ap; local
42 va_start(ap, fmt);
43 r = vswscanf(str, fmt, ap);
44 va_end(ap);
H A Dvprintf.c53 vprintf(char const *fmt, va_list ap) argument
57 return (vfprintf(stdout, fmt, ap));
H A Dfprintf.c57 va_list ap; local
66 va_start(ap, fmt);
67 ret = vfprintf(fp, fmt, ap);
68 va_end(ap);
H A Dfwprintf.c46 va_list ap; local
48 va_start(ap, fmt);
49 ret = vfwprintf(fp, fmt, ap);
50 va_end(ap);
H A Dfwscanf.c45 va_list ap; local
48 va_start(ap, fmt);
49 r = vfwscanf(fp, fmt, ap);
50 va_end(ap);
H A Dscanf.c56 va_list ap; local
60 va_start(ap, fmt);
61 ret = __svfscanf(stdin, fmt, ap);
62 va_end(ap);
H A Dsnprintf_ss.c62 va_list ap; local
65 va_start(ap, fmt);
66 ret = vsnprintf_ss(str, n, fmt, ap);
67 va_end(ap);
H A Dswprintf.c40 va_list ap; local
42 va_start(ap, fmt);
43 ret = vswprintf(s, n, fmt, ap);
44 va_end(ap);
H A Dwprintf.c46 va_list ap; local
48 va_start(ap, fmt);
49 ret = vfwprintf(stdout, fmt, ap);
50 va_end(ap);
H A Dwscanf.c45 va_list ap; local
48 va_start(ap, fmt);
49 r = vfwscanf(stdin, fmt, ap);
50 va_end(ap);
H A Dvscanf.c52 vscanf(fmt, ap)
54 _BSD_VA_LIST_ ap;
59 return (__svfscanf(stdin, fmt, ap));
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/PosixLib/Err/
H A Dwarn_err.c66 va_list ap; local
67 va_start(ap, fmt);
68 _Vdomessage(1, fmt, ap);
69 va_end(ap);
76 va_list ap; local
77 va_start(ap, fmt);
78 _Vdomessage(0, fmt, ap);
79 va_end(ap);
86 va_list ap; local
87 va_start(ap, fm
95 va_list ap; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/Ipf/machine/
H A Dvarargs.h50 #define va_start(ap) __builtin_varargs_start((ap))
/vbox/src/libs/xpcom18a4/xpcom/string/src/
H A DnsPrintfCString.cpp54 va_list ap; local
59 va_start(ap, format);
60 mLength = PR_vsnprintf(mData, physical_capacity, format, ap);
61 va_end(ap);
67 va_list ap; local
80 va_start(ap, format);
81 mLength = PR_vsnprintf(mData, physical_capacity, format, ap);
82 va_end(ap);
/vbox/src/libs/xpcom18a4/xpcom/reflect/xptcall/src/md/unix/
H A Dxptcstubs_mips.cpp80 PRUint32* ap = args; local
81 for(i = 0; i < paramCount; i++, ap++)
89 dp->val.p = (void*) *ap;
93 dp->val.p = (void*) *ap;
98 if ((PRWord)ap & 4) ap++;
99 dp->val.i64 = *((PRInt64*) ap); ap++;
102 if ((PRWord)ap & 4) ap
[all...]
H A Dxptcstubs_arm_netbsd.cpp72 PRUint32* ap = args; local
73 for(i = 0; i < paramCount; i++, ap++)
81 dp->val.p = (void*) *ap;
87 case nsXPTType::T_I8 : dp->val.i8 = *((PRInt8*) ap); break;
88 case nsXPTType::T_I16 : dp->val.i16 = *((PRInt16*) ap); break;
89 case nsXPTType::T_I32 : dp->val.i32 = *((PRInt32*) ap); break;
90 case nsXPTType::T_I64 : dp->val.i64 = *((PRInt64*) ap); ap++; break;
91 case nsXPTType::T_U8 : dp->val.u8 = *((PRUint8*) ap); break;
92 case nsXPTType::T_U16 : dp->val.u16 = *((PRUint16*)ap); brea
[all...]
H A Dxptcstubs_linux_m68k.cpp73 PRUint32* ap = args; local
74 for(i = 0; i < paramCount; i++, ap++)
82 dp->val.p = (void*) *ap;
91 case nsXPTType::T_I8 : dp->val.i8 = *(((PRInt8*) ap) + 3); break;
92 case nsXPTType::T_I16 : dp->val.i16 = *(((PRInt16*) ap) + 1); break;
93 case nsXPTType::T_I32 : dp->val.i32 = *((PRInt32*) ap); break;
94 case nsXPTType::T_I64 : dp->val.i64 = *((PRInt64*) ap); ap++; break;
95 case nsXPTType::T_U8 : dp->val.u8 = *(((PRUint8*) ap) + 3); break;
96 case nsXPTType::T_U16 : dp->val.u16 = *(((PRUint16*)ap)
[all...]
H A Dxptcstubs_netbsd_m68k.cpp77 PRUint32* ap = args; local
78 for(i = 0; i < paramCount; i++, ap++)
86 dp->val.p = (void*) *ap;
95 case nsXPTType::T_I8 : dp->val.i8 = *(((PRInt8*) ap) + 3); break;
96 case nsXPTType::T_I16 : dp->val.i16 = *(((PRInt16*) ap) + 1); break;
97 case nsXPTType::T_I32 : dp->val.i32 = *((PRInt32*) ap); break;
98 case nsXPTType::T_I64 : dp->val.i64 = *((PRInt64*) ap); ap++; break;
99 case nsXPTType::T_U8 : dp->val.u8 = *(((PRUint8*) ap) + 3); break;
100 case nsXPTType::T_U16 : dp->val.u16 = *(((PRUint16*)ap)
[all...]
H A Dxptcstubs_openvms_alpha.cpp76 PRUint64* ap = args + NUM_ARG_REGS; local
77 for(i = 0; i < paramCount; i++, ap++)
85 dp->val.p = (void*) *ap;
91 case nsXPTType::T_I8 : dp->val.i8 = (PRInt8) *ap; break;
92 case nsXPTType::T_I16 : dp->val.i16 = (PRInt16) *ap; break;
93 case nsXPTType::T_I32 : dp->val.i32 = (PRInt32) *ap; break;
94 case nsXPTType::T_I64 : dp->val.i64 = (PRInt64) *ap; break;
95 case nsXPTType::T_U8 : dp->val.u8 = (PRUint8) *ap; break;
96 case nsXPTType::T_U16 : dp->val.u16 = (PRUint16) *ap; break;
97 case nsXPTType::T_U32 : dp->val.u32 = (PRUint32) *ap; brea
[all...]
H A Dxptcstubs_osf1_alpha.cpp76 PRUint64* ap = args + NUM_ARG_REGS; local
77 for(i = 0; i < paramCount; i++, ap++)
85 dp->val.p = (void*) *ap;
91 case nsXPTType::T_I8 : dp->val.i8 = (PRInt8) *ap; break;
92 case nsXPTType::T_I16 : dp->val.i16 = (PRInt16) *ap; break;
93 case nsXPTType::T_I32 : dp->val.i32 = (PRInt32) *ap; break;
94 case nsXPTType::T_I64 : dp->val.i64 = (PRInt64) *ap; break;
95 case nsXPTType::T_U8 : dp->val.u8 = (PRUint8) *ap; break;
96 case nsXPTType::T_U16 : dp->val.u16 = (PRUint16) *ap; break;
97 case nsXPTType::T_U32 : dp->val.u32 = (PRUint32) *ap; brea
[all...]
/vbox/src/VBox/Additions/freebsd/vboxvfs/
H A Dvboxvfs_vnops.c102 static int vboxvfs_access(struct vop_access_args *ap) argument
107 static int vboxvfs_open(struct vop_open_args *ap) argument
112 static int vboxvfs_close(struct vop_close_args *ap) argument
117 static int vboxvfs_getattr(struct vop_getattr_args *ap) argument
122 static int vboxvfs_setattr(struct vop_setattr_args *ap) argument
127 static int vboxvfs_read(struct vop_read_args *ap) argument
132 static int vboxvfs_write(struct vop_write_args *ap) argument
137 static int vboxvfs_create(struct vop_create_args *ap) argument
142 static int vboxvfs_remove(struct vop_remove_args *ap) argument
147 static int vboxvfs_rename(struct vop_rename_args *ap) argument
152 vboxvfs_link(struct vop_link_args *ap) argument
157 vboxvfs_symlink(struct vop_symlink_args *ap) argument
162 vboxvfs_mknod(struct vop_mknod_args *ap) argument
167 vboxvfs_mkdir(struct vop_mkdir_args *ap) argument
172 vboxvfs_rmdir(struct vop_rmdir_args *ap) argument
177 vboxvfs_readdir(struct vop_readdir_args *ap) argument
182 vboxvfs_fsync(struct vop_fsync_args *ap) argument
187 vboxvfs_print(struct vop_print_args *ap) argument
192 vboxvfs_pathconf(struct vop_pathconf_args *ap) argument
197 vboxvfs_strategy(struct vop_strategy_args *ap) argument
202 vboxvfs_ioctl(struct vop_ioctl_args *ap) argument
207 vboxvfs_getextattr(struct vop_getextattr_args *ap) argument
212 vboxvfs_advlock(struct vop_advlock_args *ap) argument
217 vboxvfs_lookup(struct vop_lookup_args *ap) argument
222 vboxvfs_inactive(struct vop_inactive_args *ap) argument
227 vboxvfs_reclaim(struct vop_reclaim_args *ap) argument
232 vboxvfs_getpages(struct vop_getpages_args *ap) argument
237 vboxvfs_putpages(struct vop_putpages_args *ap) argument
[all...]
/vbox/src/libs/xpcom18a4/xpcom/reflect/xptcall/src/md/os2/
H A Dxptcstubs_emx.cpp84 PRUint32* ap = args; local
85 for(i = 0; i < paramCount; i++, ap++)
93 dp->val.p = (void*) *ap;
99 case nsXPTType::T_I8 : dp->val.i8 = *((PRInt8*) ap); break;
100 case nsXPTType::T_I16 : dp->val.i16 = *((PRInt16*) ap); break;
101 case nsXPTType::T_I32 : dp->val.i32 = *((PRInt32*) ap); break;
102 case nsXPTType::T_I64 : dp->val.i64 = *((PRInt64*) ap); ap++; break;
103 case nsXPTType::T_U8 : dp->val.u8 = *((PRUint8*) ap); break;
104 case nsXPTType::T_U16 : dp->val.u16 = *((PRUint16*)ap); brea
[all...]

Completed in 97 milliseconds

1234567