Searched refs:need (Results 1 - 25 of 310) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
H A Dintel_resolve_map.c33 * 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/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dintel_resolve_map.c33 * 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/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
H A Dintel_resolve_map.c33 * 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 Dintel_resolve_map.h59 * 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/mesa3d/src/mesa/drivers/dri/i915/
H A Dintel_resolve_map.c33 * 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 Dintel_resolve_map.c33 * 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 Dintel_resolve_map.c33 * 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 Dintel_resolve_map.h59 * 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/smack/src/org/xbill/DNS/
H A DDNSOutput.java56 need(int n) { method in class:DNSOutput
111 need(1);
122 need(2);
149 need(4);
164 need(len);
188 need(1 + s.length);
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dstacktrace_config.h58 # error Cannnot calculate stack trace: need either libunwind or frame-pointers (see INSTALL file)
60 # error Cannnot calculate stack trace: need libunwind (see INSTALL file)
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dstacktrace_config.h58 # error Cannnot calculate stack trace: need either libunwind or frame-pointers (see INSTALL file)
60 # error Cannnot calculate stack trace: need libunwind (see INSTALL file)
/external/mdnsresponder/mDNSShared/
H A Ddnsextd.conf5 // 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/oprofile/libabi/
H A Dabi.h32 int need(std::string const key) const throw (abi_exception);
H A Dopimport.cpp60 little_endian = theabi.need(string("little_endian")) == 1;
79 + theabi.need(off);
80 size_t nbytes = theabi.need(sz);
116 memcpy(head->magic, src + abi.need("offsetof_header_magic"), 4);
134 src += abi.need("sizeof_struct_opd_header");
140 src += abi.need("sizeof_odb_descr_t");
144 src += abi.need("sizeof_odb_node_t");
147 unsigned int step = abi.need("sizeof_odb_node_t");
/external/wpa_supplicant_8/hostapd/src/tls/
H A Dbignum.c77 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 Dbignum.c77 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 Dbignum.c77 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 DLookaheadStream.cs109 * 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 DLookaheadStream.java95 /** 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/chromium_org/third_party/icu/source/test/testdata/
H A Dtstfiles.mk4 # the testdata package. For ordinary resource bundles, they only need to be referenced here.
/external/hyphenation/
H A DAndroid.mk3 # We need to build this for both the device (as a shared library)
/external/icu4c/test/testdata/
H A Dtstfiles.mk4 # the testdata package. For ordinary resource bundles, they only need to be referenced here.
/external/llvm/test/MC/X86/AlignedBundling/
H A Dlong-nop-pad.s14 # To align this group to a bundle end, we need a 15-byte NOP and a 12-byte NOP.
23 # To align this group to a bundle end, we need two 15-byte NOPs, and a 1-byte.
/external/stlport/
H A Dlibstlport.mk3 # We put the STL libraries in front of any user libraries, but we need to
/external/chromium_org/third_party/sqlite/src/src/
H A Dtable.c46 int need; /* Slots needed in p->azResult[] */ local
51 ** we need to remember from this invocation of the callback.
54 need = nCol*2;
56 need = nCol;
58 if( p->nData + need > p->nAlloc ){
60 p->nAlloc = p->nAlloc*2 + need;

Completed in 1789 milliseconds

1234567891011>>