/external/clang/test/Lexer/ |
H A D | string-literal-errors.cpp | 27 #define foo() lots and lots of tokens, need at least 8 to fill up the smallvector buffer #BadThingsHappenNow
|
/external/mesa3d/src/mesa/drivers/dri/i915/ |
H A D | intel_resolve_map.c | 33 * changed to the given value of \c need. 39 enum gen6_hiz_op need) 46 (*tail)->need = need; 58 (*tail)->need = need; 36 intel_resolve_map_set(struct intel_resolve_map *head, uint32_t level, uint32_t layer, enum gen6_hiz_op need) argument
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
H A D | intel_resolve_map.c | 33 * changed to the given value of \c need. 39 enum gen6_hiz_op need) 46 (*tail)->need = need; 58 (*tail)->need = need; 36 intel_resolve_map_set(struct intel_resolve_map *head, uint32_t level, uint32_t layer, enum gen6_hiz_op need) argument
|
/external/mesa3d/src/mesa/drivers/dri/intel/ |
H A D | intel_resolve_map.c | 33 * changed to the given value of \c need. 39 enum gen6_hiz_op need) 46 (*tail)->need = need; 58 (*tail)->need = need; 36 intel_resolve_map_set(struct intel_resolve_map *head, uint32_t level, uint32_t layer, enum gen6_hiz_op need) argument
|
H A D | intel_resolve_map.h | 59 * There are two possible ways to record which miptree slices need 62 * those slices that need a resolve. 78 enum gen6_hiz_op need; member in struct:intel_resolve_map 88 enum gen6_hiz_op need);
|
/external/droiddriver/ |
H A D | contributing_aosp.md | 5 Follow instructions at https://source.android.com/source/downloading.html except those noted below. You need to set up authentication to be able to submit changes.
|
/external/mdnsresponder/mDNSShared/ |
H A 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/wpa_supplicant_8/hs20/server/www/ |
H A D | free-remediation.php | 9 <p>Terms and conditions have changed. You need to accept the new terms
|
/external/llvm/test/MC/MachO/AArch64/ |
H A D | cfstring.s | 3 ; Test that we produce an external relocation. There is no apparent need for it, but
|
H A D | reloc-crash.s | 3 ; Test tha we produce an external relocation. There is no apparent need for it, but
|
/external/freetype/src/gzip/ |
H A D | inflate.c | 40 uLong need; /* stream check value */ member in struct:internal_state::__anon5050::__anon5051 196 z->state->sub.check.need = (uLong)NEXTBYTE << 24; 200 z->state->sub.check.need += (uLong)NEXTBYTE << 16; 204 z->state->sub.check.need += (uLong)NEXTBYTE << 8; 208 z->state->sub.check.need += (uLong)NEXTBYTE; 209 z->adler = z->state->sub.check.need; 214 z->msg = (char*)"need dictionary"; 239 z->state->sub.check.need = (uLong)NEXTBYTE << 24; 243 z->state->sub.check.need += (uLong)NEXTBYTE << 16; 247 z->state->sub.check.need [all...] |
H A D | infcodes.c | 40 uInt need; /* bits needed */ member in struct:inflate_codes_state::__anon5046::__anon5047 61 inflate_huft *td, /* need separate declaration for Borland C++ */ 117 c->sub.code.need = c->lbits; 121 j = c->sub.code.need; 144 c->sub.code.need = e; 163 c->sub.code.need = c->dbits; 168 j = c->sub.code.need; 182 c->sub.code.need = e;
|
/external/libunwind/src/mi/ |
H A D | flush_cache.c | 56 # warning unw_flush_cache(): need a way to atomically increment an integer.
|
/external/wpa_supplicant_8/hostapd/src/tls/ |
H A D | bignum.c | 77 size_t need = mp_unsigned_bin_size((mp_int *) n); local 78 if (len && need > *len) { 79 *len = need; 87 *len = need;
|
/external/wpa_supplicant_8/src/tls/ |
H A D | bignum.c | 77 size_t need = mp_unsigned_bin_size((mp_int *) n); local 78 if (len && need > *len) { 79 *len = need; 87 *len = need;
|
/external/wpa_supplicant_8/wpa_supplicant/src/tls/ |
H A D | bignum.c | 77 size_t need = mp_unsigned_bin_size((mp_int *) n); local 78 if (len && need > *len) { 79 *len = need; 87 *len = need;
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/ |
H A D | LookaheadStream.cs | 109 * Make sure we have 'need' elements from current position p. Last valid 110 * p index is data.size()-1. p+need-1 is the data index 'need' elements 111 * ahead. If we need 1 element, (p+1-1)==p must be < data.size(). 114 protected virtual void SyncAhead(int need) { argument 115 int n = (_p + need - 1) - _data.Count + 1; // how many more elements we need?
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/ |
H A D | LookaheadStream.java | 95 /** Make sure we have 'need' elements from current position p. Last valid 96 * p index is data.size()-1. p+need-1 is the data index 'need' elements 97 * ahead. If we need 1 element, (p+1-1)==p must be < data.size(). 99 protected void syncAhead(int need) { argument 100 int n = (p+need-1) - data.size() + 1; // how many more elements we need?
|
/external/icu/icu4c/source/test/testdata/ |
H A D | tstfiles.mk | 4 # the testdata package. For ordinary resource bundles, they only need to be referenced here.
|
/external/protobuf/java/src/main/java/com/google/protobuf/nano/ |
H A D | FieldArray.java | 228 private int idealIntArraySize(int need) { argument 229 return idealByteArraySize(need * 4) / 4; 232 private int idealByteArraySize(int need) { argument 234 if (need <= (1 << i) - 12) 237 return need;
|
/external/mesa3d/src/gallium/drivers/r600/ |
H A D | compute_memory_pool.c | 307 int64_t need = item->size_in_dw+2048 - local 310 need += 1024 - (need % 1024); 312 if (need > 0) { 315 pool->size_in_dw + need); 318 need = pool->size_in_dw / 10; 319 need += 1024 - (need % 1024); 322 pool->size_in_dw + need);
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
H A 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?
|
/external/fio/compiler/ |
H A D | compiler.h | 9 #error Compiler too old, need gcc at least gcc 3.x
|
/external/llvm/test/MC/Mips/mips32r6/ |
H A D | valid.s | 3 # Branches have some unusual encoding rules in MIPS32r6 so we need to test:
|
/external/llvm/test/MC/Mips/mips64r6/ |
H A D | valid.s | 3 # Branches have some unusual encoding rules in MIPS32r6 so we need to test:
|