Searched refs:want (Results 1 - 25 of 148) sorted by relevance

123456

/external/valgrind/main/none/tests/
H A Dfaultstatus.c53 static int testsig(int sig, int want) argument
55 if (sig != want) {
56 fprintf(stderr, " FAIL: expected signal %d, not %d\n", want, sig);
62 static int testcode(int code, int want) argument
64 if (code != want) {
65 fprintf(stderr, " FAIL: expected si_code==%d, not %d\n", want, code);
71 static int testaddr(void *addr, volatile void *want) argument
76 if (addr != (void *) ((unsigned long) want & ~0xffful)) {
78 if (addr != want) {
80 fprintf(stderr, " FAIL: expected si_addr==%p, not %p\n", want, add
[all...]
/external/valgrind/main/none/tests/amd64/
H A Dfaultstatus.c30 static int testsig(int sig, int want) argument
32 if (sig != want) {
33 fprintf(stderr, " FAIL: expected signal %d, not %d\n", want, sig);
39 static int testcode(int code, int want) argument
41 if (code != want) {
42 fprintf(stderr, " FAIL: expected si_code==%d, not %d\n", want, code);
48 static int testaddr(void *addr, volatile void *want) argument
50 if (addr != want) {
51 fprintf(stderr, " FAIL: expected si_addr==%p, not %p\n", want, addr);
/external/valgrind/main/none/tests/x86/
H A Dfaultstatus.c33 static int testsig(int sig, int want) argument
35 if (sig != want) {
36 fprintf(stderr, " FAIL: expected signal %d, not %d\n", want, sig);
42 static int testcode(int code, int want) argument
44 if (code != want) {
45 fprintf(stderr, " FAIL: expected si_code==%d, not %d\n", want, code);
51 static int testaddr(void *addr, volatile void *want) argument
53 if (addr != want) {
54 fprintf(stderr, " FAIL: expected si_addr==%p, not %p\n", want, addr);
/external/openssl/crypto/asn1/
H A Da_d2i_fp.c148 size_t want=HEADER_SIZE; local
163 if (want >= (len-off))
165 want-=(len-off);
167 if (len + want < len || !BUF_MEM_grow_clean(b,len+want))
172 i=BIO_read(in,&(b->data[len]),want);
216 want=HEADER_SIZE;
225 want=HEADER_SIZE;
230 want=c.slen;
231 if (want > (le
[all...]
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DTokenSource.pm28 Errors from the lexer are never passed to the parser. Either you want
30 want to continue lexing then you do not want to continue parsing. Just
32 toss you all the way out of the recognizers. If you want to continue
/external/clang/test/CodeGen/
H A Dblockstret.c5 // X64: store i32 1610612736, i32* %want
8 // X32: store i32 1610612736, i32* %want
76 int want = BLOCK_HAS_OBJC_TYPE | BLOCK_USE_STRET; local
77 return (layout->flags & want) == want;
/external/webkit/LayoutTests/fast/encoding/resources/
H A Dparser-tests.js29 var want = frame.contentWindow.document.getElementById('expected').firstChild.data;
33 if (want != have) {
39 li.appendChild(document.createTextNode(': expected ' + want + '; used ' + have));
/external/valgrind/main/exp-bbv/tests/amd64-linux/
H A Dcomplex_rep.S10 cld # we want these to happen forward
H A Drep_prefix.S10 cld # we want these to happen forward
/external/valgrind/main/exp-bbv/tests/x86/
H A Dcomplex_rep.S10 cld # we want these to happen forward
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptCachedFrameData.h89 #error You need to consider whether you want Page Cache and either add a stub or a real implementation.
/external/llvm/test/Bindings/Ocaml/
H A Dext_exc.ml7 * want the let _ bindings executed, see http://caml.inria.fr/mantis/view.php?id=4166 *)
/external/libpng/projects/visualc71/
H A DREADME_zlib.txt19 3) Set one of the project as the StartUp project. If you just want to build the
21 Project | Set as StartUp project). If you want to build and test the
23 Set as StartUp project), If you want to build the minigzip utility set it to
/external/icu4c/data/translit/
H A Dtrnsfiles.mk8 # Instead of changing this file [unless you want to check it back in],
/external/llvm/lib/Support/Unix/
H A DHost.inc54 // On darwin, we want to update the version to match that of the
/external/qemu/
H A Dloader.c88 size_t want, did; local
91 want = nbytes > sizeof(buf) ? sizeof(buf) : nbytes;
92 did = fread(buf, 1, want, f);
97 if (did != want)
114 size_t want, did; local
117 want = nbytes > sizeof(buf) ? sizeof(buf) : nbytes;
118 did = read(fd, buf, want);
119 if (did != want) break;
/external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
H A DSSLServerSocketTest.java137 public void setWantClientAuth(boolean want) { argument
/external/stlport/stlport/stl/config/
H A Dcompat.h78 # error STLport do not support anymore the wrapper mode. If you want to use STLport \
/external/qemu/distrib/sdl-1.2.15/src/video/x11/
H A DSDL_x11wm.c85 SDL_Color want[256], got[256]; local
94 SDL_memcpy(want, icon->format->palette->colors,
95 nwant * sizeof want[0]);
103 want[i].r = r;
104 want[i].g = g;
105 want[i].b = b;
130 c.red = want[i].r << 8;
131 c.green = want[i].g << 8;
132 c.blue = want[i].b << 8;
137 got[c.pixel] = want[
[all...]
H A DSDL_x11video.c1315 SDL_Color *want, int nwant)
1337 int ri = want[i].r;
1338 int gi = want[i].g;
1339 int bi = want[i].b;
1412 SDL_Color *want, *reject; local
1430 want = SDL_stack_alloc(SDL_Color, ncolors);
1432 SDL_memcpy(want, colors + firstcolor, ncolors * sizeof(SDL_Color));
1440 col.red = want[i].r << 8;
1441 col.green = want[i].g << 8;
1442 col.blue = want[
1314 allocate_nearest(_THIS, SDL_Color *colors, SDL_Color *want, int nwant) argument
[all...]
/external/astl/
H A DAndroid.mk22 # We only want this apk build for tests.
/external/icu4c/data/misc/
H A Dmiscfiles.mk8 # Instead of changing this file [unless you want to check it back in],
/external/icu4c/data/sprep/
H A Dsprepfiles.mk8 # Instead of changing this file [unless you want to check it back in],
/external/elfutils/libdwfl/
H A Doffline.c226 int want = (*predicate) (name, member_name); local
227 if (want <= 0)
231 if (unlikely (want < 0))
H A Dlinux-kernel-modules.c186 int want = (*predicate) (KERNEL_MODNAME, fname); local
187 if (want < 0)
189 report = want > 0;
327 int want = (*predicate) (name, f->fts_path); local
328 if (want < 0)
333 if (!want)

Completed in 525 milliseconds

123456