| /third_party/icu/icu4c/source/test/testdata/ |
| D | dcfmtest.txt | 36 # up 77 format 0.00 up "32.045" "32.05" 86 format 0.00 up "-32.045" "-32.05" 95 format @@@ up "1235.00" "1240" 104 format @@@ up "-1235.00" "-1240" 113 format 0.000E0 up "12345" "1.235E4" 120 format 0.0## up "1.00001" "1.001" 121 format 0.0## up "1.0000000000000000000000000000000000000000000000000001" "1.001" 122 format 0.0## up "1.0000000000000000000000000000000000000000000000000000" "1.0" 147 format 0.0 up "-1.00" "-1.0" [all …]
|
| /third_party/FreeBSD/sys/dev/usb/ |
| D | usb_process.c | 56 struct usb_process *up = (struct usb_process*)para; in usb_process_thread() local 67 sched_prio(td, up->up_prio); in usb_process_thread() 70 USB_MTX_LOCK(up->up_mtx); in usb_process_thread() 72 up->up_curtd = td; in usb_process_thread() 74 if (up->up_gone) in usb_process_thread() 104 * first one is sleeping, we end up enabling transmission in usb_process_thread() 122 pm = TAILQ_FIRST(&up->up_qhead); in usb_process_thread() 132 if (pm == TAILQ_FIRST(&up->up_qhead)) { in usb_process_thread() 134 TAILQ_REMOVE(&up->up_qhead, pm, pm_qentry); in usb_process_thread() 143 if (up->up_dsleep) { in usb_process_thread() [all …]
|
| D | usb_process.h | 73 uint8_t usb_proc_is_gone(struct usb_process *up); 74 int usb_proc_create(struct usb_process *up, struct mtx *p_mtx, 76 void usb_proc_drain(struct usb_process *up); 77 void usb_proc_mwait(struct usb_process *up, void *pm0, void *pm1); 78 void usb_proc_free(struct usb_process *up); 79 void *usb_proc_msignal(struct usb_process *up, void *pm0, void *pm1); 80 void usb_proc_rewakeup(struct usb_process *up); 81 int usb_proc_is_called_from(struct usb_process *up);
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
| D | LoopUnrollPass.cpp | 185 TargetTransformInfo::UnrollingPreferences UP; in gatherUnrollingPreferences() local 187 // Set up the defaults in gatherUnrollingPreferences() 188 UP.Threshold = OptLevel > 2 ? 300 : 150; in gatherUnrollingPreferences() 189 UP.MaxPercentThresholdBoost = 400; in gatherUnrollingPreferences() 190 UP.OptSizeThreshold = 0; in gatherUnrollingPreferences() 191 UP.PartialThreshold = 150; in gatherUnrollingPreferences() 192 UP.PartialOptSizeThreshold = 0; in gatherUnrollingPreferences() 193 UP.Count = 0; in gatherUnrollingPreferences() 194 UP.PeelCount = 0; in gatherUnrollingPreferences() 195 UP.DefaultUnrollRuntimeCount = 8; in gatherUnrollingPreferences() [all …]
|
| D | LoopUnrollAndJamPass.cpp | 147 TargetTransformInfo::UnrollingPreferences &UP) { in getUnrollAndJammedLoopSize() argument 148 assert(LoopSize >= UP.BEInsns && "LoopSize should not be less than BEInsns!"); in getUnrollAndJammedLoopSize() 149 return static_cast<uint64_t>(LoopSize - UP.BEInsns) * UP.Count + UP.BEInsns; in getUnrollAndJammedLoopSize() 152 // Calculates unroll and jam count and writes it to UP.Count. Returns true if 160 unsigned InnerLoopSize, TargetTransformInfo::UnrollingPreferences &UP) { in computeUnrollAndJamCount() argument 161 // First up use computeUnrollCount from the loop unroller to get a count in computeUnrollAndJamCount() 163 // unrolling we leave to the unroller. This uses UP.Threshold / in computeUnrollAndJamCount() 164 // UP.PartialThreshold / UP.MaxCount to come up with sensible loop values. in computeUnrollAndJamCount() 170 /*MaxOrZero*/ false, OuterTripMultiple, OuterLoopSize, UP, UseUpperBound); in computeUnrollAndJamCount() 176 UP.Count = 0; in computeUnrollAndJamCount() [all …]
|
| /third_party/python/Lib/test/ |
| D | test_xdrlib.py | 29 up = xdrlib.Unpacker(data) 31 self.assertEqual(up.get_position(), 0) 33 self.assertEqual(up.unpack_int(), 42) 34 self.assertEqual(up.unpack_int(), -17) 35 self.assertEqual(up.unpack_uint(), 9) 36 self.assertTrue(up.unpack_bool() is True) 39 pos = up.get_position() 40 self.assertTrue(up.unpack_bool() is False) 43 up.set_position(pos) 44 self.assertTrue(up.unpack_bool() is False) [all …]
|
| /third_party/elfutils/libcpu/ |
| D | memory-access.h | 97 const union unaligned *up = p; in read_2ubyte_unaligned() local 99 return bswap_16 (up->u2); in read_2ubyte_unaligned() 100 return up->u2; in read_2ubyte_unaligned() 105 const union unaligned *up = p; in read_2sbyte_unaligned() local 107 return (int16_t) bswap_16 (up->u2); in read_2sbyte_unaligned() 108 return up->s2; in read_2sbyte_unaligned() 114 const union unaligned *up = p; in read_4ubyte_unaligned_noncvt() local 115 return up->u4; in read_4ubyte_unaligned_noncvt() 120 const union unaligned *up = p; in read_4ubyte_unaligned() local 122 return bswap_32 (up->u4); in read_4ubyte_unaligned() [all …]
|
| /third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/conversion/eot/ |
| D | HuffmanEncoder.java | 35 short up; field in HuffmanEncoder.TreeNode 58 tree[i].up = (short)(i / 2); in HuffmanEncoder() 96 if (tree[tree[i].left].up != i) { in checkTree() 97 return "tree[tree[" + i + "].left].up == " + tree[tree[i].left].up + ", expected " + i; in checkTree() 99 if (tree[tree[i].right].up != i) { in checkTree() 100 return "tree[tree[" + i + "].right].up == " + tree[tree[i].right].up + ", expected " + i; in checkTree() 130 int a = tree[i].up; in checkTree() 147 for (; a != ROOT; a = tree[a].up) { in updateWeight() 167 short upa = tree[a].up; in swapNodes() 168 short upb = tree[b].up; in swapNodes() [all …]
|
| /third_party/glslang/Test/ |
| D | dce.frag | 10 ++c; // should still show up in AST 14 flag ? ++c : ++c; // both should still show up in AST 20 ++c; // should still show up in AST 23 ++c; // should still show up in AST 29 ++c; // should still show up in AST 34 ++c; // should still show up in AST 37 ++c; // should still show up in AST 43 ++c; // should still show up in AST 46 int foo() // not called, but should still show up in AST 50 ++c; // should still show up in AST [all …]
|
| /third_party/lzma/CPP/7zip/UI/Common/ |
| D | UpdateCallback.cpp | 154 const CUpdatePair2 &up = (*UpdatePairs)[index]; in Z7_COM7F_IMF() 155 if (newData) *newData = BoolToInt(up.NewData); in Z7_COM7F_IMF() 156 if (newProps) *newProps = BoolToInt(up.NewProps); in Z7_COM7F_IMF() 160 if (up.ExistInArchive()) in Z7_COM7F_IMF() 161 …*indexInArchive = ArcItems ? (*ArcItems)[(unsigned)up.ArcIndex].IndexInServer : (UInt32)(Int32)up.… in Z7_COM7F_IMF() 256 const CUpdatePair2 &up = (*UpdatePairs)[index]; in Z7_COM7F_IMF() local 257 if (up.UseArcProps && up.ExistInArchive() && Arc->GetRawProps) in Z7_COM7F_IMF() 259 ArcItems ? (*ArcItems)[(unsigned)up.ArcIndex].IndexInServer : (UInt32)(Int32)up.ArcIndex, in Z7_COM7F_IMF() 263 if (!up.NewData) in Z7_COM7F_IMF() 266 if (up.IsAnti) in Z7_COM7F_IMF() [all …]
|
| /third_party/googletest/googletest/test/ |
| D | gtest_environment_test.cc | 56 ADD_FAILURE() << "Expected non-fatal failure in global set-up."; in SetUp() 59 FAIL() << "Expected fatal failure in global set-up."; in SetUp() 113 // be generated by the global set-up. 134 // set-up is successful. in main() 139 "The tests should run, as the global set-up should generate no " in main() 142 "The global tear-down should run, as the global set-up was run."); in main() 145 // set-up generates no fatal failure. in main() 147 "RUN_ALL_TESTS() should return non-zero, as both the global set-up " in main() 150 "The tests should run, as the global set-up should generate no " in main() 153 "The global tear-down should run, as the global set-up was run."); in main() [all …]
|
| /third_party/typescript/tests/baselines/reference/ |
| D | localImportNameVsGlobalName.types | 5 export enum Key { UP, DOWN, LEFT, RIGHT } 7 >UP : Key.UP 25 foo(Key.UP); 26 >foo(Key.UP) : void 28 >Key.UP : Key.UP 30 >UP : Key.UP
|
| D | neverType.types | 63 function move1(direction: "up" | "down") { 64 >move1 : (direction: "up" | "down") => 1 | -1 65 >direction : "up" | "down" 68 >direction : "up" | "down" 70 case "up": 71 >"up" : "up" 89 function move2(direction: "up" | "down") { 90 >move2 : (direction: "up" | "down") => 1 | -1 91 >direction : "up" | "down" 93 return direction === "up" ? 1 : [all …]
|
| D | localImportNameVsGlobalName.symbols | 5 export enum Key { UP, DOWN, LEFT, RIGHT } 7 >UP : Symbol(Key.UP, Decl(localImportNameVsGlobalName.ts, 1, 19)) 26 foo(Key.UP); 28 >Key.UP : Symbol(Key.UP, Decl(localImportNameVsGlobalName.ts, 1, 19)) 30 >UP : Symbol(Key.UP, Decl(localImportNameVsGlobalName.ts, 1, 19))
|
| /third_party/node/deps/npm/node_modules/@colors/colors/lib/custom/ |
| D | zalgo.js | 5 'up': [ property 41 var all = [].concat(soul.up, soul.down, soul.mid); 62 options['up'] = 63 typeof options['up'] !== 'undefined' ? options['up'] : true; 76 counts = {'up': 0, 'down': 0, 'mid': 0}; property 79 counts.up = randomNumber(8); 84 counts.up = randomNumber(16) + 3; 89 counts.up = randomNumber(8) + 1; 95 var arr = ['up', 'mid', 'down'];
|
| /third_party/node/test/parallel/ |
| D | test-repl-history-navigation.js | 52 const UP = { name: 'up' }; variable 86 test: [UP, UP, UP, UP, UP, UP, DOWN, DOWN, DOWN, DOWN, DOWN, DOWN], 134 '55', UP, UP, UP, UP, UP, UP, UP, ENTER, 140 // UP 143 // UP - skipping 5 + 5 146 // UP - skipping const foo = true 149 // UP, UP 208 UP, 209 UP, 210 UP, [all …]
|
| D | test-repl-programmatic-history.js | 54 const UP = { name: 'up' }; variable 80 test: [UP], 85 test: [UP], 90 test: [UP, CLEAR], 95 test: [UP, '21', ENTER, "'42'", ENTER], 107 test: [UP, UP, UP, DOWN, ENTER], 121 test: [UP, UP, DOWN, CLEAR], 133 test: [UP], 146 test: [UP], 155 test: [UP], [all …]
|
| D | test-repl-persistent-history.js | 56 const UP = { name: 'up' }; variable 82 test: [UP], 87 test: [UP], 92 test: [UP, CLEAR], 97 test: [UP, '21', ENTER, "'42'", ENTER], 107 test: [UP, UP, CLEAR, ENTER, DOWN, CLEAR, ENTER, UP, ENTER], 125 test: [UP, UP, DOWN, CLEAR], 137 test: [UP], 150 test: [UP], 159 test: [UP], [all …]
|
| /third_party/elfutils/libdw/ |
| D | memory-access.h | 259 const union unaligned *up = p; in read_2ubyte_unaligned_1() local 261 return bswap_16 (up->u2); in read_2ubyte_unaligned_1() 262 return up->u2; in read_2ubyte_unaligned_1() 267 const union unaligned *up = p; in read_2sbyte_unaligned_1() local 269 return (int16_t) bswap_16 (up->u2); in read_2sbyte_unaligned_1() 270 return up->s2; in read_2sbyte_unaligned_1() 276 const union unaligned *up = p; in read_4ubyte_unaligned_noncvt() local 277 return up->u4; in read_4ubyte_unaligned_noncvt() 282 const union unaligned *up = p; in read_4ubyte_unaligned_1() local 284 return bswap_32 (up->u4); in read_4ubyte_unaligned_1() [all …]
|
| /third_party/pulseaudio/sonic/samples/ |
| D | README | 5 This is a sonic 2X sped-up version of a public domain librivox.org recording, from 9 This is the same recording as sonic.wav, but sped up using soundtouch, which 10 uses WSOLA rather than the sonic algorithm. Even at 2X speed up, you should be 17 This is his voice sped up by 2X using Sonic. 23 though Sonic can speed up espeak to much faster rates. 27 sonic 2.6 out.wav espeak_sonic.wav'. Sonic sped it up 2.6X, which is about the 28 same speed as espeak at -s450. I personally feel that the sonic sped up sample
|
| /third_party/pulseaudio/sonic/debian/ |
| D | control | 14 Description: Simple utility to speed up or slow down speech 16 and speeds them up or slows them down, with low distortion. 18 high quality at speed up factors well over 2X. 24 Description: Simple library to speed up or slow down speech 26 libsonic is a very simple library for speeding up or slowing 30 high quality at speed up factors well over 2X. 41 high quality at speed up factors well over 2X.
|
| /third_party/libwebsockets/lib/drivers/button/ |
| D | README.md | 4 up to 31 buttons for resource efficiency. Each controller has two OS timers, 24 the button is pulled-up, that's the downgoing edge only. This avoids any 113 are not reported. "up" and "down" events are reported for the buttons in case 122 up|The button has come up, useful for duration-based response 147 ### Relationship between up / down and classification 151 click|down-up-click (it's classified when it went up and cannot be a longclick) 152 longclick|down-longclick-up (it's classified while still down) 153 doubleclick|down-up-down-doubleclick-up (classified as soon as second click down long enough)
|
| /third_party/libinput/tools/ |
| D | libinput-measure-touchpad-tap.py | 67 def up(self): member in Touch 70 @up.setter 71 def up(self, up): member in Touch 72 assert up > self.down 73 self._up = up 81 return self.up - self.down 133 self.touches[-1].up = tv2us(event.sec, event.usec) 204 # 2: touch up time in ms, offset by first event 206 # Group 2, sorted by touch down-up delta time (ascending) 208 # 5: touch up time in ms, offset by first event [all …]
|
| /third_party/python/Lib/encodings/ |
| D | cp866.py | 108 0x00bc: 0x255d, # BOX DRAWINGS DOUBLE UP AND LEFT 109 0x00bd: 0x255c, # BOX DRAWINGS UP DOUBLE AND LEFT SINGLE 110 0x00be: 0x255b, # BOX DRAWINGS UP SINGLE AND LEFT DOUBLE 112 0x00c0: 0x2514, # BOX DRAWINGS LIGHT UP AND RIGHT 113 0x00c1: 0x2534, # BOX DRAWINGS LIGHT UP AND HORIZONTAL 120 0x00c8: 0x255a, # BOX DRAWINGS DOUBLE UP AND RIGHT 122 0x00ca: 0x2569, # BOX DRAWINGS DOUBLE UP AND HORIZONTAL 127 0x00cf: 0x2567, # BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE 128 0x00d0: 0x2568, # BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE 131 0x00d3: 0x2559, # BOX DRAWINGS UP DOUBLE AND RIGHT SINGLE [all …]
|
| D | cp862.py | 108 0x00bc: 0x255d, # BOX DRAWINGS DOUBLE UP AND LEFT 109 0x00bd: 0x255c, # BOX DRAWINGS UP DOUBLE AND LEFT SINGLE 110 0x00be: 0x255b, # BOX DRAWINGS UP SINGLE AND LEFT DOUBLE 112 0x00c0: 0x2514, # BOX DRAWINGS LIGHT UP AND RIGHT 113 0x00c1: 0x2534, # BOX DRAWINGS LIGHT UP AND HORIZONTAL 120 0x00c8: 0x255a, # BOX DRAWINGS DOUBLE UP AND RIGHT 122 0x00ca: 0x2569, # BOX DRAWINGS DOUBLE UP AND HORIZONTAL 127 0x00cf: 0x2567, # BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE 128 0x00d0: 0x2568, # BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE 131 0x00d3: 0x2559, # BOX DRAWINGS UP DOUBLE AND RIGHT SINGLE [all …]
|