/external/openssl/crypto/asn1/ |
D | a_d2i_fp.c | 148 size_t want=HEADER_SIZE; in asn1_d2i_read_bio() local 163 if (want >= (len-off)) in asn1_d2i_read_bio() 165 want-=(len-off); in asn1_d2i_read_bio() 167 if (len + want < len || !BUF_MEM_grow_clean(b,len+want)) in asn1_d2i_read_bio() 172 i=BIO_read(in,&(b->data[len]),want); in asn1_d2i_read_bio() 216 want=HEADER_SIZE; in asn1_d2i_read_bio() 225 want=HEADER_SIZE; in asn1_d2i_read_bio() 230 want=c.slen; in asn1_d2i_read_bio() 231 if (want > (len-off)) in asn1_d2i_read_bio() 233 want-=(len-off); in asn1_d2i_read_bio() [all …]
|
/external/chromium_org/third_party/boringssl/src/crypto/asn1/ |
D | a_d2i_fp.c | 149 size_t want=HEADER_SIZE; in asn1_d2i_read_bio() local 164 if (want >= (len-off)) in asn1_d2i_read_bio() 166 want-=(len-off); in asn1_d2i_read_bio() 168 if (len + want < len || !BUF_MEM_grow_clean(b,len+want)) in asn1_d2i_read_bio() 173 i=BIO_read(in,&(b->data[len]),want); in asn1_d2i_read_bio() 217 want=HEADER_SIZE; in asn1_d2i_read_bio() 226 want=HEADER_SIZE; in asn1_d2i_read_bio() 231 want=c.slen; in asn1_d2i_read_bio() 232 if (want > (len-off)) in asn1_d2i_read_bio() 234 want-=(len-off); in asn1_d2i_read_bio() [all …]
|
/external/chromium_org/third_party/re2/re2/testing/ |
D | regexp_test.cc | 53 map<string, int> want; in TEST() local 54 want["g1"] = 1; in TEST() 55 want["g2"] = 3; in TEST() 56 EXPECT_EQ(want, *have); in TEST() 71 map<int, string> want; in TEST() local 72 want[1] = "g1"; in TEST() 73 want[3] = "g2"; in TEST() 74 want[4] = "g1"; in TEST() 76 EXPECT_EQ(want, *have); in TEST()
|
/external/regex-re2/re2/testing/ |
D | regexp_test.cc | 53 map<string, int> want; in TEST() local 54 want["g1"] = 1; in TEST() 55 want["g2"] = 3; in TEST() 56 EXPECT_EQ(want, *have); in TEST() 71 map<int, string> want; in TEST() local 72 want[1] = "g1"; in TEST() 73 want[3] = "g2"; in TEST() 74 want[4] = "g1"; in TEST() 76 EXPECT_EQ(want, *have); in TEST()
|
/external/chromium_org/tools/chrome_proxy/testserver/ |
D | server_test.go | 78 if got, want := w.Code, test.code; got != want { 79 t.Errorf("%s: response code: got %d want %d", test.name, got, want) 84 for k, want := range test.headers { 86 if !ok || !reflect.DeepEqual(got, want) { 87 t.Errorf("%s: header %s: code: got %v want %v", test.name, k, got, want) 93 if got, want := string(w.Body.Bytes()), string(test.body); got != want { 94 t.Errorf("%s: body: got %s want %s", test.name, got, want)
|
/external/valgrind/main/none/tests/ |
D | faultstatus.c | 53 static int testsig(int sig, int want) in testsig() argument 55 if (sig != want) { in testsig() 56 fprintf(stderr, " FAIL: expected signal %d, not %d\n", want, sig); in testsig() 62 static int testcode(int code, int want) in testcode() argument 64 if (code != want) { in testcode() 65 fprintf(stderr, " FAIL: expected si_code==%d, not %d\n", want, code); in testcode() 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, addr);
|
/external/valgrind/main/none/tests/amd64/ |
D | faultstatus.c | 30 static int testsig(int sig, int want) in testsig() argument 32 if (sig != want) { in testsig() 33 fprintf(stderr, " FAIL: expected signal %d, not %d\n", want, sig); in testsig() 39 static int testcode(int code, int want) in testcode() argument 41 if (code != want) { in testcode() 42 fprintf(stderr, " FAIL: expected si_code==%d, not %d\n", want, code); in testcode() 48 static int testaddr(void *addr, volatile void *want) in testaddr() argument 50 if (addr != want) { in testaddr() 51 fprintf(stderr, " FAIL: expected si_addr==%p, not %p\n", want, addr); in testaddr()
|
/external/valgrind/main/none/tests/x86/ |
D | faultstatus.c | 33 static int testsig(int sig, int want) in testsig() argument 35 if (sig != want) { in testsig() 36 fprintf(stderr, " FAIL: expected signal %d, not %d\n", want, sig); in testsig() 42 static int testcode(int code, int want) in testcode() argument 44 if (code != want) { in testcode() 45 fprintf(stderr, " FAIL: expected si_code==%d, not %d\n", want, code); in testcode() 51 static int testaddr(void *addr, volatile void *want) in testaddr() argument 53 if (addr != want) { in testaddr() 54 fprintf(stderr, " FAIL: expected si_addr==%p, not %p\n", want, addr); in testaddr()
|
/external/clang/docs/ |
D | Tooling.rst | 14 you want to use. Consider the other interfaces only when you have a good 24 * want to interface with clang from other languages than C++ 26 * want powerful high-level abstractions, like iterating through an AST with a 27 cursor, and don't want to learn all the nitty gritty details of Clang's AST. 31 * want full control over the Clang AST 49 * want your tool to make or break a build 54 * want to run tools outside of your build environment 55 * want full control on how Clang is set up, including mapping of in-memory 72 * want to run tools over a single file, or a specific subset of files, 74 * want full control over the Clang AST [all …]
|
/external/valgrind/main/none/tests/mips32/ |
D | SignalException.c | 21 static int testsig(int sig, int want) in testsig() argument 23 if (sig != want) { in testsig() 24 fprintf(stderr, " FAIL: expected signal %d, not %d\n", want, sig); in testsig() 30 static int testcode(int code, int want) in testcode() argument 32 if (code != want) { in testcode() 33 fprintf(stderr, " FAIL: expected si_code==%d, not %d\n", want, code); in testcode()
|
/external/owasp/sanitizer/src/tests/org/owasp/html/ |
D | SanitizersTest.java | 93 String want = input; in testStylesAndFormatting() local 94 assertEquals(want, got); in testStylesAndFormatting() 208 String want = ( in testExplicitlyAllowedProtocolsAreCaseInsensitive() local 213 assertEquals(want, s.sanitize(input)); in testExplicitlyAllowedProtocolsAreCaseInsensitive() 283 String want = "text<textarea disabled=\"disabled\"></textarea>" in testSkipIfEmptyUnionsProperly() local 285 assertEquals(want, policy.sanitize(input)); in testSkipIfEmptyUnionsProperly()
|
/external/llvm/test/Transforms/LoopUnroll/ |
D | 2007-05-05-UnrollMiscomp.ll | 11 …%want = alloca [1 x %struct.__mpz_struct], align 16 ; <[1 x %struct.__mpz_struct]*> [#… 12 …%want1 = getelementptr [1 x %struct.__mpz_struct]* %want, i32 0, i32 0 ; <%struct.__mpz_s… 14 …%want27 = getelementptr [1 x %struct.__mpz_struct]* %want, i32 0, i32 0 ; <%struct.__mpz_s… 15 …%want3 = getelementptr [1 x %struct.__mpz_struct]* %want, i32 0, i32 0 ; <%struct.__mpz_s… 16 …%want2 = getelementptr [1 x %struct.__mpz_struct]* %want, i32 0, i32 0 ; <%struct.__mpz_s…
|
/external/llvm/test/CodeGen/X86/ |
D | test-nofold.ll | 4 ; We want: 11 ; We don't want: 20 ; We also don't want: 27 ; We also don't want:
|
/external/chromium_org/third_party/sfntly/cpp/src/test/ |
D | test_utils_test.cc | 37 int32_t want[12] = {0xc5, 0xaa, 0x6e, 0xc4, 0xad, 0x63, 0xc5, 0x8d, 0x64, in TestEncoding() local 46 EXPECT_EQ(want[j], b); in TestEncoding() 47 if (want[j++] != b) { in TestEncoding()
|
/external/sfntly/cpp/src/test/ |
D | test_utils_test.cc | 37 int32_t want[12] = {0xc5, 0xaa, 0x6e, 0xc4, 0xad, 0x63, 0xc5, 0x8d, 0x64, in TestEncoding() local 46 EXPECT_EQ(want[j], b); in TestEncoding() 47 if (want[j++] != b) { in TestEncoding()
|
/external/clang/test/CodeGen/ |
D | blockstret.c | 83 int want = BLOCK_HAS_OBJC_TYPE | BLOCK_USE_STRET; in usesStruct() local 84 return (layout->flags & want) == want; in usesStruct()
|
/external/qemu/distrib/sdl-1.2.15/src/video/x11/ |
D | SDL_x11wm.c | 85 SDL_Color want[256], got[256]; in X11_SetIcon() local 94 SDL_memcpy(want, icon->format->palette->colors, in X11_SetIcon() 95 nwant * sizeof want[0]); in X11_SetIcon() 103 want[i].r = r; in X11_SetIcon() 104 want[i].g = g; in X11_SetIcon() 105 want[i].b = b; in X11_SetIcon() 130 c.red = want[i].r << 8; in X11_SetIcon() 131 c.green = want[i].g << 8; in X11_SetIcon() 132 c.blue = want[i].b << 8; in X11_SetIcon() 137 got[c.pixel] = want[i]; in X11_SetIcon()
|
/external/chromium_org/chrome/browser/ |
D | shell_integration_mac.mm | 30 // We really do want the outer bundle here, not the main bundle since setting 50 // We really do want the main bundle here since it makes sense to set an 101 // protocols; we don't want to report "no" here if the user has simply chosen 104 // We really do want the outer bundle here, since this we want to know the 125 // We really do want the main bundle here since it makes sense to set an
|
/external/qemu/hw/core/ |
D | loader.c | 88 size_t want, did; in fread_targphys() local 91 want = nbytes > sizeof(buf) ? sizeof(buf) : nbytes; in fread_targphys() 92 did = fread(buf, 1, want, f); in fread_targphys() 97 if (did != want) in fread_targphys() 114 size_t want, did; in read_targphys() local 117 want = nbytes > sizeof(buf) ? sizeof(buf) : nbytes; in read_targphys() 118 did = read(fd, buf, want); in read_targphys() 119 if (did != want) break; in read_targphys()
|
/external/libpcap/ |
D | README.linux | 21 protocol implemented in the kernel, e.g. tcpdump. If you want them 26 whenever you want). If you want to compile it as a module, say M 28 kmod, you may also want to add "alias net-pf-17 af_packet" to 37 protocol implemented in the kernel, e.g. tcpdump. If you want them 40 running kernel whenever you want). If you want to compile it as a
|
/external/libpng/projects/visualc71/ |
D | README_zlib.txt | 23 3) Set one of the project as the StartUp project. If you just want to build the 25 Project | Set as StartUp project). If you want to build and test the 27 Set as StartUp project), If you want to build the minigzip utility set it to
|
/external/stlport/doc/ |
D | README.evc3 | 36 If you want to compile for the Pocket PC 2002 SDK (which in most cases you want) 55 command line to use. If you want to install the libraries, add the "install" 81 If you want to build the unit tests for the emulator, you have to reconfigure 94 and add the paths for all platforms and CPUs on which you want to use STLport. 103 Define the symbol _STLP_USE_STATIC_LIB when you want to statically link against 107 If you don't want to use the iostreams part of the library, you can specify the 111 STLport uses automatic linking to find the proper .lib file. If you want to see
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
D | TokenSource.as | 34 * Errors from the lexer are never passed to the parser. Either you want 36 * want to continue lexing then you do not want to continue parsing. Just 38 * toss you all the way out of the recognizers. If you want to continue
|
/external/dnsmasq/ |
D | dnsmasq.conf.example | 27 # Change this line if you want dns to get its upstream servers from 38 # If you don't want dnsmasq to read /etc/resolv.conf or any other 43 # If you don't want dnsmasq to poll /etc/resolv.conf or other resolv 59 # Add domains which you want to force to an IP address here. 76 # If you want dnsmasq to change uid and gid to something other 81 # If you want dnsmasq to listen for DHCP and DNS requests only on 91 # If you want dnsmasq to provide only DNS service on an interface, 100 # want dnsmasq to really bind only the interfaces it is listening on, 105 # If you don't want dnsmasq to read /etc/hosts, uncomment the 108 # or if you want it to read another file, as well as /etc/hosts, use [all …]
|
/external/icu/icu4c/source/extra/uconv/samples/utf8/ |
D | utf-8-demo.txt | 7 … If you want to refer to any of my texts, please use a hyperlink to my original and not a copy. I …
|