/external/u-boot/drivers/ddr/marvell/axp/ |
D | ddr3_read_leveling.c | 55 * Desc: Execute the Read leveling phase by HW 91 u32 delay, phase, pup, cs; in ddr3_read_leveling_hw() local 108 phase = (reg >> REG_PHY_PHASE_OFFS) & in ddr3_read_leveling_hw() 111 dram_info->rl_val[cs][pup][P] = phase; in ddr3_read_leveling_hw() 112 if (phase > dram_info->rl_max_phase) in ddr3_read_leveling_hw() 113 dram_info->rl_max_phase = phase; in ddr3_read_leveling_hw() 114 if (phase < dram_info->rl_min_phase) in ddr3_read_leveling_hw() 115 dram_info->rl_min_phase = phase; in ddr3_read_leveling_hw() 138 DEBUG_RL_S(", Phase: "); in ddr3_read_leveling_hw() 173 * Desc: Execute the Read leveling phase by SW [all …]
|
D | ddr3_write_leveling.c | 58 * Desc: Execute Write leveling phase by HW 66 u32 reg, phase, delay, cs, pup; in ddr3_write_leveling_hw() local 117 phase = in ddr3_write_leveling_hw() 121 dram_info->wl_val[cs][pup][P] = phase; in ddr3_write_leveling_hw() 133 /* Debug message - Print res for cs[i]: cs,PUP,Phase,Delay */ in ddr3_write_leveling_hw() 145 DEBUG_WL_S(", Phase: "); in ddr3_write_leveling_hw() 186 u32 cs, cnt, pup_num, sum, phase, delay, max_pup_num, pup, sdram_offset; in ddr3_wl_supplement() local 343 phase = in ddr3_wl_supplement() 351 [P] = phase; in ddr3_wl_supplement() 361 phase, delay); in ddr3_wl_supplement() [all …]
|
/external/autotest/server/site_tests/firmware_Cr50SetBoardId/ |
D | firmware_Cr50SetBoardId.py | 44 SUCCESS = ["Successfully updated board ID to 'BID' with phase 'PHASE'.", 46 ERROR_UNKNOWN_PHASE = ['Unknown phase (PHASE)', 1] 85 def run_script(self, expected_result, phase, board_id=''): argument 86 """Run the bid script with the given phase and board id 90 phase: The phase string. 102 # Run the script with the phase and board id 103 cmd = '%s %s %s' % (self.BID_SCRIPT, phase, board_id) 109 # Replace the placeholders with the expected board id and phase 111 message = message.replace('PHASE', phase) 125 # dummy_phase is not a valid phase [all …]
|
/external/skqp/src/effects/ |
D | Sk1DPathEffect.cpp | 39 SkPath1DPathEffect::SkPath1DPathEffect(const SkPath& path, SkScalar advance, SkScalar phase, in SkPath1DPathEffect() argument 44 // cleanup their phase parameter, inverting it so that it becomes an in SkPath1DPathEffect() 46 if (phase < 0) { in SkPath1DPathEffect() 47 phase = -phase; in SkPath1DPathEffect() 48 if (phase > advance) { in SkPath1DPathEffect() 49 phase = SkScalarMod(phase, advance); in SkPath1DPathEffect() 52 if (phase > advance) { in SkPath1DPathEffect() 53 phase = SkScalarMod(phase, advance); in SkPath1DPathEffect() 55 phase = advance - phase; in SkPath1DPathEffect() 57 // now catch the edge case where phase == advance (within epsilon) in SkPath1DPathEffect() [all …]
|
/external/skia/src/effects/ |
D | Sk1DPathEffect.cpp | 39 SkPath1DPathEffect::SkPath1DPathEffect(const SkPath& path, SkScalar advance, SkScalar phase, in SkPath1DPathEffect() argument 44 // cleanup their phase parameter, inverting it so that it becomes an in SkPath1DPathEffect() 46 if (phase < 0) { in SkPath1DPathEffect() 47 phase = -phase; in SkPath1DPathEffect() 48 if (phase > advance) { in SkPath1DPathEffect() 49 phase = SkScalarMod(phase, advance); in SkPath1DPathEffect() 52 if (phase > advance) { in SkPath1DPathEffect() 53 phase = SkScalarMod(phase, advance); in SkPath1DPathEffect() 55 phase = advance - phase; in SkPath1DPathEffect() 57 // now catch the edge case where phase == advance (within epsilon) in SkPath1DPathEffect() [all …]
|
/external/skia/src/utils/ |
D | SkDashPath.cpp | 19 static SkScalar find_first_interval(const SkScalar intervals[], SkScalar phase, in find_first_interval() argument 23 if (phase > gap || (phase == gap && gap)) { in find_first_interval() 24 phase -= gap; in find_first_interval() 27 return gap - phase; in find_first_interval() 30 // If we get here, phase "appears" to be larger than our length. This in find_first_interval() 38 void SkDashPath::CalcDashParameters(SkScalar phase, const SkScalar intervals[], int32_t count, in CalcDashParameters() argument 46 // Adjust phase to be between 0 and len, "flipping" phase if negative. in CalcDashParameters() 47 // e.g., if len is 100, then phase of -20 (or -120) is equivalent to 80 in CalcDashParameters() 49 if (phase < 0) { in CalcDashParameters() 50 phase = -phase; in CalcDashParameters() [all …]
|
/external/skqp/src/utils/ |
D | SkDashPath.cpp | 19 static SkScalar find_first_interval(const SkScalar intervals[], SkScalar phase, in find_first_interval() argument 23 if (phase > gap || (phase == gap && gap)) { in find_first_interval() 24 phase -= gap; in find_first_interval() 27 return gap - phase; in find_first_interval() 30 // If we get here, phase "appears" to be larger than our length. This in find_first_interval() 38 void SkDashPath::CalcDashParameters(SkScalar phase, const SkScalar intervals[], int32_t count, in CalcDashParameters() argument 46 // Adjust phase to be between 0 and len, "flipping" phase if negative. in CalcDashParameters() 47 // e.g., if len is 100, then phase of -20 (or -120) is equivalent to 80 in CalcDashParameters() 49 if (phase < 0) { in CalcDashParameters() 50 phase = -phase; in CalcDashParameters() [all …]
|
/external/llvm/utils/release/ |
D | test-release.sh | 57 echo " -no-compare-files Don't test that phase 2 and 3 files are identical." 250 Phase="$1" 253 echo "[${Flavor} Phase${Phase}] ${Msg}" | tee -a $LogDir/deferred_errors.log 332 Phase="$1" 369 2>&1 | tee $LogDir/llvm.configure-Phase$Phase-$Flavor.log 373 2>&1 | tee $LogDir/llvm.configure-Phase$Phase-$Flavor.log 380 2>&1 | tee $LogDir/llvm.configure-Phase$Phase-$Flavor.log 386 2>&1 | tee $LogDir/llvm.configure-Phase$Phase-$Flavor.log 393 Phase="$1" 402 2>&1 | tee $LogDir/llvm.make-Phase$Phase-$Flavor.log [all …]
|
/external/libopus/celt/ |
D | _kiss_fft_guts.h | 155 /*# define KISS_FFT_COS(phase) TRIG_UPSCALE*floor(MIN(32767,MAX(-32767,.5+32768 * cos (phase)))) 156 # define KISS_FFT_SIN(phase) TRIG_UPSCALE*floor(MIN(32767,MAX(-32767,.5+32768 * sin (phase))))*/ 157 # define KISS_FFT_COS(phase) floor(.5+TWID_MAX*cos (phase)) argument 158 # define KISS_FFT_SIN(phase) floor(.5+TWID_MAX*sin (phase)) argument 161 # define KISS_FFT_COS(phase) _mm_set1_ps( cos(phase) ) argument 162 # define KISS_FFT_SIN(phase) _mm_set1_ps( sin(phase) ) argument 165 # define KISS_FFT_COS(phase) (kiss_fft_scalar) cos(phase) argument 166 # define KISS_FFT_SIN(phase) (kiss_fft_scalar) sin(phase) argument 170 #define kf_cexp(x,phase) \ argument 172 (x)->r = KISS_FFT_COS(phase);\ [all …]
|
/external/tcpdump/tests/ |
D | isakmp4.out | 3 IP 192.1.2.254.500 > 192.1.2.23.500: isakmp: phase 1 I ident 4 IP 192.1.2.23.500 > 192.1.2.254.500: isakmp: phase 1 R ident 5 IP 192.1.2.254.500 > 192.1.2.23.500: isakmp: phase 1 I ident 6 IP 192.1.2.23.500 > 192.1.2.254.500: isakmp: phase 1 R ident 7 IP 192.1.2.254.4500 > 192.1.2.23.4500: NONESP-encap: isakmp: phase 1 I ident[E] 8 IP 192.1.2.23.4500 > 192.1.2.254.4500: NONESP-encap: isakmp: phase 1 R ident[E] 9 IP 192.1.2.254.4500 > 192.1.2.23.4500: NONESP-encap: isakmp: phase 2/others I oakley-quick[E] 10 IP 192.1.2.23.4500 > 192.1.2.254.4500: NONESP-encap: isakmp: phase 2/others R oakley-quick[E] 11 IP 192.1.2.254.4500 > 192.1.2.23.4500: NONESP-encap: isakmp: phase 2/others I oakley-quick[E] 15 IP 192.1.2.23.4500 > 192.1.2.254.4500: NONESP-encap: isakmp: phase 2/others R oakley-quick[E] [all …]
|
/external/swiftshader/third_party/LLVM/utils/release/ |
D | test-release.sh | 184 Phase="$1" 221 2>&1 | tee $LogDir/llvm.configure-Phase$Phase-$Flavor.log 226 Phase="$1" 239 2>&1 | tee $LogDir/llvm.make-Phase$Phase-$Flavor.log 244 2>&1 | tee $LogDir/llvm.install-Phase$Phase-$Flavor.log 249 Phase="$1" 255 2>&1 | tee $LogDir/llvm.check-Phase$Phase-$Flavor.log 257 2>&1 | tee $LogDir/llvm.unittests-Phase$Phase-$Flavor.log 314 # Phase 1: Build llvmCore and llvmgcc42 315 echo "# Phase 1: Building llvmCore" [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/release/ |
D | test-release.sh | 59 echo " -no-compare-files Don't test that phase 2 and 3 files are identical." 260 Phase="$1" 263 echo "[${Flavor} Phase${Phase}] ${Msg}" | tee -a $LogDir/deferred_errors.log 338 Phase="$1" 372 2>&1 | tee $LogDir/llvm.configure-Phase$Phase-$Flavor.log 377 2>&1 | tee $LogDir/llvm.configure-Phase$Phase-$Flavor.log 383 Phase="$1" 392 2>&1 | tee $LogDir/llvm.make-Phase$Phase-$Flavor.log 398 2>&1 | tee $LogDir/llvm.install-Phase$Phase-$Flavor.log 403 Phase="$1" [all …]
|
/external/v8/tools/turbolizer/src/ |
D | source-resolver.ts | 39 phase: string; property 69 interface Phase { interface 85 phases: Array<Phase>; 87 disassemblyPhase: Phase; 106 // Maps phase ids to phases. 108 // Maps phase names to phaseIds. 110 // The disassembly phase is stored separately. 298 recordOrigins(phase) { 299 if (phase.type != "graph") return; 300 for (const node of phase.data.nodes) { [all …]
|
/external/tensorflow/tensorflow/core/common_runtime/ |
D | optimization_registry.cc | 29 Grouping grouping, int phase, std::unique_ptr<GraphOptimizationPass> pass) { in Register() argument 30 groups_[grouping][phase].push_back(std::move(pass)); in Register() 37 for (auto& phase : group->second) { in RunGrouping() local 38 VLOG(1) << "Running optimization phase " << phase.first; in RunGrouping() 39 for (auto& pass : phase.second) { in RunGrouping() 47 "after_phase_", phase.first, "_", pass->name(), "_", in RunGrouping() 55 "after_phase_", phase.first, "_", pass->name(), in RunGrouping() 71 for (auto& phase : group->second) { in LogGrouping() local 72 for (auto& pass : phase.second) { in LogGrouping() 74 << " phase " << phase.first << ": " << pass->name(); in LogGrouping()
|
D | optimization_registry.h | 78 // The key is a 'phase' number. Phases are executed in increasing 79 // order. Within each phase the order of passes is undefined. 95 void Register(Grouping grouping, int phase, 102 // Run all passes in grouping, ordered by phase, with the same 123 int phase, in OptimizationPassRegistration() argument 127 OptimizationPassRegistry::Global()->Register(grouping, phase, in OptimizationPassRegistration() 134 #define REGISTER_OPTIMIZATION(grouping, phase, optimization) \ argument 135 REGISTER_OPTIMIZATION_UNIQ_HELPER(__COUNTER__, grouping, phase, optimization) 137 #define REGISTER_OPTIMIZATION_UNIQ_HELPER(ctr, grouping, phase, optimization) \ argument 138 REGISTER_OPTIMIZATION_UNIQ(ctr, grouping, phase, optimization) [all …]
|
/external/speex/libspeexdsp/ |
D | _kiss_fft_guts.h | 133 # define KISS_FFT_COS(phase) floor(MIN(32767,MAX(-32767,.5+32768 * cos (phase)))) argument 134 # define KISS_FFT_SIN(phase) floor(MIN(32767,MAX(-32767,.5+32768 * sin (phase)))) argument 137 # define KISS_FFT_COS(phase) _mm_set1_ps( cos(phase) ) argument 138 # define KISS_FFT_SIN(phase) _mm_set1_ps( sin(phase) ) argument 141 # define KISS_FFT_COS(phase) (kiss_fft_scalar) cos(phase) argument 142 # define KISS_FFT_SIN(phase) (kiss_fft_scalar) sin(phase) argument 146 #define kf_cexp(x,phase) \ argument 148 (x)->r = KISS_FFT_COS(phase);\ 149 (x)->i = KISS_FFT_SIN(phase);\ 151 #define kf_cexp2(x,phase) \ argument [all …]
|
/external/python/cpython2/Lib/test/ |
D | test_cmath.py | 5 from cmath import phase, polar, rect, pi 398 self.assertAlmostEqual(phase(0), 0.) 399 self.assertAlmostEqual(phase(1.), 0.) 400 self.assertAlmostEqual(phase(-1.), pi) 401 self.assertAlmostEqual(phase(-1.+1E-300j), pi) 402 self.assertAlmostEqual(phase(-1.-1E-300j), -pi) 403 self.assertAlmostEqual(phase(1j), pi/2) 404 self.assertAlmostEqual(phase(-1j), -pi/2) 407 self.assertEqual(phase(complex(0.0, 0.0)), 0.0) 408 self.assertEqual(phase(complex(0.0, -0.0)), -0.0) [all …]
|
/external/wpa_supplicant_8/hostapd/ |
D | hostapd.eap_user | 12 # [2] flag in the end of the line can be used to mark users for tunneled phase 14 # identity can be used in the unencrypted phase 1 and the real user identity 15 # is transmitted only within the encrypted tunnel in phase 2. If non-anonymous 16 # access is needed, two user entries is needed, one for phase 1 and another 17 # with the same username for phase 2. 23 # EAP-PEAP, EAP-TTLS, and EAP-FAST require Phase 2 configuration. 26 # this are to set anonymous phase 1 identity for EAP-PEAP and EAP-TTLS and to 28 # first matching entry is selected, so * should be used as the last phase 1 34 # is only allowed for phase 1 identities. 41 # version based on the Phase 1 identity. Without this flag, the EAP [all …]
|
/external/cldr/tools/java/libs/ |
D | myanmar-tools-1.1.1.jar | ... myanmartools.Phase phase2
com.google.myanmartools.Phase phase3
com.google.myanmartools.Phase phase4
com ... |
/external/skqp/gm/ |
D | dashing.cpp | 16 SkScalar phase = SkIntToScalar(0), in drawline() argument 25 p.setPathEffect(SkDashPathEffect::Make(intervals, 2, phase)); in drawline() 177 SkScalar phase = vals[0] / 2; in onDraw() local 178 paint.setPathEffect(SkDashPathEffect::Make(vals, count, phase)); in onDraw() 211 SkScalar phase, in drawDashedLines() argument 226 p.setPathEffect(SkDashPathEffect::Make(intervals, 2, phase)); in drawDashedLines() 248 // 1on/1off 1x1 squares with phase of 0 - points fastpath in onDraw() 254 // 1on/1off 1x1 squares with phase of .5 - rects fastpath (due to partial squares) in onDraw() 260 // 1on/1off 1x1 squares with phase of 1 - points fastpath in onDraw() 266 // 1on/1off 1x1 squares with phase of 1 and non-integer length - rects fastpath in onDraw() [all …]
|
/external/skia/gm/ |
D | dashing.cpp | 16 SkScalar phase = SkIntToScalar(0), in drawline() argument 25 p.setPathEffect(SkDashPathEffect::Make(intervals, 2, phase)); in drawline() 177 SkScalar phase = vals[0] / 2; in onDraw() local 178 paint.setPathEffect(SkDashPathEffect::Make(vals, count, phase)); in onDraw() 211 SkScalar phase, in drawDashedLines() argument 226 p.setPathEffect(SkDashPathEffect::Make(intervals, 2, phase)); in drawDashedLines() 248 // 1on/1off 1x1 squares with phase of 0 - points fastpath in onDraw() 254 // 1on/1off 1x1 squares with phase of .5 - rects fastpath (due to partial squares) in onDraw() 260 // 1on/1off 1x1 squares with phase of 1 - points fastpath in onDraw() 266 // 1on/1off 1x1 squares with phase of 1 and non-integer length - rects fastpath in onDraw() [all …]
|
/external/python/cpython3/Lib/test/ |
D | test_cmath.py | 6 from cmath import phase, polar, rect, pi 466 self.assertAlmostEqual(phase(0), 0.) 467 self.assertAlmostEqual(phase(1.), 0.) 468 self.assertAlmostEqual(phase(-1.), pi) 469 self.assertAlmostEqual(phase(-1.+1E-300j), pi) 470 self.assertAlmostEqual(phase(-1.-1E-300j), -pi) 471 self.assertAlmostEqual(phase(1j), pi/2) 472 self.assertAlmostEqual(phase(-1j), -pi/2) 475 self.assertEqual(phase(complex(0.0, 0.0)), 0.0) 476 self.assertEqual(phase(complex(0.0, -0.0)), -0.0) [all …]
|
/external/libjpeg-turbo/simd/x86_64/ |
D | jfdctfst-sse2.asm | 106 movdqa xmm4, xmm0 ; transpose coefficients(phase 1) 109 movdqa xmm5, xmm2 ; transpose coefficients(phase 1) 124 movdqa xmm2, xmm6 ; transpose coefficients(phase 1) 127 movdqa xmm5, xmm1 ; transpose coefficients(phase 1) 131 movdqa xmm7, xmm6 ; transpose coefficients(phase 2) 134 movdqa xmm3, xmm2 ; transpose coefficients(phase 2) 143 movdqa xmm7, xmm0 ; transpose coefficients(phase 2) 146 movdqa xmm2, xmm4 ; transpose coefficients(phase 2) 150 movdqa xmm1, xmm0 ; transpose coefficients(phase 3) 153 movdqa xmm5, xmm2 ; transpose coefficients(phase 3) [all …]
|
/external/libunwind_llvm/src/ |
D | Unwind-sjlj.c | 172 // walk each frame until we reach where search phase said to stop in unwind_phase2() 193 // in phase 1 in unwind_phase2() 204 // phase 1 said we would stop at this frame, but we did not... in unwind_phase2() 230 // clean up phase did not resume at the frame that the search phase said it in unwind_phase2() 239 // walk each frame until we reach where search phase said to stop in unwind_phase2_forced() 313 // clean up phase did not resume at the frame that the search phase said it in unwind_phase2_forced() 330 // phase 1: the search phase in _Unwind_SjLj_RaiseException() 335 // phase 2: the clean up phase in _Unwind_SjLj_RaiseException() 391 /// Called by personality handler during phase 2 to get LSDA for current frame. 402 /// Called by personality handler during phase 2 to get register values. [all …]
|
/external/libjpeg-turbo/simd/i386/ |
D | jfdctfst-sse2.asm | 114 movdqa xmm4, xmm0 ; transpose coefficients(phase 1) 117 movdqa xmm5, xmm2 ; transpose coefficients(phase 1) 132 movdqa xmm2, xmm6 ; transpose coefficients(phase 1) 135 movdqa xmm5, xmm1 ; transpose coefficients(phase 1) 139 movdqa xmm7, xmm6 ; transpose coefficients(phase 2) 142 movdqa xmm3, xmm2 ; transpose coefficients(phase 2) 151 movdqa xmm7, xmm0 ; transpose coefficients(phase 2) 154 movdqa xmm2, xmm4 ; transpose coefficients(phase 2) 158 movdqa xmm1, xmm0 ; transpose coefficients(phase 3) 161 movdqa xmm5, xmm2 ; transpose coefficients(phase 3) [all …]
|