Searched refs:needed (Results 1 - 25 of 142) sorted by relevance

123456

/external/bison/lib/
H A Dgetdelim.c99 size_t needed = 2 * *n + 1; /* Be generous. */ local
102 if (needed_max < needed)
103 needed = needed_max;
104 if (cur_len + 1 >= needed)
111 new_lineptr = (char *) realloc (*lineptr, needed);
119 *n = needed;
/external/elfutils/src/libcpu/
H A Di386_data.h402 int needed; local
404 needed = snprintf (buf, avail, "%%%s", dregs[byte]);
406 needed = snprintf (buf, avail, "%%mm%" PRIxFAST8, byte);
407 if ((size_t) needed > avail)
408 return needed - avail;
409 *bufcntp += needed;
431 int needed = snprintf (&d->bufp[*bufcntp], avail, "%%xmm%" PRIxFAST8, local
433 if ((size_t) needed > avail)
434 return needed - avail;
435 *d->bufcntp += needed;
473 int needed = snprintf (&d->bufp[*bufcntp], avail, "%s0x%" ABSPRIFMT, local
562 int needed = snprintf (&d->bufp[*bufcntp], avail, "%%%s%" PRIx32, local
595 int needed = snprintf (&d->bufp[*bufcntp], avail, "0x%" PRIx32, local
626 int needed = snprintf (&d->bufp[*bufcntp], avail, "(%%%s%s)", local
675 int needed = snprintf (&d->bufp[*bufcntp], avail, "%%es:(%%%sdi)", local
695 int needed; local
734 int needed = snprintf (&d->bufp[*bufcntp], avail, "$0x%" PRIxFAST8, word); local
752 int needed; local
784 int needed = snprintf (&d->bufp[*bufcntp], avail, "$0x%" PRIx64, local
787 int needed = snprintf (&d->bufp[*bufcntp], avail, "$0x%" PRIx32, local
812 int needed = snprintf (&d->bufp[*bufcntp], avail, "$0x%" PRIx64, local
815 int needed = snprintf (&d->bufp[*bufcntp], avail, "$0x%" PRIx32, word); local
826 int needed = snprintf (&d->bufp[*bufcntp], avail, "$0x%" PRIx16, word); local
843 int needed = snprintf (&d->bufp[*bufcntp], avail, "$0x%" PRIx16, word); local
859 int needed; local
883 int needed = snprintf (&d->bufp[*bufcntp], avail, "$0x%" PRIx32, local
901 int needed = snprintf (&d->bufp[*bufcntp], avail, "0x%" PRIx64, local
905 int needed = snprintf (&d->bufp[*bufcntp], avail, "0x%" PRIx32, local
924 int needed = snprintf (&d->bufp[*bufcntp], avail, "%%mm%" PRIxFAST8, byte); local
1312 int needed = snprintf (&d->bufp[*bufcntp], avail, "%%st(%" PRIx32 ")", local
1346 int needed = snprintf (&d->bufp[*bufcntp], avail, "$0x%" PRIx16, absval); local
1413 int needed = snprintf (&d->bufp[*bufcntp], avail, "%%xmm%" PRIxFAST8, byte); local
[all...]
/external/valgrind/exp-bbv/tests/amd64-linux/
H A Dmillion.S7 xor %rcx,%rcx # not needed, pads total to 1M
8 xor %rax,%rax # not needed, pads total to 1M
/external/wpa_supplicant_8/hs20/server/www/
H A Dspp.php27 $needed = array('nonce'=>1, 'nc'=>1, 'cnonce'=>1, 'qop'=>1, 'username'=>1, variable
30 $keys = implode('|', array_keys($needed));
35 unset($needed[$m[1]]);
37 if ($needed) {
38 error_log("spp.php - Authentication failed - missing: " . print_r($needed));
H A Dest.php14 $needed = array('nonce'=>1, 'nc'=>1, 'cnonce'=>1, 'qop'=>1, 'username'=>1, variable
17 $keys = implode('|', array_keys($needed));
22 unset($needed[$m[1]]);
24 if ($needed) {
/external/icu/icu4j/main/classes/currdata/src/com/ibm/icu/impl/
H A DICUCurrencyMetaInfo.java77 int needed = collector.collects();
79 needed |= Region;
82 needed |= Currency;
85 needed |= Date;
88 needed |= Tender;
91 if (needed != 0) {
95 collectRegion(collector, filter, needed, b);
99 collectRegion(collector, filter, needed, regionInfo.at(i));
108 int needed, ICUResourceBundle b) {
111 if (needed
107 collectRegion(Collector<T> collector, CurrencyFilter filter, int needed, ICUResourceBundle b) argument
[all...]
/external/llvm/autoconf/m4/
H A Dneed_dev_zero_for_mmap.m46 [AC_CACHE_CHECK([if /dev/zero is needed for mmap],
/external/skia/src/gpu/
H A DGrPlotMgr.h18 size_t needed = width * height; local
19 if (needed <= sizeof(fStorage)) {
22 fBusy = SkNEW_ARRAY(char, needed);
/external/icu/icu4c/source/samples/numfmt/
H A Dcapi.c25 int32_t needed; local
58 in the US locale. The return value is the buffer size needed.
64 needed = unum_formatDouble(fmt, a, buf, 256, NULL, &status);
/external/llvm/tools/bugpoint-passes/
H A DAndroid.mk17 LOCAL_MODULE_CLASS := SHARED_LIBRARIES # needed for tblgen
/external/openssh/
H A Droaming_common.c199 size_t available, needed; local
205 needed = write_bytes - *offset;
207 (unsigned long)needed, (unsigned long long)*offset);
208 if (needed > available)
210 if (out_last < needed) {
211 int chunkend = needed - out_last;
216 atomicio(vwrite, fd, out_buf + (out_last - needed), needed);
/external/llvm/test/MC/ARM/AlignedBundling/
H A Dpad-align-to-bundle-end.s24 # A 4-byte padding is needed here
35 # A 12-byte padding is needed here to push the group to the end of the next
/external/libedit/examples/
H A Dwtc1.c44 int needed = wcstombs(0, wstr, 0) + 1; local
45 if (needed > buf.len) {
46 buf.str = malloc(needed);
47 buf.len = needed;
49 wcstombs(buf.str, wstr, needed);
50 buf.str[needed - 1] = 0;
/external/llvm/tools/llvm-ar/
H A DAndroid.mk36 # the additional dependency is needed when you run mm/mmm.
/external/mesa3d/docs/
H A DMESA_pack_invert.spec43 allows images to be read such that inverting isn't needed.
57 future if needed.
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_libbacktrace.cc51 uptr needed = data->size + l + 1; local
52 if (needed > data->allocated) {
54 if (needed > data->allocated)
55 data->allocated = needed;
/external/valgrind/exp-bbv/tests/x86/
H A Dmillion.S9 xor %ecx,%ecx # not needed, pads total to 1M
/external/libvpx/libvpx/
H A Dtools_common.c112 size_t needed = w * bytespp; local
116 const size_t more = (left < needed) ? left : needed;
119 needed -= more;
122 if (needed > 0) {
123 shortread |= (fread(ptr + buf_position, 1, needed, f) < needed);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/signers/
H A DDSASigner.java162 protected SecureRandom initSecureRandom(boolean needed, SecureRandom provided) argument
164 return !needed ? null : (provided != null) ? provided : new SecureRandom();
H A DECDSASigner.java193 protected SecureRandom initSecureRandom(boolean needed, SecureRandom provided) argument
195 return !needed ? null : (provided != null) ? provided : new SecureRandom();
/external/iptables/extensions/
H A Dlibext.mk11 # LOCAL_PATH needed because of dirty #include "blabla.c"
/external/libexif/
H A Dlibexif.spec20 Summary: The files needed for libexif application development
/external/libunwind/doc/
H A Dunw_step.tex39 unwind-info needed to complete the operation.
40 \item[\Const{UNW\_EBADVERSION}] The unwind-info needed to complete the
/external/libvncserver/
H A DLibVNCServer.spec94 - create devel package, needed to compile but not needed for running
/external/vboot_reference/
H A DAndroid.mk29 # Firmware library sources needed by VbInit() call
39 # Additional firmware library sources needed by VbSelectFirmware() call
54 # Additional firmware library sources needed by VbSelectAndLoadKernel() call

Completed in 1012 milliseconds

123456