Searched refs:have (Results 1 - 25 of 426) sorted by relevance

1234567891011>>

/external/clang/test/Preprocessor/
H A Dwarning_tests.c3 #error Should have __has_warning
9 // expected-warning@+2 {{Should have -Wparentheses}}
11 #warning Should have -Wparentheses
H A Dfeature_tests.c4 #error Should have __has_feature
18 #error Clang should have these
22 #error Clang should not have this
29 // Make sure we have x86 builtins only (forced with target triple).
/external/zlib/src/
H A Dgzread.c20 local int gz_load(state, buf, len, have)
24 unsigned *have;
28 *have = 0;
30 ret = read(state->fd, buf + *have, len - *have);
33 *have += ret;
34 } while (*have < len);
76 /* Look for gzip header, set up for inflate or copy. state->x.have must be 0.
148 state->x.have = 0;
158 state->x.have
[all...]
H A Dinfback.c133 have = strm->avail_in; \
144 strm->avail_in = have; \
160 if (have == 0) { \
161 have = in(in_desc, &next); \
162 if (have == 0) { \
175 have--; \
260 unsigned have, left; /* available input and output */ local
283 have = next != Z_NULL ? strm->avail_in : 0;
345 if (copy > have) copy = have;
[all...]
H A Dinflate.c100 local unsigned syncsearch OF((unsigned FAR *have, unsigned char FAR *buf,
463 have = strm->avail_in; \
474 strm->avail_in = have; \
490 if (have == 0) goto inf_leave; \
491 have--; \
565 would all have to actually be part of the saved state in case NEEDBITS()
611 unsigned have, left; /* available input and output */ local
634 in = have;
735 if (copy > have) copy = have;
[all...]
H A Dinflate.h114 unsigned have; /* number of code lengths in lens[] */ member in struct:inflate_state
/external/webkit/LayoutTests/fast/encoding/resources/
H A Dparser-tests.js30 var have = frame.contentWindow.document.getElementById('encoding').firstChild.data;
31 if (have == 'ISO-8859-9')
32 have = 'Windows-1254';
33 if (want != have) {
39 li.appendChild(document.createTextNode(': expected ' + want + '; used ' + have));
/external/bison/
H A DGNUmakefile19 # You should have received a copy of the GNU General Public License along
33 have-Makefile := $(shell test -f Makefile && echo yes)
37 ifeq ($(have-Makefile),yes)
/external/clang/test/Modules/Inputs/Module.framework/Headers/
H A DModule.h12 # error Module should have been built without -DFOO
/external/zlib/src/contrib/infback9/
H A Dinflate9.h42 unsigned have; /* number of code lengths in lens[] */ member in struct:inflate_state
H A Dinfback9.c127 if (have == 0) { \
128 have = in(in_desc, &next); \
129 if (have == 0) { \
142 have--; \
227 unsigned have; /* available input */ local
266 have = next != Z_NULL ? strm->avail_in : 0;
333 if (copy > have) copy = have;
336 have -= copy;
363 state->have
[all...]
/external/zlib/src/examples/
H A Dfitblk.c131 unsigned have; /* bytes written by deflate() call */ local
165 have = size + EXCESS - def.avail_out;
166 if (fwrite(blk, 1, have, stdout) != have || ferror(stdout))
175 size - have, size);
218 have = size - def.avail_out;
219 if (fwrite(blk, 1, have, stdout) != have || ferror(stdout))
231 size - have, size, def.total_in);
H A Dzpipe.c39 unsigned have; local
69 have = CHUNK - strm.avail_out;
70 if (fwrite(out, 1, have, dest) != have || ferror(dest)) {
95 unsigned have; local
135 have = CHUNK - strm.avail_out;
136 if (fwrite(out, 1, have, dest) != have || ferror(dest)) {
H A Dgun.c154 #define NEXT() (have ? 0 : (have = in(indp, &next)), \
155 last = have ? (have--, (int)(*next++)) : -1)
159 have offset the index, but it's faster to waste the memory */
174 if (chunk > have) { \
175 chunk -= have; \
176 have = 0; \
180 if (chunk > have) { \
181 chunk = have
199 lunpipe(unsigned have, unsigned char *next, struct ind *indp, int outfile, z_stream *strm) argument
385 unsigned have, flags, len; local
[all...]
H A Dzran.c44 not be constrained to have access points at block boundaries, but requires
71 int have; /* number of list entries filled in */ member in struct:access
102 index->have = 0;
106 else if (index->have == index->size) {
116 /* fill in entry and increment how many we have */
117 next = index->list + index->have;
125 index->have++;
224 index = realloc(index, sizeof(struct point) * index->have);
225 index->size = index->have;
259 ret = index->have;
[all...]
H A Dgzappend.c260 unsigned have; local
294 have = full = 0;
304 strm->avail_out = DSIZE - have;
305 strm->next_out = window + have;
315 crc = crc32(crc, window + have, DSIZE - have - strm->avail_out);
317 have = DSIZE - strm->avail_out;
319 have = 0;
361 rotate(window, DSIZE, have);
362 have
[all...]
/external/clang/lib/AST/
H A DTemplateBase.cpp63 // If the value is large, we have to get additional memory from the ASTContext
90 llvm_unreachable("Should not have a NULL template argument");
132 llvm_unreachable("Should not have a NULL template argument");
449 // FIXME: We shouldn't ever have to worry about missing
464 // the pattern, and we have the pattern's type, but we are forced to copy
/external/libffi/src/cris/
H A Dsysv.S35 ;; OK, when we get called we should have this (according to
/external/qemu/distrib/zlib-1.2.3/
H A Dinfback.c124 have = strm->avail_in; \
135 strm->avail_in = have; \
151 if (have == 0) { \
152 have = in(in_desc, &next); \
153 if (have == 0) { \
166 have--; \
251 unsigned have, left; /* available input and output */ local
274 have = next != Z_NULL ? strm->avail_in : 0;
336 if (copy > have) copy = have;
[all...]
H A Dinflate.c100 local unsigned syncsearch OF((unsigned FAR *have, unsigned char FAR *buf,
408 have = strm->avail_in; \
419 strm->avail_in = have; \
435 if (have == 0) goto inf_leave; \
436 have--; \
515 would all have to actually be part of the saved state in case NEEDBITS()
561 unsigned have, left; /* available input and output */ local
584 in = have;
683 if (copy > have) copy = have;
[all...]
H A Dinflate.h110 unsigned have; /* number of code lengths in lens[] */ member in struct:inflate_state
/external/clang/test/CXX/dcl.decl/dcl.init/
H A Dp14-0x.cpp40 expected-error {{must explicitly initialize the member 'e1' which does not have a default constructor}}
/external/llvm/autoconf/m4/
H A Dc_printf_a.m42 # Determine if the printf() functions have the %a format character.
29 AC_DEFINE([HAVE_PRINTF_A],[1],[Define to have the %a format string])
/external/llvm/projects/sample/autoconf/m4/
H A Dc_printf_a.m42 # Determine if the printf() functions have the %a format character.
29 AC_DEFINE([HAVE_PRINTF_A],[1],[Define to have the %a format string])
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
H A Dproperties.rb34 lexer.properties.should have( 3 ).things
55 lexer.properties.should have( 3 ).things

Completed in 2166 milliseconds

1234567891011>>