Home
last modified time | relevance | path

Searched refs:any (Results 1 – 23 of 23) sorted by relevance

/bionic/libc/upstream-openbsd/lib/libc/locale/
D_wcstol.h55 int neg, any, cutlim; in FUNCNAME() local
102 for (acc = 0, any = 0;; wc = (wchar_t) *s++) { in FUNCNAME()
108 if (any < 0) in FUNCNAME()
112 any = -1; in FUNCNAME()
116 any = 1; in FUNCNAME()
122 any = -1; in FUNCNAME()
126 any = 1; in FUNCNAME()
133 *endptr = (wchar_t *)(any ? s - 1 : nptr); in FUNCNAME()
D_wcstoul.h54 int neg, any, cutlim; in FUNCNAME() local
92 for (acc = 0, any = 0;; wc = (wchar_t) *s++) { in FUNCNAME()
98 if (any < 0) in FUNCNAME()
101 any = -1; in FUNCNAME()
105 any = 1; in FUNCNAME()
110 if (neg && any > 0) in FUNCNAME()
113 *endptr = (wchar_t *)(any ? s - 1 : nptr); in FUNCNAME()
/bionic/libc/bionic/
Dstrtol.cpp72 int any = 0; in StrToI() local
83 if (any < 0) continue; in StrToI()
85 any = -1; in StrToI()
89 any = 1; in StrToI()
94 if (endptr != nullptr) *endptr = const_cast<char*>(any ? s - 1 : nptr); in StrToI()
136 int any = 0; in StrToU() local
146 if (any < 0) continue; in StrToU()
148 any = -1; in StrToU()
152 any = 1; in StrToU()
157 if (neg && any > 0) acc = -acc; in StrToU()
[all …]
/bionic/apex/
DNOTICE31 "Object" form shall mean any form resulting from mechanical
41 "Derivative Works" shall mean any work, whether in Source or Object
49 "Contribution" shall mean any work of authorship, including
50 the original version of the Work and any modifications or additions
55 means any form of electronic, verbal, or written communication sent
63 "Contributor" shall mean Licensor and any individual or Legal Entity
83 institute patent litigation against any entity (including a
86 or contributory patent infringement, then any patent licenses
91 Work or Derivative Works thereof in any medium, with or without
95 (a) You must give any other recipients of the Work or
[all …]
/bionic/docs/
DNOTICE31 "Object" form shall mean any form resulting from mechanical
41 "Derivative Works" shall mean any work, whether in Source or Object
49 "Contribution" shall mean any work of authorship, including
50 the original version of the Work and any modifications or additions
55 means any form of electronic, verbal, or written communication sent
63 "Contributor" shall mean Licensor and any individual or Legal Entity
83 institute patent litigation against any entity (including a
86 or contributory patent infringement, then any patent licenses
91 Work or Derivative Works thereof in any medium, with or without
95 (a) You must give any other recipients of the Work or
[all …]
Dlibc_assembler.md8 have any bugs. See the [Testing](#Testing) section for details about how to
150 * Verify that all labels are of the format .LXXX, where XXX is any valid string
151 for a label. If any other label is used, entries in the symbol table
155 sp in any way have corresponding cfi information. Along with this item,
Dnative_allocator.md39 to `malloc_disable`. This call will unpause any thread which is making
56 allocator will attempt to purge and release any unused memory back to the
78 any unused memory immediately. The argument for this call is ignored. If
160 any issue related to the code migrating from one core to another
170 Choosing to run on the little core can tend to highlight any performance
354 For any call that allocates a pointer, the time for the call and the time
393 of a process, any named maps must be added to the file:
410 When run without any arguments, the benchmark will run over all of the
Dfdtrack.md15 called at any point in order to start capturing events, but be sure to properly
D32-bit-abi.md19 Android has always silently inserted `O_LARGEFILE` into any open call, so if
Delf-tls.md216 * web search: [`"dlopen: cannot load any more object with static TLS"`][glibc-static-tls-error]
218 Neither musl nor the Bionic TLS prototype currently allocate any surplus TLS memory.
228 [glibc-static-tls-error]: https://www.google.com/search?q=%22dlopen:+cannot+load+any+more+object+wi…
577 The dynamic loader currently can't use ELF TLS, so any part of libc linked into the loader (i.e.
784 LE, then the Bionic loader can place the executable's TLS segment at any offset from the TP, leaving
824 Most Android executables do not use any `thread_local` variables. In the current prototype, with the
/bionic/build/
DNOTICE31 "Object" form shall mean any form resulting from mechanical
41 "Derivative Works" shall mean any work, whether in Source or Object
49 "Contribution" shall mean any work of authorship, including
50 the original version of the Work and any modifications or additions
55 means any form of electronic, verbal, or written communication sent
63 "Contributor" shall mean Licensor and any individual or Legal Entity
83 institute patent litigation against any entity (including a
86 or contributory patent infringement, then any patent licenses
91 Work or Derivative Works thereof in any medium, with or without
95 (a) You must give any other recipients of the Work or
[all …]
/bionic/tests/
Dnetinet_in_test.cpp46 in6_addr any = IN6ADDR_ANY_INIT; in TEST() local
47 ASSERT_EQ(0, memcmp(&any, &in6addr_any, sizeof(in6addr_any))); in TEST()
/bionic/libc/kernel/
DREADME.md16 They can be also included before or after any Bionic C library header.
34 warn if any scsi header files have changed and require new versions
111 changes do not introduce any errors.
/bionic/libdl/
DAndroid.bp62 // NOTE: --exclude-libs=libgcc.a makes sure that any symbols libdl.so pulls from
162 // NOTE: --exclude-libs=libgcc.a makes sure that any symbols libdl.so pulls from
/bionic/
Dandroid-changes-for-ndk-developers.md17 any architecture, as we will be doing basic inspection only. On Linux
32 * Warnings about any behavior change that will affect a library if you
70 in that order. For API 23 and later, for any given library, the dynamic
73 executable, LD_PRELOAD libraries, and any library with the DF_1_GLOBAL
78 intercept any symbol.
150 any zip file, not just your APK. Just give dlopen(3) a path of the form
270 entry/flag but without any actual text relocations. This doesn't happen
417 calls of dlerror(3) but to any time the dynamic linker writes to its
418 internal error buffer, so you'll see any errors the dynamic linker would
DREADME.md116 # can't use any of the BSD implementations. The C files are usually
234 Some tests cannot do any useful work unless run as root. In this case,
250 # This will sync any *test* changes, but not *code* changes:
/bionic/libc/malloc_debug/
DREADME.md52 modified. If any part of the front guard is modified, an error will be reported
55 If the backtrace option is also enabled, then any error message will include
78 modified. If any part of the rear guard is modified, an error will be reported
105 Note that any backtrace frames that occur within the malloc backtrace library
164 As of Q, any time that a backtrace is gathered, a different algorithm is used
278 reaches the TOTAL\_ENTRIES value, then any further allocations/frees are
638 contain any data.
673 And verify that any spaces are properly escaped.
/bionic/linker/
DAndroid.bp80 // Configuration for the linker binary and any of its static libraries.
431 // NOTE: --exclude-libs=libgcc.a makes sure that any symbols ld-android.so pulls from
/bionic/libc/
DNOTICE130 Permission to use, copy, modify, and/or distribute this software for any
147 Permission to use, copy, modify, and/or distribute this software for any
963 Permission to use, copy, modify, and distribute this software for any
1255 Permission to use, copy, modify, and distribute this software for any
2546 of any kind. I shall in no event be liable for anything that happens
2580 Permission to use, copy, modify, and distribute this software for any
2599 Permission to use, copy, modify, and distribute this software for any
2618 Permission to use, copy, modify, and distribute this software for any
2635 Permission to use, copy, modify, and distribute this software for any
2737 Permission to use, copy, modify, and distribute this software for any
[all …]
DAndroid.bp459 // contain any troublesome global data or constructors).
1888 // The build system generally requires that any dependencies of a target
1893 // is correct because the headers can support any sdk_version.
/bionic/libc/malloc_hooks/
DREADME.md61 These hooks can be set at any time, but there is no thread safety, so
/bionic/benchmarks/
DREADME.md72 AT_<any power of two between 2 and 16384>_ALIGNED_<ONE|TWO>BUF
/bionic/libm/
DNOTICE914 Permission to use, copy, modify, and distribute this software for any