/external/oprofile/libabi/ |
D | opimport.cpp | 60 little_endian = theabi.need(string("little_endian")) == 1; in extractor() 79 + theabi.need(off); in extract() 80 size_t nbytes = theabi.need(sz); in extract() 116 memcpy(head->magic, src + abi.need("offsetof_header_magic"), 4); in import_from_abi() 134 src += abi.need("sizeof_struct_opd_header"); in import_from_abi() 140 src += abi.need("sizeof_odb_descr_t"); in import_from_abi() 144 src += abi.need("sizeof_odb_node_t"); in import_from_abi() 147 unsigned int step = abi.need("sizeof_odb_node_t"); in import_from_abi()
|
/external/wpa_supplicant/ |
D | bignum.c | 83 size_t need = mp_unsigned_bin_size((mp_int *) n); in bignum_get_unsigned_bin() local 84 if (len && need > *len) { in bignum_get_unsigned_bin() 85 *len = need; in bignum_get_unsigned_bin() 93 *len = need; in bignum_get_unsigned_bin()
|
D | md4.c | 118 size_t have, need; in MD4Update() local 122 need = MD4_BLOCK_LENGTH - have; in MD4Update() 127 if (len >= need) { in MD4Update() 129 os_memcpy(ctx->buffer + have, input, need); in MD4Update() 131 input += need; in MD4Update() 132 len -= need; in MD4Update()
|
/external/wpa_supplicant_6/wpa_supplicant/src/tls/ |
D | bignum.c | 83 size_t need = mp_unsigned_bin_size((mp_int *) n); in bignum_get_unsigned_bin() local 84 if (len && need > *len) { in bignum_get_unsigned_bin() 85 *len = need; in bignum_get_unsigned_bin() 93 *len = need; in bignum_get_unsigned_bin()
|
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/ |
D | md4.c | 118 size_t have, need; in MD4Update() local 122 need = MD4_BLOCK_LENGTH - have; in MD4Update() 127 if (len >= need) { in MD4Update() 129 os_memcpy(ctx->buffer + have, input, need); in MD4Update() 131 input += need; in MD4Update() 132 len -= need; in MD4Update()
|
/external/bison/m4/ |
D | gettext_gl.m4 | 32 dnl If NEEDSYMBOL is specified and is 'need-ngettext', then GNU gettext 35 dnl 'need-formatstring-macros', then GNU gettext implementations that don't 63 ifelse([$2], [], , [ifelse([$2], [need-ngettext], , [ifelse([$2], [need-formatstring-macros], , 83 dnl the configure script would need to contain the same shell code 126 …define([gt_api_version], ifelse([$2], [need-formatstring-macros], 3, ifelse([$2], [need-ngettext],… 132 ]ifelse([$2], [need-formatstring-macros], 142 return * gettext ("")]ifelse([$2], [need-ngettext], [ + * ngettext ("", "", 0)], [])[ + _nl_msg_cat… 164 ]ifelse([$2], [need-formatstring-macros], 178 return * gettext ("")]ifelse([$2], [need-ngettext], [ + * ngettext ("", "", 0)], [])[ + _nl_msg_cat… 185 ]ifelse([$2], [need-formatstring-macros], [all …]
|
/external/zlib/contrib/blast/ |
D | blast.c | 66 local int bits(struct state *s, int need) in bits() argument 72 while (s->bitcnt < need) { in bits() 83 s->bitbuf = val >> need; in bits() 84 s->bitcnt -= need; in bits() 87 return val & ((1 << need) - 1); in bits()
|
/external/stlport/doc/ |
D | README.evc9 | 8 rem you need to adapt at least these three 15 rem obviously, these need to be adjusted to where you installed VS2008 and the SDKs 27 rem Note: there are more libs and includes under ce\atlmfc, you need to add these 43 rem obviously, these need to be adjusted to where you installed VS2008 63 - In order for STLport to recognize which target you are compiling for, you need to have
|
D | README.evc8 | 8 rem you need to adapt at least these three 15 rem obviously, these need to be adjusted to where you installed VS2005 and the SDKs 42 rem obviously, these need to be adjusted to where you installed VS2005 66 - In order for STLport to recognize which target you are compiling for, you need to have
|
/external/protobuf/gtest/ |
D | README | 78 Next you will need to prepare the GNU Autotools build system, if you 86 that you should only need to complete this step once. The subsequent `make' 88 need to be changed. 91 fail. You may need to explicitly specify a version to use. For instance, if you 120 that's enough for its own need, and will automatically use this when 123 Usually you don't need to care about which tuple library Google Test 124 uses. However, if your project already uses TR1 tuple, you need to 127 need to take care of it when upgrading from an earlier version), or 168 Should you need to remove Google Test from your system after having installed 242 To uninstall gtest.framework via the command line, you need to delete the three [all …]
|
/external/elfutils/m4/ |
D | gettext.m4 | 34 dnl If NEEDSYMBOL is specified and is 'need-ngettext', then GNU gettext 37 dnl 'need-formatstring-macros', then GNU gettext implementations that don't 65 ifelse([$2], [], , [ifelse([$2], [need-ngettext], , [ifelse([$2], [need-formatstring-macros], , 85 dnl the configure script would need to contain the same shell code 130 …define([gt_api_version], ifelse([$2], [need-formatstring-macros], 3, ifelse([$2], [need-ngettext],… 136 ]ifelse([$2], [need-formatstring-macros], 146 return (int) gettext ("")]ifelse([$2], [need-ngettext], [ + (int) ngettext ("", "", 0)], [])[ + _nl… 168 ]ifelse([$2], [need-formatstring-macros], 182 return (int) gettext ("")]ifelse([$2], [need-ngettext], [ + (int) ngettext ("", "", 0)], [])[ + _nl… 189 ]ifelse([$2], [need-formatstring-macros], [all …]
|
/external/chromium/third_party/libevent/ |
D | buffer.c | 266 size_t need = buf->misalign + buf->off + datlen; in evbuffer_expand() local 269 if (buf->totallen >= need) in evbuffer_expand() 284 while (length < need) in evbuffer_expand() 302 size_t need = buf->misalign + buf->off + datlen; in evbuffer_add() local 305 if (buf->totallen < need) { in evbuffer_add()
|
/external/bison/tests/ |
D | atlocal | 5 # We need a C compiler. 11 # We need `config.h'.
|
D | atlocal.in | 5 # We need a C compiler. 11 # We need `config.h'.
|
/external/chromium/third_party/icu/source/test/perf/ |
D | README | 37 In this file, you will need to set a few variables: 48 …* You only need to run the perl script from the latest ICU version. The corresponding perl script 49 in the previous versions of ICU do not need to be run seperately. 57 Note: To run the actual performance test, you will need to setup Perl with the following modules:
|
/external/icu4c/test/perf/ |
D | README | 37 In this file, you will need to set a few variables: 48 …* You only need to run the perl script from the latest ICU version. The corresponding perl script 49 in the previous versions of ICU do not need to be run seperately. 57 Note: To run the actual performance test, you will need to setup Perl with the following modules:
|
/external/bison/ |
D | configure.ac | 21 # This file uses AC_CONFIG_MACRO_DIR, so we need Autoconf 2.58 or better. 23 # puts the wrong absolute path names in the tests. So we need at 31 # We don't have a file m4/Makefile.am, so we need Automake 1.8 or later. 112 # We use po/Makevars, so we need at least gettext 0.12.
|
/external/libpng/contrib/visupng/ |
D | README.txt | 45 1) Build the program with the configuration "Win32 LIB" and you only need to 48 2) Build the program with the configuration "Win32 DLL" and you need to put 50 libpng1.dll, zlib.dll and msvcrt.dll. These need to be in the user's PATH.
|
/external/clearsilver/imd/ |
D | README | 2 To set up imd, you need to add the following directives to an apache 11 settings in there. You will probably need to modify Template to point
|
/external/openssl/crypto/store/ |
D | README | 25 the data a CA might need to store (this includes the serial number 47 the need from most, if not all, current applications. Applications 48 that need to do certificate verification would typically use Subject 85 The list functions need some extra explanation: list_start is
|
/external/chromium/third_party/icu/patches/ |
D | data.build.patch | 54 +# CHROME: We don't need invuca.icu 64 +# CHROME: We don't need unames.icu. 65 +# Do we need to have spp files other than uidna.spp?
|
/external/webkit/autotools/ |
D | webkit.m4 | 50 AC_MSG_ERROR([You need 'perl' to compile WebKit]) 55 AC_MSG_ERROR([You need the 'bison' parser generator to compile WebKit]) 60 AC_MSG_ERROR([You need 'mv' to compile WebKit]) 122 AC_MSG_ERROR([You need the GLib dev tools in your path])
|
/external/zlib/contrib/puff/ |
D | puff.c | 119 local int bits(struct state *s, int need) in bits() argument 125 while (s->bitcnt < need) { in bits() 132 s->bitbuf = (int)(val >> need); in bits() 133 s->bitcnt -= need; in bits() 136 return (int)(val & ((1L << need) - 1)); in bits()
|
/external/e2fsprogs/lib/uuid/ |
D | uuid_types.h.in | 3 * everything we need. (cross fingers) Other header files may have 4 * also defined the types that we need.
|
/external/jpeg/ |
D | install.doc | 12 the task on common systems. But in any case, you will need at least a little 18 You don't need to read this file if you just want to compile Ghostscript. 20 If you are on a Unix machine, you may not need to read this file at all. 67 To configure the IJG code for your system, you need to create two files: 87 If you're using "csh" on an old version of System V, you might need to type 127 * If you don't have a lot of swap space, you may need to enable the IJG 131 You probably don't need to worry about this on reasonably-sized Unix machines, 135 or working in a network of multiple machine types; but if you need those 171 prefer to use the ckconfig.c program. You will need to compile and execute 196 If you are on a system that doesn't use makefiles, you'll need to set up [all …]
|