Home
last modified time | relevance | path

Searched refs:LONG (Results 1 – 3 of 3) sorted by relevance

/bionic/libc/upstream-openbsd/lib/libc/stdio/
Dvfwscanf.c54 #define LONG 0x00001 /* l: long or double */ macro
194 flags |= LONG; in __vfwscanf()
220 flags |= LONG; in __vfwscanf()
233 flags |= LONG; in __vfwscanf()
305 else if (flags & LONG) in __vfwscanf()
327 flags |= LONG; in __vfwscanf()
355 if (flags & LONG) { in __vfwscanf()
414 if ((flags & SUPPRESS) && (flags & LONG)) { in __vfwscanf()
423 } else if (flags & LONG) { in __vfwscanf()
478 if ((flags & SUPPRESS) && (flags & LONG)) { in __vfwscanf()
[all …]
Dvfscanf.c53 #define LONG 0x00001 /* l: long or double */ macro
180 flags |= LONG; in __svfscanf()
206 flags |= LONG; in __svfscanf()
219 flags |= LONG; in __svfscanf()
279 else if (flags & LONG) in __svfscanf()
301 flags |= LONG; in __svfscanf()
342 if (flags & LONG) { in __svfscanf()
420 if (flags & LONG) { in __svfscanf()
526 if (flags & LONG) { in __svfscanf()
747 else if (flags & LONG) in __svfscanf()
[all …]
/bionic/libc/upstream-dlmalloc/
Dmalloc.c1510 LONG __cdecl _InterlockedCompareExchange(LONG volatile *Dest, LONG Exchange, LONG Comp);
1511 LONG __cdecl _InterlockedExchange(LONG volatile *Target, LONG Value);
1858 #define CAS_LOCK(sl) interlockedexchange(sl, (LONG)1)
1859 #define CLEAR_LOCK(sl) interlockedexchange (sl, (LONG)0)
1983 static volatile LONG malloc_global_mutex_status;
1993 interlockedcompareexchange(&malloc_global_mutex_status, (LONG)-1, (LONG)0) == 0) { in init_malloc_global_mutex()
1995 interlockedexchange(&malloc_global_mutex_status, (LONG)1); in init_malloc_global_mutex()