Searched refs:new (Results 1 - 25 of 191) sorted by relevance

12345678

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/Ipf/machine/
H A Dacpi_func.h78 uint32_t new, old;
82 new = ((old & ~GL_BIT_MASK) | GL_BIT_OWNED) |
84 } while (atomic_cmpset_acq_int(lock, old, new) == 0);
86 return ((new < GL_BIT_MASK) ? GL_ACQUIRED : GL_BUSY);
97 uint32_t new, old;
101 new = old & ~GL_BIT_MASK;
102 } while (atomic_cmpset_rel_int(lock, old, new) == 0);
H A Dpcb.h71 int swapctx(struct pcb *old, struct pcb *new);
/vbox/src/VBox/Additions/haiku/SharedFolders/
H A Dkernel_cpp.h32 #include <new>
40 // We need new() versions we can use when also linking against libgcc.
48 operator new(size_t size) throw (std::bad_alloc)
51 // keep the prototype as specified in <new>, or else GCC 3
58 operator new[](size_t size) throw (std::bad_alloc)
65 operator new(size_t size, const std::nothrow_t &) throw ()
72 operator new[](size_t size, const std::nothrow_t &) throw ()
79 operator new(size_t size, const mynothrow_t &) throw ()
86 operator new[](size_t size, const mynothrow_t &) throw ()
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/h/
H A DPBlackBox.h86 in = new DLGFileInput(f);
87 scan = new Lexer(in);
88 pipe = new ANTLRTokenBuffer(scan);
89 tok = new Token;
91 _parser = new Parser(pipe);
112 in = new DLGFileInput(f);
113 scan = new Lexer(in);
114 pipe = new ANTLRTokenBuffer(scan);
115 tok = new Token;
117 _parser = new Parse
[all...]
/vbox/src/libs/xpcom18a4/xpcom/ds/
H A DnsAtomTable.h46 * objects using placement new and just overwriting the vtable pointer.
64 void* operator new(size_t size, const nsACString& aString) CPP_THROW_NEW;
92 void* operator new(size_t size, const nsACString& aString) CPP_THROW_NEW {
93 return AtomImpl::operator new(size, aString);
95 void* operator new(size_t size, AtomImpl* aAtom) CPP_THROW_NEW;
/vbox/src/libs/xpcom18a4/
H A Dxpcom-config.h63 /* Define to either <new> or <new.h> */
64 #define NEW_H <new>
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/
H A Ddt_list.c49 dt_list_append(dt_list_t *dlp, void *new) argument
52 dt_list_t *q = new; /* q = new list element */
68 dt_list_prepend(dt_list_t *dlp, void *new) argument
70 dt_list_t *p = new; /* p = new list element */
87 dt_list_insert(dt_list_t *dlp, void *after_me, void *new) argument
90 dt_list_t *q = new;
93 dt_list_append(dlp, new);
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dlist.h66 * @v new New list entry
70 static inline void __list_add ( struct list_head *new, argument
73 next->prev = new;
74 new->next = next;
75 new->prev = prev;
76 prev->next = new;
80 * Add a new entry to the head of a list
82 * @v new New entry to be added
83 * @v head List head, or entry after which to add the new entry
85 static inline void list_add ( struct list_head *new, struc argument
99 list_add_tail( struct list_head *new, struct list_head *head ) argument
186 list_cut_position( struct list_head *new, struct list_head *list, struct list_head *entry ) argument
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/interface/pcbios/
H A Dmemtop_umalloc.c94 DBG ( "...new best block found\n" );
139 * Calling realloc() with a new size of zero is a valid way to free a
144 userptr_t new = ptr; local
180 new = userptr_add ( ptr, - ( new_size - extmem.size ) );
181 align = ( user_to_phys ( new, 0 ) & ( EM_ALIGN - 1 ) );
183 new = userptr_add ( new, -align );
187 user_to_phys ( new, 0 ),
188 user_to_phys ( new, new_size ));
189 memmove_user ( new,
[all...]
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/pragma/
H A Dtst.libdepfullyconnected.ksh81 push(@new, substr(\$_, \$pos+2, 4));
87 exit 1 if @new != @order;
89 while (@new) {
90 exit 1 if pop(@new) ne pop(@order);
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/cmd/baddof/
H A Dbaddof.c61 int new, rv; local
101 new = open("/devices/pseudo/dtrace@0:dtrace", O_RDWR);
103 if (new == -1)
106 if (new != fd) {
107 dup2(new, fd);
108 close(new);
137 * Success! This will be our new base for valid DOF.
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/common/ctf/
H A Dctf_util.c41 ctf_list_append(ctf_list_t *lp, void *new) argument
44 ctf_list_t *q = new; /* q = new list element */
61 ctf_list_prepend(ctf_list_t *lp, void *new) argument
63 ctf_list_t *p = new; /* p = new list element */
/vbox/src/libs/xpcom18a4/ipc/ipcd/shared/src/
H A DipcStringList.h62 void *operator new(size_t size, const char *str) CPP_THROW_NEW;
81 Super::Prepend(new (str) ipcStringNode());
86 Super::Append(new (str) ipcStringNode());
H A DipcIDList.h75 Super::Prepend(new ipcIDNode(id));
80 Super::Append(new ipcIDNode(id));
/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Dstring.c23 * reentrant and should be faster). Use only strsep() in new code, please.
341 char *new; local
345 new = malloc(len+1);
346 if (new) {
347 new[len] = '\0';
348 memcpy(new,s,len);
350 return new;
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/PosixLib/Stringlist/
H A Dstringlist.c88 char **new; local
90 new = realloc(sl->sl_str,
92 if (new == NULL)
95 sl->sl_str = new;
/vbox/src/VBox/Frontends/VirtualBox/src/globals/
H A DCIShared.h63 CIShared( bool null = true ) : d( null ? Null.d->ref(), Null.d : new Data() ) {}
80 return isNull() ? CIShared( Null ) : CIShared( new Data( *d ) );
214 template< class D > CIShared<D> CIShared<D>::Null = CIShared( new Data( 0 ) );
218 * Creates a new instance. If the argument is true (which is the default)
235 * Creates a new instance and initializes it by a reference to the same data
245 * Assigns a new value to this instance by instructing it to refer to the
256 * data wasn't shared before this call. The new copy becomes not original
292 d = new Data( *d );
316 d = new Data( *d );
/vbox/src/VBox/Devices/PC/ipxe/src/util/
H A Delf2efi.c326 * @ret new New PE section
331 struct pe_section *new; local
362 new = xmalloc ( sizeof ( *new ) + section_filesz );
363 memset ( new, 0, sizeof ( *new ) + section_filesz );
366 strncpy ( ( char * ) new->hdr.Name, section->name,
367 sizeof ( new->hdr.Name ) );
368 new->hdr.Misc.VirtualSize = section_memsz;
369 new
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/
H A Dxf86drm.h292 #define DRM_CAS(lock,old,new,__ret) \
302 "r" (new)); \
307 #define DRM_CAS(lock, old, new, ret) \
327 "r" (new)); \
332 #define DRM_CAS(lock,old,new,__ret) \
337 __new = new; \
358 #define DRM_CAS(lock,old,new,__ret) \
362 __result = _InterlockedCompareExchange_acq(&__drm_dummy_lock(lock), (new), __old);\
365 (old), (new)) \
370 #define DRM_CAS(lock,old,new,__re
[all...]
/vbox/src/VBox/Additions/x11/x11include/4.3/programs/Xserver/hw/xfree86/os-support/
H A Dxf86drm.h266 #define DRM_CAS(lock,old,new,__ret) \
276 "r" (new)); \
281 #define DRM_CAS(lock, old, new, ret) \
301 "r" (new)); \
306 #define DRM_CAS(lock,old,new,__ret) \
311 __new = new; \
332 #define DRM_CAS(lock,old,new,__ret) \
335 (old), (new)) \
340 #define DRM_CAS(lock,old,new,__ret) \
349 : "r" (__old), "r" (new) \
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/
H A Dxf86drm.h292 #define DRM_CAS(lock,old,new,__ret) \
302 "r" (new)); \
307 #define DRM_CAS(lock, old, new, ret) \
327 "r" (new)); \
332 #define DRM_CAS(lock,old,new,__ret) \
337 __new = new; \
358 #define DRM_CAS(lock,old,new,__ret) \
362 __result = _InterlockedCompareExchange_acq(&__drm_dummy_lock(lock), (new), __old);\
365 (old), (new)) \
370 #define DRM_CAS(lock,old,new,__re
[all...]
/vbox/src/VBox/Additions/x11/x11include/libdrm-2.4.13/
H A Dxf86drm.h313 #define DRM_CAS(lock,old,new,__ret) \
323 "r" (new)); \
328 #define DRM_CAS(lock, old, new, ret) \
347 : "r"(new), "r"(old) \
353 #define DRM_CAS(lock,old,new,__ret) \
358 __new = new; \
379 #define DRM_CAS(lock,old,new,__ret) \
383 __result = _InterlockedCompareExchange_acq(&__drm_dummy_lock(lock), (new), __old);\
386 (old), (new)) \
391 #define DRM_CAS(lock,old,new,__re
[all...]
/vbox/src/VBox/Devices/PC/ipxe/contrib/vm/
H A Dserial-console149 open my $new, ">$active" or die "Could not open $active: $!\n";
150 print $new <<"EOF";
174 print $new $line;
176 print $new $patch unless $patched;
178 close $new;
209 my $pty = IO::Pty->new();
223 $termios = POSIX::Termios->new;
224 $restore_termios = POSIX::Termios->new;
239 my $select = IO::Select->new ( \*STDIN, $pty );
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/
H A Dinet_pton.c135 u_int new = *tp * 10 + (u_int)(pch - digits); local
137 if (new > 255)
139 *tp = (u_char)new;
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/EbcDxe/X64/
H A DEbcLowLevel.S47 # Set stack pointer to new value
79 # Construct new stack
94 # build new paramater calling convention
111 # build new paramater calling convention

Completed in 157 milliseconds

12345678