/external/llvm/test/tools/llvm-readobj/ |
D | mips-got.test | 20 GOT-EXE-NEXT: Initial: 0x0 26 GOT-EXE-NEXT: Initial: 0x80000000 34 GOT-EXE-NEXT: Initial: 0x400418 39 GOT-EXE-NEXT: Initial: 0x410840 44 GOT-EXE-NEXT: Initial: 0x0 51 GOT-EXE-NEXT: Initial: 0x0 67 GOT-SO-NEXT: Initial: 0x0 73 GOT-SO-NEXT: Initial: 0x80000000 81 GOT-SO-NEXT: Initial: 0x108E0 86 GOT-SO-NEXT: Initial: 0x10000 [all …]
|
/external/libiio/src/iiod/ |
D | lexer.l | 37 <INITIAL>VERSION|version { 41 <INITIAL>PRINT|print { 45 <INITIAL>EXIT|exit|QUIT|quit { 49 <INITIAL>HELP|help { 53 <INITIAL>TIMEOUT|timeout { 57 <INITIAL>OPEN|open { 62 <INITIAL>CLOSE|close { 67 <INITIAL>READ|read { 72 <INITIAL>READBUF|readbuf { 77 <INITIAL>WRITEBUF|writebuf { [all …]
|
/external/linux-kselftest/tools/testing/selftests/uevent/ |
D | uevent_filtering.c | 381 * - Open uevent listening socket in initial network namespace owned by in TEST() 382 * initial user namespace. in TEST() 383 * - Trigger uevent in initial network namespace owned by initial user in TEST() 395 * - Open uevent listening socket in non-initial network namespace in TEST() 396 * owned by initial user namespace. in TEST() 397 * - Trigger uevent in initial network namespace owned by initial user in TEST() 410 * - Open uevent listening socket in initial network namespace in TEST() 411 * owned by initial user namespace. in TEST() 412 * - Trigger uevent in initial network namespace owned by initial user in TEST() 424 * - Open uevent listening socket in non-initial network namespace in TEST() [all …]
|
/external/python/cpython2/Lib/encodings/ |
D | cp864.py | 116 0x00c6: 0xfe8b, # ARABIC LETTER YEH WITH HAMZA ABOVE INITIAL FORM 118 0x00c8: 0xfe91, # ARABIC LETTER BEH INITIAL FORM 120 0x00ca: 0xfe97, # ARABIC LETTER TEH INITIAL FORM 121 0x00cb: 0xfe9b, # ARABIC LETTER THEH INITIAL FORM 122 0x00cc: 0xfe9f, # ARABIC LETTER JEEM INITIAL FORM 123 0x00cd: 0xfea3, # ARABIC LETTER HAH INITIAL FORM 124 0x00ce: 0xfea7, # ARABIC LETTER KHAH INITIAL FORM 129 0x00d3: 0xfeb3, # ARABIC LETTER SEEN INITIAL FORM 130 0x00d4: 0xfeb7, # ARABIC LETTER SHEEN INITIAL FORM 131 0x00d5: 0xfebb, # ARABIC LETTER SAD INITIAL FORM [all …]
|
D | cp1006.py | 228 u'\ufe91' # 0xB4 -> ARABIC LETTER BEH INITIAL FORM 230 u'\ufb58' # 0xB6 -> ARABIC LETTER PEH INITIAL FORM 233 u'\ufe97' # 0xB9 -> ARABIC LETTER TEH INITIAL FORM 235 u'\ufb68' # 0xBB -> ARABIC LETTER TTEH INITIAL FORM 237 u'\ufe9b' # 0xBD -> ARABIC LETTER THEH INITIAL FORM 239 u'\ufe9f' # 0xBF -> ARABIC LETTER JEEM INITIAL FORM 241 u'\ufb7c' # 0xC1 -> ARABIC LETTER TCHEH INITIAL FORM 243 u'\ufea3' # 0xC3 -> ARABIC LETTER HAH INITIAL FORM 245 u'\ufea7' # 0xC5 -> ARABIC LETTER KHAH INITIAL FORM 254 u'\ufeb3' # 0xCE -> ARABIC LETTER SEEN INITIAL FORM [all …]
|
/external/python/cpython3/Lib/encodings/ |
D | cp864.py | 116 0x00c6: 0xfe8b, # ARABIC LETTER YEH WITH HAMZA ABOVE INITIAL FORM 118 0x00c8: 0xfe91, # ARABIC LETTER BEH INITIAL FORM 120 0x00ca: 0xfe97, # ARABIC LETTER TEH INITIAL FORM 121 0x00cb: 0xfe9b, # ARABIC LETTER THEH INITIAL FORM 122 0x00cc: 0xfe9f, # ARABIC LETTER JEEM INITIAL FORM 123 0x00cd: 0xfea3, # ARABIC LETTER HAH INITIAL FORM 124 0x00ce: 0xfea7, # ARABIC LETTER KHAH INITIAL FORM 129 0x00d3: 0xfeb3, # ARABIC LETTER SEEN INITIAL FORM 130 0x00d4: 0xfeb7, # ARABIC LETTER SHEEN INITIAL FORM 131 0x00d5: 0xfebb, # ARABIC LETTER SAD INITIAL FORM [all …]
|
D | cp1006.py | 228 '\ufe91' # 0xB4 -> ARABIC LETTER BEH INITIAL FORM 230 '\ufb58' # 0xB6 -> ARABIC LETTER PEH INITIAL FORM 233 '\ufe97' # 0xB9 -> ARABIC LETTER TEH INITIAL FORM 235 '\ufb68' # 0xBB -> ARABIC LETTER TTEH INITIAL FORM 237 '\ufe9b' # 0xBD -> ARABIC LETTER THEH INITIAL FORM 239 '\ufe9f' # 0xBF -> ARABIC LETTER JEEM INITIAL FORM 241 '\ufb7c' # 0xC1 -> ARABIC LETTER TCHEH INITIAL FORM 243 '\ufea3' # 0xC3 -> ARABIC LETTER HAH INITIAL FORM 245 '\ufea7' # 0xC5 -> ARABIC LETTER KHAH INITIAL FORM 254 '\ufeb3' # 0xCE -> ARABIC LETTER SEEN INITIAL FORM [all …]
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/ |
D | LaguerreSolver.java | 35 * Laguerre's method is global in the sense that it can start with any initial 99 public double solve(final double min, final double max, final double initial) in solve() argument 101 return solve(p, min, max, initial); in solve() 105 * Find a real root in the given interval with initial value. 112 * @param initial the start value to use 122 final double min, final double max, final double initial) in solve() argument 125 return solve(f, min, max, initial); in solve() 129 * Find a real root in the given interval with initial value. 136 * @param initial the start value to use 146 final double min, final double max, final double initial) in solve() argument [all …]
|
D | UnivariateRealSolverUtils.java | 87 * <li> <code> lowerBound <= a < initial < b <= upperBound</code> </li> 94 * <code>a := initial -1; b := initial +1,</code> examines the value of the 109 * near <code>initial,</code> it is better to use 114 * @param initial initial midpoint of interval being expanded to 123 * is not positive, or initial is not between lowerBound and upperBound 126 double initial, double lowerBound, double upperBound) in bracket() argument 128 return bracket( function, initial, lowerBound, upperBound, in bracket() 134 * <li> <code> lowerBound <= a < initial < b <= upperBound</code> </li> 141 * <code>a := initial -1; b := initial +1,</code> examines the value of the 152 * @param initial initial midpoint of interval being expanded to [all …]
|
D | BrentSolver.java | 104 public double solve(double min, double max, double initial) in solve() argument 106 return solve(f, min, max, initial); in solve() 110 * Find a zero in the given interval with an initial guess. 113 * allowed to have endpoints with the same sign if the initial point has 119 * @param initial the start value to use (must be set to min if no 120 * initial point is known). 124 * @throws IllegalArgumentException if initial is not between min and max 130 final double min, final double max, final double initial) in solve() argument 134 if ((initial < min) || (initial > max)) { in solve() 137 min, initial, max); in solve() [all …]
|
D | RiddersSolver.java | 72 public double solve(final double min, final double max, final double initial) in solve() argument 74 return solve(f, min, max, initial); in solve() 78 * Find a root in the given interval with initial value. 85 * @param initial the start value to use 94 final double min, final double max, final double initial) in solve() argument 97 return solve(f, min, max, initial); in solve() 101 * Find a root in the given interval with initial value. 108 * @param initial the start value to use 117 final double min, final double max, final double initial) in solve() argument 123 if (f.value(initial) == 0.0) { return initial; } in solve() [all …]
|
/external/ltp/testcases/kernel/syscalls/getrusage/ |
D | getrusage03.c | 95 * expect: initial.self ~= child.self */ 101 tst_resm(TINFO, "initial.self = %ld", ru.ru_maxrss); in inherit_fork() 116 check_return(WEXITSTATUS(status), "initial.self ~= child.self", in inherit_fork() 117 "initial.self !~= child.self"); in inherit_fork() 121 * expect: initial.children ~= 100MB, child.children = 0 */ 127 tst_resm(TINFO, "initial.children = %ld", ru.ru_maxrss); in inherit_fork2() 129 tst_resm(TPASS, "initial.children ~= 100MB"); in inherit_fork2() 131 tst_resm(TFAIL, "initial.children !~= 100MB"); in inherit_fork2() 150 * expect: initial.self + 50MB ~= child.self */ 156 tst_resm(TINFO, "initial.self = %ld", ru.ru_maxrss); in fork_malloc() [all …]
|
/external/rust/crates/ring/tests/ |
D | constant_time_tests.rs | 28 let initial: [u8; 256] = rand::generate(&rand::SystemRandom::new()).unwrap().expose(); in test_verify_slices_are_equal() localVariable 31 let copy = initial; in test_verify_slices_are_equal() 35 constant_time::verify_slices_are_equal(&initial, ©[..len]), in test_verify_slices_are_equal() 40 constant_time::verify_slices_are_equal(&initial[..len], ©[..len]), in test_verify_slices_are_equal() 46 constant_time::verify_slices_are_equal(&initial, ©), in test_verify_slices_are_equal() 51 for i in 0..initial.len() { in test_verify_slices_are_equal() 53 let mut copy = initial; in test_verify_slices_are_equal() 56 for len in 0..=initial.len() { in test_verify_slices_are_equal() 58 assert_ne!(&initial[..], ©[..]); in test_verify_slices_are_equal() 60 let a = &initial[..len]; in test_verify_slices_are_equal()
|
/external/grpc-grpc/src/python/grpcio_testing/grpc_testing/ |
D | __init__.py | 32 """Sends the RPC's initial metadata to the system under test. 35 initial_metadata: The RPC's initial metadata to be "sent" to 66 """Sends the RPC's initial metadata to the system under test. 69 initial_metadata: The RPC's initial metadata to be "sent" to 108 """Sends the RPC's initial metadata to the system under test. 111 initial_metadata: The RPC's initial metadata to be "sent" to 162 """Sends the RPC's initial metadata to the system under test. 165 initial_metadata: The RPC's initial metadata to be "sent" to the 304 """Accesses the initial metadata emitted by the system under test. 306 This method blocks until the system under test has added initial [all …]
|
/external/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/ |
D | StaticSymmetry.h | 143 static inline RV run(const std::array<Index, NumIndices>& idx, RV initial, Args&&... args) 147 …initial = Op::run(tensor_static_symgroup_index_permute(idx, typename first::indices(), remaining_i… 148 …_do_apply<internal::type_list<next...>>::template run<Op, RV, SGNumIndices>(idx, initial, args...); 152 static inline RV run(const std::vector<Index>& idx, RV initial, Args&&... args) 155 …initial = Op::run(tensor_static_symgroup_index_permute(idx, typename first::indices()), first::fla… 156 …_do_apply<internal::type_list<next...>>::template run<Op, RV, SGNumIndices>(idx, initial, args...); 164 static inline RV run(const std::array<Index, NumIndices>&, RV initial, Args&&...) 167 return initial; 171 static inline RV run(const std::vector<Index>&, RV initial, Args&&...) 174 return initial; [all …]
|
/external/llvm-project/clang/test/CodeGen/aarch64-sve-intrinsics/ |
D | acle_sve_adda.c | 18 float16_t test_svadda_f16(svbool_t pg, float16_t initial, svfloat16_t op) in test_svadda_f16() argument 22 …ll half @llvm.aarch64.sve.fadda.nxv8f16(<vscale x 8 x i1> %[[PG]], half %initial, <vscale x 8 x ha… in test_svadda_f16() 24 return SVE_ACLE_FUNC(svadda,_f16,,)(pg, initial, op); in test_svadda_f16() 27 float32_t test_svadda_f32(svbool_t pg, float32_t initial, svfloat32_t op) in test_svadda_f32() argument 31 … float @llvm.aarch64.sve.fadda.nxv4f32(<vscale x 4 x i1> %[[PG]], float %initial, <vscale x 4 x fl… in test_svadda_f32() 33 return SVE_ACLE_FUNC(svadda,_f32,,)(pg, initial, op); in test_svadda_f32() 36 float64_t test_svadda_f64(svbool_t pg, float64_t initial, svfloat64_t op) in test_svadda_f64() argument 40 …ouble @llvm.aarch64.sve.fadda.nxv2f64(<vscale x 2 x i1> %[[PG]], double %initial, <vscale x 2 x do… in test_svadda_f64() 42 return SVE_ACLE_FUNC(svadda,_f64,,)(pg, initial, op); in test_svadda_f64()
|
/external/mesa3d/src/compiler/glsl/glcpp/ |
D | glcpp-lex.l | 224 BEGIN INITIAL; variable 267 <INITIAL,DEFINE,HASH>"//"[^\r\n]* { 271 <INITIAL,DEFINE,HASH>"/*" { yy_push_state(COMMENT, yyscanner); } 300 BEGIN INITIAL; variable 315 BEGIN INITIAL; variable 321 BEGIN INITIAL; variable 326 BEGIN INITIAL; variable 331 BEGIN INITIAL; variable 336 BEGIN INITIAL; variable 347 BEGIN INITIAL; variable [all …]
|
/external/icu/icu4c/source/data/rbnf/ |
D | hu.txt | 38 "200: <%%spellout-cardinal-initial<\u00ADsz\u00E1z[\u00AD>>];", 40 "2000: <%%spellout-cardinal-initial<\u00ADezer[\u00AD>>];", 41 "1000000: <%%spellout-cardinal-initial<\u00ADmilli\u00F3[\u00AD>>];", 42 "1000000000: <%%spellout-cardinal-initial<\u00ADmilli\u00E1rd[\u00AD>>];", 43 "1000000000000: <%%spellout-cardinal-initial<\u00ADbilli\u00F3[\u00AD>>];", 44 "1000000000000000: <%%spellout-cardinal-initial<\u00ADbilli\u00E1rd[\u00AD>>];", 57 "%%spellout-cardinal-initial:", 97 "200: <%%spellout-cardinal-initial<sz\u00E1z>%%spellout-ordinal-adik>;", 100 "2000: <%%spellout-cardinal-initial<\u00ADezr>>;", 101 "2001: <%%spellout-cardinal-initial<\u00ADezer\u00AD>>;", [all …]
|
/external/cpuinfo/test/dmesg/ |
D | galaxy-a3-2016-eu.log | 148 <3>[ 2.129824] [1: swapper/0: 1] [SENSOR] taos_get_initial_offset: initial offset = 0 440 <3>[ 2.325188] [0: swapper/0: 1] Warning: unable to open an initial console. 441 <6>[ 2.325212] [0: swapper/0: 1] gpio initial-state: gpa0-0 IN/PD/L 442 <6>[ 2.325223] [0: swapper/0: 1] gpio initial-state: gpa0-1 INT/NP/H 443 <6>[ 2.325232] [0: swapper/0: 1] gpio initial-state: gpa0-2 INT/PU/H 444 <6>[ 2.325242] [0: swapper/0: 1] gpio initial-state: gpa0-3 INT/NP/H 445 <6>[ 2.325251] [0: swapper/0: 1] gpio initial-state: gpa0-4 INT/PU/H 446 <6>[ 2.325260] [0: swapper/0: 1] gpio initial-state: gpa0-5 INT/NP/H 447 <6>[ 2.325270] [0: swapper/0: 1] gpio initial-state: gpa0-6 IN/PD/H 448 <6>[ 2.325279] [0: swapper/0: 1] gpio initial-state: gpa0-7 INT/NP/H [all …]
|
/external/llvm-project/flang/test/Semantics/ |
D | dosemantics03.f90 | 4 ! and the initial, final, and step expressions must be INTEGER if the 157 ! Initial expressions 158 ! REAL initial expression 163 ! DOUBLE PRECISION initial expression 168 ! Pointer to INTEGER initial expression 173 ! Pointer to REAL initial expression 178 ! Pointer to DOUBLE PRECISION initial expression 183 ! LOGICAL initial expression 189 ! COMPLEX initial expression 195 ! Derived type initial expression [all …]
|
D | init01.f90 | 11 !ERROR: An initial data target may not be a reference to an ALLOCATABLE 'x1' 13 !ERROR: An initial data target may not be a reference to a coarray 'x2' 15 !ERROR: An initial data target may not be a reference to an object 'x3' that lacks the TARGET attri… 17 !ERROR: An initial data target may not be a reference to an object 'x4' that lacks the SAVE attribu… 19 !ERROR: An initial data target must be a designator with constant subscripts 70 !ERROR: An initial data target may not be a reference to an object 'a2' that lacks the SAVE attribu… 71 !ERROR: An initial data target may not be a reference to an object 'a2' that lacks the SAVE attribu… 73 !ERROR: An initial data target may not be a reference to an object 'a3' that lacks the TARGET attri… 74 !ERROR: An initial data target may not be a reference to an object 'a3' that lacks the TARGET attri…
|
/external/javassist/ |
D | License.html | 29 <P><B>1.6. ''Initial Developer''</B> means the individual or entity identified 30 as the Initial Developer in the Source Code notice required by <B>Exhibit 36 extent possible, whether at the time of the initial grant or subsequently 70 <UL><B>2.1. The Initial Developer Grant.</B> <BR>The Initial Developer hereby 74 patent or trademark) Licensable by Initial Developer to use, reproduce, 83 are effective on the date Initial Developer first distributes Original Code 145 indirectly, from Original Code provided by the Initial Developer and including 146 the name of the Initial Developer in (a) the Source Code, and (b) in any 183 may do so only on Your own behalf, and not on behalf of the Initial Developer 186 hereby agree to indemnify the Initial Developer and every Contributor for any [all …]
|
/external/rust/crates/nix/test/sys/ |
D | test_aio.rs | 101 const INITIAL: &[u8] = b"abcdef123456"; in test_fsync() constant 103 f.write_all(INITIAL).unwrap(); in test_fsync() 122 const INITIAL: &[u8] = b"abcdef123456"; in test_fsync_error() constant 126 f.write_all(INITIAL).unwrap(); in test_fsync_error() 144 const INITIAL: &[u8] = b"abcdef123456"; in test_aio_suspend() constant 150 f.write_all(INITIAL).unwrap(); in test_aio_suspend() 192 const INITIAL: &[u8] = b"abcdef123456"; in test_read() constant 196 f.write_all(INITIAL).unwrap(); in test_read() 221 const INITIAL: &[u8] = b"abcdef123456"; in test_read_error() constant 224 f.write_all(INITIAL).unwrap(); in test_read_error() [all …]
|
/external/llvm-project/llvm/test/tools/llvm-readobj/ELF/ |
D | mips-got.test | 57 # BASIC-LLVM-NEXT: Initial: 0x0 63 # BASIC-LLVM-NEXT: Initial: 0xFFFFFFFFFFFFFFFF 71 # BASIC-LLVM-NEXT: Initial: 0x1111111111111111 76 # BASIC-LLVM-NEXT: Initial: 0x2222222222222222 83 # BASIC-LLVM-NEXT: Initial: 0xAAAAAAAAAAAAAAAA 92 # BASIC-LLVM-NEXT: Initial: 0xBBBBBBBBBBBBBBBB 106 # BASIC-GNU-NEXT: Address Access Initial Purpose 111 # BASIC-GNU-NEXT: Address Access Initial 116 # BASIC-GNU-NEXT: Address Access Initial Sym.Val. Type Ndx … 146 # STATIC-GOT-LLVM-NEXT: Initial: 0x0 [all …]
|
/external/llvm-project/llvm/lib/Transforms/IPO/ |
D | SyntheticCountsPropagation.cpp | 17 // The transformation works by first assigning some initial values to the entry 47 /// Initial synthetic count assigned to functions. 49 InitialSyntheticCount("initial-synthetic-count", cl::Hidden, cl::init(10), 51 cl::desc("Initial value of synthetic entry count.")); 53 /// Initial synthetic count assigned to inline functions. 56 cl::desc("Initial synthetic entry count for inline functions.")); 58 /// Initial synthetic count assigned to cold functions. 61 cl::desc("Initial synthetic entry count for cold functions.")); 63 // Assign initial synthetic entry counts to functions. 101 // Set initial entry counts. in run()
|