/external/elfutils/src/libcpu/ |
D | i386_data.h | 402 int needed; in FCT_MOD$R_M() local 404 needed = snprintf (buf, avail, "%%%s", dregs[byte]); in FCT_MOD$R_M() 406 needed = snprintf (buf, avail, "%%mm%" PRIxFAST8, byte); in FCT_MOD$R_M() 407 if ((size_t) needed > avail) in FCT_MOD$R_M() 408 return needed - avail; in FCT_MOD$R_M() 409 *bufcntp += needed; in FCT_MOD$R_M() 431 int needed = snprintf (&d->bufp[*bufcntp], avail, "%%xmm%" PRIxFAST8, in FCT_Mod$R_m() local 433 if ((size_t) needed > avail) in FCT_Mod$R_m() 434 return needed - avail; in FCT_Mod$R_m() 435 *d->bufcntp += needed; in FCT_Mod$R_m() [all …]
|
/external/icu/icu4j/main/classes/currdata/src/com/ibm/icu/impl/ |
D | ICUCurrencyMetaInfo.java | 77 int needed = collector.collects(); in collect() local 79 needed |= Region; in collect() 82 needed |= Currency; in collect() 85 needed |= Date; in collect() 88 needed |= Tender; in collect() 91 if (needed != 0) { in collect() 95 collectRegion(collector, filter, needed, b); in collect() 99 collectRegion(collector, filter, needed, regionInfo.at(i)); in collect() 108 int needed, ICUResourceBundle b) { in collectRegion() argument 111 if (needed == Region) { in collectRegion() [all …]
|
/external/bison/lib/ |
D | getdelim.c | 99 size_t needed = 2 * *n + 1; /* Be generous. */ in getdelim() local 102 if (needed_max < needed) in getdelim() 103 needed = needed_max; in getdelim() 104 if (cur_len + 1 >= needed) in getdelim() 111 new_lineptr = (char *) realloc (*lineptr, needed); in getdelim() 119 *n = needed; in getdelim()
|
/external/openssh/ |
D | roaming_common.c | 199 size_t available, needed; in resend_bytes() local 205 needed = write_bytes - *offset; in resend_bytes() 207 (unsigned long)needed, (unsigned long long)*offset); in resend_bytes() 208 if (needed > available) in resend_bytes() 210 if (out_last < needed) { in resend_bytes() 211 int chunkend = needed - out_last; in resend_bytes() 216 atomicio(vwrite, fd, out_buf + (out_last - needed), needed); in resend_bytes()
|
/external/wpa_supplicant_8/hs20/server/www/ |
D | spp.php | 27 $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));
|
D | est.php | 14 $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/libvpx/libvpx/ |
D | tools_common.c | 112 size_t needed = w * bytespp; in read_yuv_frame() local 116 const size_t more = (left < needed) ? left : needed; in read_yuv_frame() 119 needed -= more; in read_yuv_frame() 122 if (needed > 0) { in read_yuv_frame() 123 shortread |= (fread(ptr + buf_position, 1, needed, f) < needed); in read_yuv_frame()
|
/external/skia/src/gpu/ |
D | GrPlotMgr.h | 18 size_t needed = width * height; in GrPlotMgr() local 19 if (needed <= sizeof(fStorage)) { in GrPlotMgr() 22 fBusy = SkNEW_ARRAY(char, needed); in GrPlotMgr()
|
/external/libedit/examples/ |
D | wtc1.c | 44 int needed = wcstombs(0, wstr, 0) + 1; in my_wcstombs() local 45 if (needed > buf.len) { in my_wcstombs() 46 buf.str = malloc(needed); in my_wcstombs() 47 buf.len = needed; in my_wcstombs() 49 wcstombs(buf.str, wstr, needed); in my_wcstombs() 50 buf.str[needed - 1] = 0; in my_wcstombs()
|
/external/skia/gyp/ |
D | xps.gyp | 21 '../src/core', # needed to get SkGlyphCache.h 22 '../src/utils', # needed to get SkBitSet.h 40 '../src/utils', # needed to get SkBitSet.h
|
D | pdf.gyp | 21 '../src/core', # needed to get SkGlyphCache.h and SkTextFormatParams.h 23 '../src/utils', # needed to get SkBitSet.h
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_symbolizer_libbacktrace.cc | 51 uptr needed = data->size + l + 1; in CplusV3DemangleCallback() local 52 if (needed > data->allocated) { in CplusV3DemangleCallback() 54 if (needed > data->allocated) in CplusV3DemangleCallback() 55 data->allocated = needed; in CplusV3DemangleCallback()
|
/external/valgrind/exp-bbv/tests/amd64-linux/ |
D | million.S | 7 xor %rcx,%rcx # not needed, pads total to 1M 8 xor %rax,%rax # not needed, pads total to 1M
|
/external/llvm/docs/CommandGuide/ |
D | llvm-config.rst | 17 print the compiler flags, linker flags and object libraries needed to link 91 Print the C++ compiler flags needed to use LLVM headers. 97 Print the flags needed to link against LLVM libraries. 103 Print all the libraries needed to link against the specified LLVM
|
D | llvm-readobj.rst | 75 .. option:: -needed-libs 77 Display the needed libraries (only for ELF object files).
|
/external/icu/icu4c/source/samples/numfmt/ |
D | capi.c | 25 int32_t needed; in capi() local 64 needed = unum_formatDouble(fmt, a, buf, 256, NULL, &status); in capi()
|
/external/libxml2/python/ |
D | TODO | 16 - more work needed on context handling for function lookup 22 - element needed in both 48 - needed for SAX too
|
/external/llvm/test/MC/ARM/AlignedBundling/ |
D | pad-align-to-bundle-end.s | 24 # 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/bison/m4/ |
D | fpieee.m4 | 10 dnl No autoconf test needed. 39 # For full IEEE compliance (rarely needed), use option -mieee-with-inexact. 43 # For full IEEE compliance (rarely needed), use option -ieee_with_inexact.
|
D | flex.m4 | 77 ac_cv_lib_lex='none needed' 82 test "$ac_cv_lib_lex" != 'none needed' && break 86 test "$ac_cv_lib_lex" != 'none needed' && LEXLIB=$ac_cv_lib_lex
|
/external/wpa_supplicant_8/hostapd/ |
D | android.config | 50 # Driver support is also needed for IEEE 802.11w. 87 # EAP-PSK for the integrated EAP server (this is _not_ needed for WPA-PSK) 100 # functionality needed for EAP-FAST. If EAP-FAST is enabled with OpenSSL, 102 # to add the needed functions. 139 # code is not needed.
|
/external/openssh/contrib/hpux/ |
D | README | 15 o Customize sshd if needed (SSHD_ARGS) 29 o Customize egd if needed (EGD_ARGS and EGD_LOG)
|
/external/llvm/docs/ |
D | SegmentedStacks.rst | 32 current stack limit (minus the amount of space needed to allocate a new block) - 43 movabsq $8, %r10 # The amount of space needed 55 The unusual ``ret`` is needed to have the function which made a call to
|
/external/bison/tests/ |
D | actions.at | 1598 [[input.y:8.48: warning: a ';' might be needed at the end of action code 1600 input.y:9.48: warning: a ';' might be needed at the end of action code 1602 input.y:10.48: warning: a ';' might be needed at the end of action code 1604 input.y:11.48: warning: a ';' might be needed at the end of action code 1606 input.y:12.48: warning: a ';' might be needed at the end of action code 1608 input.y:13.48: warning: a ';' might be needed at the end of action code 1610 input.y:20.1: warning: a ';' might be needed at the end of action code 1612 input.y:21.1: warning: a ';' might be needed at the end of action code 1614 input.y:22.1: warning: a ';' might be needed at the end of action code 1616 input.y:23.1: warning: a ';' might be needed at the end of action code [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/signers/ |
D | DSASigner.java | 162 protected SecureRandom initSecureRandom(boolean needed, SecureRandom provided) in initSecureRandom() argument 164 return !needed ? null : (provided != null) ? provided : new SecureRandom(); in initSecureRandom()
|