/external/curl/tests/data/ |
D | test1005 | 9 # Server-side 17 …-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\n250-AAAAAAAAAAAAAAAAAAAA… 21 # Client-side
|
D | test1062 | 10 # Server-side 18 …-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\n250-AAAAAAAAAAAAAAAAAAAA… 22 # Client-side
|
D | test1006 | 9 # Server-side 18 …-AAAAAAAAAAAAAAAAAAAAAAAAA\r\n250-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA… 22 # Client-side
|
/external/autotest/client/profilers/readprofile/ |
D | util-linux-2.12r.tar.bz2 | ... util-linux-2.12r/
util-linux-2.12r/disk-utils/
util-linux |
/external/pdfium/core/fpdfapi/parser/ |
D | fpdf_parser_utility.cpp | 2 // Use of this source code is governed by a BSD-style license that can be 22 // Indexed by 8-bit character code, contains either: 23 // 'W' - for whitespace: NUL, TAB, CR, LF, FF, SPACE, 0x80, 0xff 24 // 'N' - for numeric: 0123456789+-. 25 // 'D' - for delimiter: %()/<>[]{} 26 // 'R' - otherwise. 30 'W', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'W', 'W', 'R', 'W', 'W', 'R', 31 'R', 35 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 36 'R', [all …]
|
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/ |
D | ThaiCharacterClasses.java | 5 * Copyright (C) 1998-2010, International Business Machines Corporation and * 42 // Indexed by unicode - '\u0E00' 43 // FIXME: MS Fonts - Should 0E2E has no ascender (it does in WT font) 44 // FIXME: MS Fonts - 0E47 (MAITAIKHU) and 0E4D (NIKHAHIT) only have vowel forms 45 // FIXME: MS Fonts - 0E4E (YAMAKKAN) only has one form 48 // ------------------------------------------------------------------------------- 81 … //------------------------------------------------------------------------------------------------ 85 … //------------------------------------------------------------------------------------------------ 86 /*NON*/ {'A', 'A', 'A', 'A', 'A', 'S', 'S', 'A', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', … 90 /*LVO*/ {'S', 'A', 'A', 'A', 'S', 'S', 'S', 'S', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', … [all …]
|
/external/libcxx/test/std/containers/associative/map/map.ops/ |
D | lower_bound.pass.cpp | 1 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===// 31 typedef M::iterator R; in main() typedef 44 R r = m.lower_bound(5); in main() local 45 assert(r == m.begin()); in main() 46 r = m.lower_bound(7); in main() 47 assert(r == next(m.begin())); in main() 48 r = m.lower_bound(9); in main() 49 assert(r == next(m.begin(), 2)); in main() 50 r = m.lower_bound(11); in main() [all …]
|
D | upper_bound.pass.cpp | 1 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===// 30 typedef M::iterator R; in main() typedef 43 R r = m.upper_bound(5); in main() local 44 assert(r == next(m.begin(), 1)); in main() 45 r = m.upper_bound(7); in main() 46 assert(r == next(m.begin(), 2)); in main() 47 r = m.upper_bound(9); in main() 48 assert(r == next(m.begin(), 3)); in main() 49 r = m.upper_bound(11); in main() [all …]
|
D | equal_range.pass.cpp | 1 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===// 31 typedef std::pair<M::iterator, M::iterator> R; in main() typedef 44 R r = m.equal_range(5); in main() local 45 assert(r.first == next(m.begin(), 0)); in main() 46 assert(r.second == next(m.begin(), 1)); in main() 47 r = m.equal_range(7); in main() 48 assert(r.first == next(m.begin(), 1)); in main() 49 assert(r.second == next(m.begin(), 2)); in main() 50 r = m.equal_range(9); in main() [all …]
|
D | count.pass.cpp | 1 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===// 30 typedef M::size_type R; in main() typedef 43 R r = m.count(5); in main() local 44 assert(r == 1); in main() 45 r = m.count(6); in main() 46 assert(r == 1); in main() 47 r = m.count(7); in main() 48 assert(r == 1); in main() 49 r = m.count(8); in main() [all …]
|
D | find.pass.cpp | 1 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===// 31 typedef M::iterator R; in main() typedef 44 R r = m.find(5); in main() local 45 assert(r == m.begin()); in main() 46 r = m.find(6); in main() 47 assert(r == next(m.begin())); in main() 48 r = m.find(7); in main() 49 assert(r == next(m.begin(), 2)); in main() 50 r = m.find(8); in main() [all …]
|
/external/libcxx/test/std/containers/associative/set/ |
D | lower_bound.pass.cpp | 1 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===// 30 typedef M::iterator R; in main() typedef 43 R r = m.lower_bound(5); in main() local 44 assert(r == m.begin()); in main() 45 r = m.lower_bound(7); in main() 46 assert(r == next(m.begin())); in main() 47 r = m.lower_bound(9); in main() 48 assert(r == next(m.begin(), 2)); in main() 49 r = m.lower_bound(11); in main() [all …]
|
D | upper_bound.pass.cpp | 1 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===// 30 typedef M::iterator R; in main() typedef 43 R r = m.upper_bound(5); in main() local 44 assert(r == next(m.begin(), 1)); in main() 45 r = m.upper_bound(7); in main() 46 assert(r == next(m.begin(), 2)); in main() 47 r = m.upper_bound(9); in main() 48 assert(r == next(m.begin(), 3)); in main() 49 r = m.upper_bound(11); in main() [all …]
|
D | equal_range.pass.cpp | 1 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===// 30 typedef std::pair<M::iterator, M::iterator> R; in main() typedef 43 R r = m.equal_range(5); in main() local 44 assert(r.first == next(m.begin(), 0)); in main() 45 assert(r.second == next(m.begin(), 1)); in main() 46 r = m.equal_range(7); in main() 47 assert(r.first == next(m.begin(), 1)); in main() 48 assert(r.second == next(m.begin(), 2)); in main() 49 r = m.equal_range(9); in main() [all …]
|
D | find.pass.cpp | 1 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===// 30 typedef M::iterator R; in main() typedef 43 R r = m.find(5); in main() local 44 assert(r == m.begin()); in main() 45 r = m.find(6); in main() 46 assert(r == next(m.begin())); in main() 47 r = m.find(7); in main() 48 assert(r == next(m.begin(), 2)); in main() 49 r = m.find(8); in main() [all …]
|
D | count.pass.cpp | 1 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===// 28 typedef M::size_type R; in main() typedef 41 R r = m.count(5); in main() local 42 assert(r == 1); in main() 43 r = m.count(6); in main() 44 assert(r == 1); in main() 45 r = m.count(7); in main() 46 assert(r == 1); in main() 47 r = m.count(8); in main() [all …]
|
/external/llvm/test/CodeGen/X86/ |
D | handle-move.ll | 1 ; RUN: llc -march=x86-64 -mcpu=core2 -fast-isel -enable-misched -misched=shuffle -misched-bottomup … 2 ; RUN: llc -march=x86-64 -mcpu=core2 -fast-isel -enable-misched -misched=shuffle -misched-topdown -… 11 ; 144B -> 180B: DIV32r %vreg4, %EAX<imp-def>, %EDX<imp-def,dead>, %EFLAGS<imp-def,dead>, %EAX<imp-u… 12 ; %vreg4: [48r,144r:0) 0@48r 13 ; --> [48r,180r:0) 0@48r 14 ; DH: [0B,16r:0)[128r,144r:2)[144r,144d:1) 0@0B-phi 1@144r 2@128r 15 ; --> [0B,16r:0)[128r,180r:2)[180r,180d:1) 0@0B-phi 1@180r 2@128r 16 ; DL: [0B,16r:0)[128r,144r:2)[144r,144d:1) 0@0B-phi 1@144r 2@128r 17 ; --> [0B,16r:0)[128r,180r:2)[180r,180d:1) 0@0B-phi 1@180r 2@128r 28 ; 144B -> 180B: DIV32r %vreg4, %EAX<imp-def,dead>, %EDX<imp-def>, %EFLAGS<imp-def,dead>, %EAX<imp-u… [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/ |
D | handle-move.ll | 1 ; RUN: llc -mtriple=x86_64-- -mcpu=core2 -fast-isel -enable-misched -misched=shuffle -misched-botto… 2 ; RUN: llc -mtriple=x86_64-- -mcpu=core2 -fast-isel -enable-misched -misched=shuffle -misched-topdo… 11 ; 144B -> 180B: DIV32r %4, implicit-def %eax, implicit dead %edx, implicit dead %EFLAGS, implicit k… 12 ; %4: [48r,144r:0) 0@48r 13 ; --> [48r,180r:0) 0@48r 14 ; DH: [0B,16r:0)[128r,144r:2)[144r,144d:1) 0@0B-phi 1@144r 2@128r 15 ; --> [0B,16r:0)[128r,180r:2)[180r,180d:1) 0@0B-phi 1@180r 2@128r 16 ; DL: [0B,16r:0)[128r,144r:2)[144r,144d:1) 0@0B-phi 1@144r 2@128r 17 ; --> [0B,16r:0)[128r,180r:2)[180r,180d:1) 0@0B-phi 1@180r 2@128r 28 ; 144B -> 180B: DIV32r %4, implicit dead %eax, implicit-def %edx, implicit dead %EFLAGS, implicit k… [all …]
|
/external/boringssl/src/crypto/fipsmodule/ecdsa/ |
D | ecdsa_verify_tests.txt | 1 # Tests from NIST CAVP 186-4 ECDSA2VS Test Vectors, Signature Verification Test 2 # http://csrc.nist.gov/groups/STM/cavp/documents/dss/186-3ecdsatestvectors.zip 4 # NIST's files provide message and digest pairs. Since this is a low-level test, 5 # the digests have been extracted. P-521 test vectors were fixed to have the 8 Curve = P-224 12 R = 1bfcaab01e47addd4733369320364ad208169ffb15e6aac33c2d7c06 15 Curve = P-224 19 R = f0f670963c3d2a3281d639f850f3781c6402d99a1bf07cd9f35b2975 23 Curve = P-224 27 R = 88617e694e361d2cfef6b0658d444607fba030ad31fe8dead14db22e [all …]
|
/external/clang/test/CodeGen/ |
D | mult-alt-generic.c | 1 // RUN: %clang_cc1 -triple i686 %s -emit-llvm -o - | FileCheck %s 2 // RUN: %clang_cc1 -triple x86_64 %s -emit-llvm -o - | FileCheck %s 3 // RUN: %clang_cc1 -triple arm %s -emit-llvm -o - | FileCheck %s 4 // RUN: %clang_cc1 -triple mips %s -emit-llvm -o - | FileCheck %s 5 // RUN: %clang_cc1 -triple mipsel %s -emit-llvm -o - | FileCheck %s 6 // RUN: %clang_cc1 -triple powerpc %s -emit-llvm -o - | FileCheck %s 7 // RUN: %clang_cc1 -triple powerpc64 %s -emit-llvm -o - | FileCheck %s 8 // RUN: %clang_cc1 -triple s390x %s -emit-llvm -o - | FileCheck %s 9 // RUN: %clang_cc1 -triple sparc %s -emit-llvm -o - | FileCheck %s 10 // RUN: %clang_cc1 -triple sparcv9 %s -emit-llvm -o - | FileCheck %s [all …]
|
/external/libcxx/test/std/containers/associative/multiset/ |
D | find.pass.cpp | 1 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===// 30 typedef M::iterator R; in main() typedef 43 R r = m.find(5); in main() local 44 assert(r == m.begin()); in main() 45 r = m.find(6); in main() 46 assert(r == next(m.begin())); in main() 47 r = m.find(7); in main() 48 assert(r == next(m.begin(), 2)); in main() 49 r = m.find(8); in main() [all …]
|
D | equal_range.pass.cpp | 1 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===// 30 typedef std::pair<M::iterator, M::iterator> R; in main() typedef 44 R r = m.equal_range(4); in main() local 45 assert(r.first == next(m.begin(), 0)); in main() 46 assert(r.second == next(m.begin(), 0)); in main() 47 r = m.equal_range(5); in main() 48 assert(r.first == next(m.begin(), 0)); in main() 49 assert(r.second == next(m.begin(), 3)); in main() 50 r = m.equal_range(6); in main() [all …]
|
/external/eigen/blas/f2c/ |
D | zhpmv.c | 1 /* zhpmv.f -- translated by f2c (version 20100827). 4 on Linux or Unix systems, link with .../path/to/libf2c.a -lm 5 or, if you install libf2c.a in a standard place, with -lf2c -lm 6 -- in that order, at the end of the command line, as in 7 cc *.o -lf2c -lm 41 /* ZHPMV performs the matrix-vector operation */ in zhpmv_() 51 /* UPLO - CHARACTER*1. */ in zhpmv_() 64 /* N - INTEGER. */ in zhpmv_() 69 /* ALPHA - COMPLEX*16 . */ in zhpmv_() 73 /* AP - COMPLEX*16 array of DIMENSION at least */ in zhpmv_() [all …]
|
/external/libcxx/test/std/containers/associative/multimap/multimap.ops/ |
D | equal_range.pass.cpp | 1 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===// 31 typedef std::pair<M::iterator, M::iterator> R; in main() typedef 45 R r = m.equal_range(4); in main() local 46 assert(r.first == m.begin()); in main() 47 assert(r.second == m.begin()); in main() 48 r = m.equal_range(5); in main() 49 assert(r.first == m.begin()); in main() 50 assert(r.second == next(m.begin(), 3)); in main() 51 r = m.equal_range(6); in main() [all …]
|
/external/libcups/filter/ |
D | raster.c | 4 * Copyright 2007-2018 by Apple Inc. 5 * Copyright 1997-2006 by Easy Software Products. 15 * This file is subject to the Apple OS-Developed Software exception. 22 #include <cups/raster-private.h> 40 count, /* Current row run-length count */ 46 int compressed, /* Non-zero if data is compressed */ 47 swapped; /* Non-zero if data is byte-swapped */ 148 static ssize_t cups_raster_io(cups_raster_t *r, unsigned char *buf, size_t bytes); 149 static unsigned cups_raster_read_header(cups_raster_t *r); 150 static ssize_t cups_raster_read(cups_raster_t *r, unsigned char *buf, size_t bytes); [all …]
|