Searched refs:old (Results 1 - 25 of 184) sorted by relevance

12345678

/haiku-fatelf/src/apps/icon-o-matic/generic/support/
H A DReferenceable.cpp48 int32 old = atomic_add(&fReferenceCount, -1); local
50 // if (old > 1) {
56 if (old == 1) {
66 } else if (old < 1)
/haiku-fatelf/src/bin/bash/
H A Dbashjmp.h32 #define COPY_PROCENV(old, save) \
33 xbcopy ((char *)old, (char *)save, sizeof (procenv_t));
/haiku-fatelf/src/bin/gdb/libiberty/
H A Dsigsetmask.c11 the old mask (which, for libiberty's implementation, will always
32 sigset_t old; local
36 abort(); /* FIXME, we don't know how to translate old mask to new */
38 sigprocmask(SIG_SETMASK, &new, &old);
39 return 1; /* FIXME, we always return 1 as old value. */
/haiku-fatelf/src/libs/stdc++/legacy/
H A Dsigsetmask.c21 sigset_t old; variable
25 abort(); /* FIXME, we don't know how to translate old mask to new */
27 sigprocmask(SIG_SETMASK, &new, &old);
28 return 1; /* FIXME, we always return 1 as old value. */
/haiku-fatelf/src/bin/network/tcpdump/
H A Dsetsignal.c77 struct sigaction old, new; local
81 if (sigaction(sig, &new, &old) < 0)
83 return (old.sa_handler);
/haiku-fatelf/src/bin/sharutils/intl/
H A Dtextdomain.c64 char *old; local
70 old = (char *) _nl_current_default_domain;
88 if (old != _nl_default_default_domain)
89 free (old);
/haiku-fatelf/src/bin/zic/
H A Dialloc.c46 icatalloc(old, new)
47 char * const old;
54 if (old == NULL)
57 return old;
58 else oldsize = strlen(old);
59 if ((result = irealloc(old, oldsize + newsize + 1)) != NULL)
/haiku-fatelf/src/kits/network/libbind/isc/
H A Dev_streams.c148 evStream *old = id.opaque; local
159 if (old->prev != NULL)
160 old->prev->next = old->next;
162 ctx->streams = old->next;
163 if (old->next != NULL)
164 old->next->prev = old->prev;
167 * If 'old' is on the ctx->strDone list, remove it. Update
170 if (old
[all...]
/haiku-fatelf/headers/cpp/
H A DSFile.h47 int setsize(int s) { int old = sz; sz = s; return old; } local
/haiku-fatelf/src/bin/gdb/bfd/
H A Drs6000-core.c54 system include files. Punt the old one and get us a new name for the
106 /* Union of old and new core dump structures. */
114 struct core_dump old; /* old AIX 4.2- core dump, still used on member in union:__anon3639
118 /* Union of old and new vm_info structures. */
127 struct vm_info old; member in union:__anon3640
131 /* Return whether CoreHdr C is in new or old format. */
134 # define CORE_NEW(c) (!(c).old.c_entries)
239 /* Magic end-of-stack addresses for old core dumps. This is _very_ fragile,
248 /* Size of the leading portion that old an
[all...]
/haiku-fatelf/src/tools/fixup_amiga_boot_checksum/
H A Dfixup_amiga_boot_checksum.c30 uint32_t old = sum; local
34 if (sum < old)
/haiku-fatelf/src/bin/bash/lib/readline/
H A Dhistsearch.c182 int ret, old; local
184 old = where_history ();
188 history_set_pos (old);
192 history_set_pos (old);
/haiku-fatelf/src/bin/gdb/readline/
H A Dhistsearch.c183 int ret, old; local
185 old = where_history ();
189 history_set_pos (old);
193 history_set_pos (old);
/haiku-fatelf/src/bin/gdb/gdb/
H A Dser-pipe.c98 for (old = pidlist; old; old = old->next)
99 close (fileno (old->fp)); /* don't allow a flush */
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/pthread_join/
H A Dthreads_scenarii.c115 int old; local
215 ret = pthread_attr_getschedpolicy( &scenarii[ i ].ta, &old );
223 sp.sched_priority = sched_get_priority_max( old );
226 sp.sched_priority = sched_get_priority_min( old );
247 ret = pthread_attr_getscope( &scenarii[ i ].ta, &old );
256 if ( old == PTHREAD_SCOPE_PROCESS )
257 old = PTHREAD_SCOPE_SYSTEM;
259 old = PTHREAD_SCOPE_PROCESS;
261 ret = pthread_attr_setscope( &scenarii[ i ].ta, old );
270 output( "Contension scope set to %s\n", old
[all...]
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/pthread_create/
H A Dthreads_scenarii.c127 int old; local
169 ret = pthread_attr_getdetachstate(&scenarii[i].ta, &old);
171 if (old != PTHREAD_CREATE_JOINABLE) { FAILED("The default attribute is not PTHREAD_CREATE_JOINABLE"); }
221 ret = pthread_attr_getschedpolicy(&scenarii[i].ta, &old);
225 sp.sched_priority = sched_get_priority_max(old);
227 sp.sched_priority = sched_get_priority_min(old);
243 ret = pthread_attr_getscope(&scenarii[i].ta, &old);
248 if (old == PTHREAD_SCOPE_PROCESS)
249 old = PTHREAD_SCOPE_SYSTEM;
251 old
[all...]
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/pthread_detach/
H A Dthreads_scenarii.c127 int old; local
169 ret = pthread_attr_getdetachstate(&scenarii[i].ta, &old);
171 if (old != PTHREAD_CREATE_JOINABLE) { FAILED("The default attribute is not PTHREAD_CREATE_JOINABLE"); }
221 ret = pthread_attr_getschedpolicy(&scenarii[i].ta, &old);
225 sp.sched_priority = sched_get_priority_max(old);
227 sp.sched_priority = sched_get_priority_min(old);
243 ret = pthread_attr_getscope(&scenarii[i].ta, &old);
248 if (old == PTHREAD_SCOPE_PROCESS)
249 old = PTHREAD_SCOPE_SYSTEM;
251 old
[all...]
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/pthread_exit/
H A Dthreads_scenarii.c127 int old; local
169 ret = pthread_attr_getdetachstate(&scenarii[i].ta, &old);
171 if (old != PTHREAD_CREATE_JOINABLE) { FAILED("The default attribute is not PTHREAD_CREATE_JOINABLE"); }
221 ret = pthread_attr_getschedpolicy(&scenarii[i].ta, &old);
225 sp.sched_priority = sched_get_priority_max(old);
227 sp.sched_priority = sched_get_priority_min(old);
243 ret = pthread_attr_getscope(&scenarii[i].ta, &old);
248 if (old == PTHREAD_SCOPE_PROCESS)
249 old = PTHREAD_SCOPE_SYSTEM;
251 old
[all...]
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/stress/threads/pthread_create/
H A Dthreads_scenarii.c127 int old; local
169 ret = pthread_attr_getdetachstate(&scenarii[i].ta, &old);
171 if (old != PTHREAD_CREATE_JOINABLE) { FAILED("The default attribute is not PTHREAD_CREATE_JOINABLE"); }
221 ret = pthread_attr_getschedpolicy(&scenarii[i].ta, &old);
225 sp.sched_priority = sched_get_priority_max(old);
227 sp.sched_priority = sched_get_priority_min(old);
243 ret = pthread_attr_getscope(&scenarii[i].ta, &old);
248 if (old == PTHREAD_SCOPE_PROCESS)
249 old = PTHREAD_SCOPE_SYSTEM;
251 old
[all...]
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/stress/threads/pthread_exit/
H A Dthreads_scenarii.c127 int old; local
169 ret = pthread_attr_getdetachstate(&scenarii[i].ta, &old);
171 if (old != PTHREAD_CREATE_JOINABLE) { FAILED("The default attribute is not PTHREAD_CREATE_JOINABLE"); }
221 ret = pthread_attr_getschedpolicy(&scenarii[i].ta, &old);
225 sp.sched_priority = sched_get_priority_max(old);
227 sp.sched_priority = sched_get_priority_min(old);
243 ret = pthread_attr_getscope(&scenarii[i].ta, &old);
248 if (old == PTHREAD_SCOPE_PROCESS)
249 old = PTHREAD_SCOPE_SYSTEM;
251 old
[all...]
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/stress/threads/pthread_self/
H A Dthreads_scenarii.c165 int old; local
207 ret = pthread_attr_getdetachstate(&scenarii[i].ta, &old);
209 if (old != PTHREAD_CREATE_JOINABLE) { FAILED("The default attribute is not PTHREAD_CREATE_JOINABLE"); }
259 ret = pthread_attr_getschedpolicy(&scenarii[i].ta, &old);
263 sp.sched_priority = sched_get_priority_max(old);
265 sp.sched_priority = sched_get_priority_min(old);
281 ret = pthread_attr_getscope(&scenarii[i].ta, &old);
286 if (old == PTHREAD_SCOPE_PROCESS)
287 old = PTHREAD_SCOPE_SYSTEM;
289 old
[all...]
/haiku-fatelf/src/kits/midi2/
H A DMidiEndpoint.cpp120 int32 old = atomic_add(&fRefCount, -1); local
122 TRACE(("BMidiEndpoint::Release refCount is now %ld", old - 1))
124 if (old == 1) {
133 } else if (old <= 0) {
145 int32 old = local
149 TRACE(("BMidiEndpoint::Acquire refCount is now %ld", old + 1))
/haiku-fatelf/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dlogging.c121 u32 old; local
122 old = ntfs_log.levels;
124 return old;
138 u32 old; local
139 old = ntfs_log.levels;
141 return old;
168 u32 old; local
169 old = ntfs_log.flags;
171 return old;
185 u32 old; local
[all...]
/haiku-fatelf/src/add-ons/kernel/drivers/audio/ac97/ich/distro/
H A Duninstall.sh10 if [ -e ~/config/add-ons/kernel/drivers/dev/audio/old/ich_ac97 ]
12 rm ~/config/add-ons/kernel/drivers/dev/audio/old/ich_ac97
/haiku-fatelf/src/add-ons/screen_savers/flurry/
H A DSmoke.h66 float old[3]; member in struct:SmokeV

Completed in 131 milliseconds

12345678