/external/smack/src/org/xbill/DNS/ |
D | DNSOutput.java | 56 need(int n) { in need() method in DNSOutput 111 need(1); in writeU8() 122 need(2); in writeU16() 149 need(4); in writeU32() 164 need(len); in writeByteArray() 188 need(1 + s.length); in writeCountedString()
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/ |
D | intel_resolve_map.c | 39 enum gen6_hiz_op need) in intel_resolve_map_set() argument 46 (*tail)->need = need; in intel_resolve_map_set() 58 (*tail)->need = need; in intel_resolve_map_set()
|
D | intel_resolve_map.h | 78 enum gen6_hiz_op need; member 88 enum gen6_hiz_op need);
|
/external/mesa3d/src/mesa/drivers/dri/i915/ |
D | intel_resolve_map.c | 39 enum gen6_hiz_op need) in intel_resolve_map_set() argument 46 (*tail)->need = need; in intel_resolve_map_set() 58 (*tail)->need = need; in intel_resolve_map_set()
|
/external/mesa3d/src/mesa/drivers/dri/intel/ |
D | intel_resolve_map.c | 39 enum gen6_hiz_op need) in intel_resolve_map_set() argument 46 (*tail)->need = need; in intel_resolve_map_set() 58 (*tail)->need = need; in intel_resolve_map_set()
|
D | intel_resolve_map.h | 78 enum gen6_hiz_op need; member 88 enum gen6_hiz_op need);
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | intel_resolve_map.c | 39 enum gen6_hiz_op need) in intel_resolve_map_set() argument 46 (*tail)->need = need; in intel_resolve_map_set() 58 (*tail)->need = need; in intel_resolve_map_set()
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/ |
D | intel_resolve_map.c | 39 enum gen6_hiz_op need) in intel_resolve_map_set() argument 46 (*tail)->need = need; in intel_resolve_map_set() 58 (*tail)->need = need; in intel_resolve_map_set()
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
D | intel_resolve_map.c | 39 enum gen6_hiz_op need) in intel_resolve_map_set() argument 46 (*tail)->need = need; in intel_resolve_map_set() 58 (*tail)->need = need; in intel_resolve_map_set()
|
/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/elfutils/libdwfl/ |
D | segment.c | 73 size_t need = need_start + need_end; in insert() local 74 if (need == 0) in insert() 77 if (dwfl->lookup_alloc - dwfl->lookup_elts < need) in insert() 110 memcpy (&dwfl->lookup_addr[i + need], &dwfl->lookup_addr[i], in insert() 111 need * sizeof dwfl->lookup_addr[0]); in insert() 112 memcpy (&dwfl->lookup_segndx[i + need], &dwfl->lookup_segndx[i], in insert() 113 need * sizeof dwfl->lookup_segndx[0]); in insert() 115 memcpy (&dwfl->lookup_module[i + need], &dwfl->lookup_module[i], in insert() 116 need * sizeof dwfl->lookup_module[0]); in insert() 134 dwfl->lookup_elts += need; in insert()
|
/external/mdnsresponder/mDNSShared/ |
D | dnsextd.conf | 5 // In most cases, you should not need to change these default options in 9 // You need to edit the "zone" statement below to give the name of your 16 // In /etc/named.conf you will need to modify the "options" section to 21 // You also need a "zone" statement in /etc/named.conf to tell BIND the update
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/ |
D | compute_memory_pool.c | 307 int64_t need = item->size_in_dw+2048 - in compute_memory_finalize_pending() local 310 need += 1024 - (need % 1024); in compute_memory_finalize_pending() 312 if (need > 0) { in compute_memory_finalize_pending() 315 pool->size_in_dw + need); in compute_memory_finalize_pending() 318 need = pool->size_in_dw / 10; in compute_memory_finalize_pending() 319 need += 1024 - (need % 1024); in compute_memory_finalize_pending() 322 pool->size_in_dw + need); in compute_memory_finalize_pending()
|
/external/mesa3d/src/gallium/drivers/r600/ |
D | compute_memory_pool.c | 307 int64_t need = item->size_in_dw+2048 - in compute_memory_finalize_pending() local 310 need += 1024 - (need % 1024); in compute_memory_finalize_pending() 312 if (need > 0) { in compute_memory_finalize_pending() 315 pool->size_in_dw + need); in compute_memory_finalize_pending() 318 need = pool->size_in_dw / 10; in compute_memory_finalize_pending() 319 need += 1024 - (need % 1024); in compute_memory_finalize_pending() 322 pool->size_in_dw + need); in compute_memory_finalize_pending()
|
/external/antlr/antlr-3.4/runtime/Perl5/examples/ |
D | README | 3 First you need to compile ANTLR, running "ant" in the top level directory. 5 Then you need to build the Perl module. 10 After that you need to compile the grammar using ANTLR, for example by using
|
/external/chromium_org/third_party/sqlite/src/src/ |
D | table.c | 46 int need; /* Slots needed in p->azResult[] */ in sqlite3_get_table_cb() local 54 need = nCol*2; in sqlite3_get_table_cb() 56 need = nCol; in sqlite3_get_table_cb() 58 if( p->nData + need > p->nAlloc ){ in sqlite3_get_table_cb() 60 p->nAlloc = p->nAlloc*2 + need; in sqlite3_get_table_cb()
|
/external/openssh/ |
D | kex.c | 408 u_int mode, ctos, need; in kex_choose_conf() local 453 need = 0; in kex_choose_conf() 456 if (need < newkeys->enc.key_len) in kex_choose_conf() 457 need = newkeys->enc.key_len; in kex_choose_conf() 458 if (need < newkeys->enc.block_size) in kex_choose_conf() 459 need = newkeys->enc.block_size; in kex_choose_conf() 460 if (need < newkeys->mac.key_len) in kex_choose_conf() 461 need = newkeys->mac.key_len; in kex_choose_conf() 464 kex->we_need = need; in kex_choose_conf() 478 derive_key(Kex *kex, int id, u_int need, u_char *hash, u_int hashlen, in derive_key() argument [all …]
|
D | dh.c | 235 dh_gen_key(DH *dh, int need) in dh_gen_key() argument 241 if (need > INT_MAX / 2 || 2 * need >= BN_num_bits(dh->p)) in dh_gen_key() 243 BN_num_bits(dh->p), 2*need); in dh_gen_key() 250 if (!BN_rand(dh->priv_key, 2*need, 0, 0)) in dh_gen_key()
|
/external/wpa_supplicant_8/src/tls/ |
D | bignum.c | 77 size_t need = mp_unsigned_bin_size((mp_int *) n); in bignum_get_unsigned_bin() local 78 if (len && need > *len) { in bignum_get_unsigned_bin() 79 *len = need; in bignum_get_unsigned_bin() 87 *len = need; in bignum_get_unsigned_bin()
|
/external/chromium_org/chrome/test/functional/ |
D | PYAUTO_TESTS | 14 # that need to be investigated/fixed. Tests are listed alphabetically within 63 # Disabled tests that need to be investigated/fixed. 146 # Disabled tests that need to be investigated/fixed. 169 # Disabled tests that need to be investigated/fixed. 208 # Disabled tests that need to be investigated/fixed. 242 # Disabled tests that need to be investigated/fixed. 290 # Disabled tests that need to be investigated/fixed. 306 # Disabled tests that need to be investigated/fixed. 321 # Disabled tests that need to be investigated/fixed. 336 # Disabled tests that need to be investigated/fixed. [all …]
|
/external/clang/docs/ |
D | Tooling.rst | 5 Clang provides infrastructure to write tools that need syntactic and semantic 25 * need a stable interface that takes care to be backwards compatible 48 * need your tool to rerun if any of the dependencies change 50 * need full control over the Clang AST 57 * need to run over a specific subset of files in your project which is not 80 * want a stable interface so you don't need to change your code when the AST API
|
/external/chromium/testing/gmock/ |
D | README | 50 framework of your choice; although it will still need Google Test as 80 We welcome patches. If you plan to contribute a patch, you need to 127 system to build Google Mock (described below), you'll need to 138 Note that you should only need to complete this step once. The 140 of the build system that need to be changed. 143 will fail. You may need to explicitly specify a version to use. For 154 To build Google Mock and your tests that use it, you need to tell your 244 subset of TR1 tuple that's enough for Google Mock's need. Google Mock 248 Usually you don't need to care about which tuple library Google Test 250 you need to tell Google Test and Google Mock to use the same TR1 tuple [all …]
|
/external/qemu-pc-bios/vgabios/ |
D | Notes | 4 - need to split video init function 11 - need to rework the tables as explained in Interrupt list
|
/external/chromium/build/ |
D | grit_action.gypi | 6 # consistent manner. To use this the following variables need to be 12 # would need to determine inputs and outputs via grit_info on a per-file 14 # do this, but then every generator would need to be updated to handle this.
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
D | LookaheadStream.m | 82 /** Make sure we have 'need' elements from current position p. Last valid 83 * p index is data.size()-1. p+need-1 is the data index 'need' elements 84 * ahead. If we need 1 element, (p+1-1)==p must be < data.size(). 86 public void sync(int need) { 87 int n = (p+need-1) - data.size() + 1; // how many more elements we need?
|