HomeSort by relevance Sort by last modified time
    Searched refs:have (Results 1 - 25 of 1197) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/opus/src/celt/arm/
armopts.s.in 27 ; Set the following to 1 if we have EDSP instructions
31 ; Set the following to 1 if we have ARMv6 media instructions.
34 ; Set the following to 1 if we have NEON (some ARMv7)
  /external/libopus/celt/arm/
armopts.s.in 27 ; Set the following to 1 if we have EDSP instructions
31 ; Set the following to 1 if we have ARMv6 media instructions.
34 ; Set the following to 1 if we have NEON (some ARMv7)
  /external/clang/test/Preprocessor/
warning_tests.c 3 #error Should have __has_warning
9 // expected-warning@+2 {{Should have -Wparentheses}}
11 #warning Should have -Wparentheses
45 #error Expansion should have occurred
feature_tests.c 4 #error Should have __has_feature
19 #error Clang should have these
23 #error Clang should not have this
30 // Make sure we have x86 builtins only (forced with target triple).
54 #error Expansion should have occurred
  /external/chromium_org/third_party/re2/re2/testing/
regexp_test.cc 49 const map<string, int>* have = x->NamedCaptures(); local
50 EXPECT_TRUE(have != NULL);
51 EXPECT_EQ(2, have->size()); // there are only two named groups in
56 EXPECT_EQ(want, *have);
58 delete have;
68 const map<int, string>* have = x->CaptureNames(); local
69 EXPECT_TRUE(have != NULL);
70 EXPECT_EQ(3, have->size());
76 EXPECT_EQ(want, *have);
78 delete have;
    [all...]
  /external/regex-re2/re2/testing/
regexp_test.cc 49 const map<string, int>* have = x->NamedCaptures(); local
50 EXPECT_TRUE(have != NULL);
51 EXPECT_EQ(2, have->size()); // there are only two named groups in
56 EXPECT_EQ(want, *have);
58 delete have;
68 const map<int, string>* have = x->CaptureNames(); local
69 EXPECT_TRUE(have != NULL);
70 EXPECT_EQ(3, have->size());
76 EXPECT_EQ(want, *have);
78 delete have;
    [all...]
  /external/clang/test/Headers/Inputs/include/
stdint.h 16 #error Every target should have __INTPTR_TYPE__
  /external/llvm/test/MC/Mips/
mips_directives_bad.s 4 .abicalls should have no operands
6 # CHECK-NEXT: .abicalls should have no operands
  /external/valgrind/main/drd/tests/
sem_wait.stderr.exp 3 Wait would have blocked
  /external/chromium_org/third_party/zlib/
gzread.c 21 local int gz_load(state, buf, len, have)
25 unsigned *have;
29 *have = 0;
31 ret = read(state->fd, buf + *have, len - *have);
34 *have += ret;
35 } while (*have < len);
92 /* Look for gzip header, set up for inflate or copy. state->have must be zero.
156 /* we have a gzip header, woo hoo! */
206 state->have = 1
    [all...]
  /external/qemu/distrib/zlib-1.2.8/
gzread.c 20 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);
77 /* Look for gzip header, set up for inflate or copy. state->x.have must be 0.
149 state->x.have = 0;
159 state->x.have = strm->avail_in
    [all...]
  /external/zlib/src/
gzread.c 20 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);
77 /* Look for gzip header, set up for inflate or copy. state->x.have must be 0.
149 state->x.have = 0;
159 state->x.have = strm->avail_in
    [all...]
  /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
gzread.c 24 unsigned *have)
28 *have = 0;
30 ret = read(state->fd, buf + *have, len - *have);
33 *have += ret;
34 } while (*have < len);
77 /* Look for gzip header, set up for inflate or copy. state->x.have must be 0.
149 state->x.have = 0;
159 state->x.have = strm->avail_in;
168 On return, state->x.have and state->x.next point to the just decompresse
    [all...]
  /external/clang/test/ARCMT/Inputs/Module.framework/Headers/
Module.h 12 # error Module should have been built without -DFOO
  /external/clang/test/Modules/Inputs/Module.framework/Headers/
Module.h 12 # error Module should have been built without -DFOO
  /external/zlib/src/contrib/infback9/
inflate9.h 42 unsigned have; /* number of code lengths in lens[] */ member in struct:inflate_state
infback9.c 127 if (have == 0) { \
128 have = in(in_desc, &next); \
129 if (have == 0) { \
142 have--; \
227 unsigned have; /* available input */ local
264 have = next != Z_NULL ? strm->avail_in : 0;
331 if (copy > have) copy = have;
334 have -= copy;
361 state->have = 0
    [all...]
  /external/zlib/src/examples/
fitblk.c 131 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);
zpipe.c 39 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)) {
  /external/chromium_org/chrome/browser/resources/quota_internals/
main.css 22 .tree-item:not([may-have-children]) > .tree-row > .tree-label {
  /external/clang/lib/AST/
TemplateBase.cpp 63 // If the value is large, we have to get additional memory from the ASTContext
90 llvm_unreachable("Should not have a NULL template argument");
131 llvm_unreachable("Should not have a NULL template argument");
  /external/llvm/test/MC/ARM/
multi-section-mapping.s 25 @ + .text to have $a at 0 and no others
26 @ + .wibble to have $a at 0
27 @ + .starts_thumb to have $t at 0
28 @ + .starts_data to have $d at 0
  /frameworks/base/core/tests/coretests/apks/
FrameworkCoreTests_apk.mk 10 # Every package should have a native library
  /ndk/tests/device/crazy_linker/jni/
Android.mk 2 # version of the sources. This is useful if you have your own copy of the
  /external/chromium_org/tools/grit/grit/node/
empty.py 6 '''Container nodes that don't have any logic.

Completed in 743 milliseconds

1 2 3 4 5 6 7 8 91011>>