Home
last modified time | relevance | path

Searched full:up (Results 1 – 25 of 10092) sorted by relevance

12345678910>>...404

/third_party/skia/m133/third_party/externals/icu/source/test/testdata/
Ddcfmtest.txt36 # 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"
155 format 0.0 up "-1.00" "-1.0"
[all …]
/third_party/icu/icu4c/source/test/testdata/
Ddcfmtest.txt36 # 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/backends/doc/descriptions/
Dpixma.desc35 :comment "All resolutions supported (up to 600DPI)."
65 :comment "All resolutions supported (up to 1200DPI)."
119 :comment "All resolutions supported (up to 600DPI)."
125 :comment "All resolutions supported (up to 600DPI)."
131 :comment "All resolutions supported (up to 600DPI)."
161 :comment "All resolutions supported (up to 600DPI)."
203 :comment "All resolutions supported (up to 600DPI)."
221 :comment "Flatbed and ADF scan. All resolutions supported (up to 600DPI). WIFI not supported"
305 :comment "All resolutions supported (up to 1200DPI)."
311 :comment "All resolutions supported (up to 1200DPI)."
[all …]
/third_party/FreeBSD/sys/dev/usb/
Dusb_process.c56 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 …]
Dusb_process.h73 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/python/Lib/test/
Dtest_xdrlib.py29 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/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DLoopUnrollPass.cpp185 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 …]
DLoopUnrollAndJamPass.cpp147 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/rust/rust/src/tools/clippy/tests/ui/
Dcognitive_complexity.stderr7 = help: you could split it up into multiple smaller functions
16 = help: you could split it up into multiple smaller functions
24 = help: you could split it up into multiple smaller functions
32 = help: you could split it up into multiple smaller functions
40 = help: you could split it up into multiple smaller functions
48 = help: you could split it up into multiple smaller functions
56 = help: you could split it up into multiple smaller functions
64 = help: you could split it up into multiple smaller functions
72 = help: you could split it up into multiple smaller functions
80 = help: you could split it up into multiple smaller functions
[all …]
/third_party/glslang/Test/
Ddce.frag10 ++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/elfutils/libcpu/
Dmemory-access.h97 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/
DHuffmanEncoder.java35 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/typescript/tests/baselines/reference/
DlocalImportNameVsGlobalName.types5 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
DneverType.types63 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 …]
DlocalImportNameVsGlobalName.symbols5 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))
DduplicateAnonymousInners1.js9 // Inner should show up in intellisense
22 // Inner should not show up in intellisense
23 // Outer should show up in intellisense
41 // Inner should show up in intellisense
51 // Inner should not show up in intellisense
52 // Outer should show up in intellisense
/third_party/lzma/CPP/7zip/UI/Common/
DUpdateCallback.cpp148 const CUpdatePair2 &up = (*UpdatePairs)[index]; in Z7_COM7F_IMF()
149 if (newData) *newData = BoolToInt(up.NewData); in Z7_COM7F_IMF()
150 if (newProps) *newProps = BoolToInt(up.NewProps); in Z7_COM7F_IMF()
154 if (up.ExistInArchive()) in Z7_COM7F_IMF()
155 …*indexInArchive = ArcItems ? (*ArcItems)[(unsigned)up.ArcIndex].IndexInServer : (UInt32)(Int32)up.… in Z7_COM7F_IMF()
251 const CUpdatePair2 &up = (*UpdatePairs)[index]; in Z7_COM7F_IMF() local
252 if (up.UseArcProps && up.ExistInArchive() && Arc->GetRawProps) in Z7_COM7F_IMF()
254 ArcItems ? (*ArcItems)[(unsigned)up.ArcIndex].IndexInServer : (UInt32)(Int32)up.ArcIndex, in Z7_COM7F_IMF()
258 if (!up.NewData) in Z7_COM7F_IMF()
261 if (up.IsAnti) in Z7_COM7F_IMF()
[all …]
/third_party/googletest/googletest/test/
Dgtest_environment_test.cc56 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/rust/rust/src/tools/rust-analyzer/crates/ide/src/
Dmove_item.rs11 Up, enumerator
17 // Move item under cursor or selection up and down.
22 // | VS Code | **rust-analyzer: Move item up**
111 Direction::Up => node.prev_sibling(), in move_in_direction()
125 Direction::Up => r.syntax().text_range().contains_range(range), in swap_sibling_in_list()
217 Direction::Up, in test_moves_match_arm_up()
279 Direction::Up, in test_nowhere_to_move()
298 Direction::Up, in test_moves_let_stmt_up()
317 Direction::Up, in test_moves_expr_up()
338 Direction::Up, in test_moves_expr_up()
[all …]
/third_party/grpc/doc/core/
Depoll-polling-engine.md26 …ens in a pollset, multiple threads are woken up and there are no guarantees on which thread actual…
28up. Let's say *Thread P* was calling a `grpc_completion_queue_pluck()` and was actually interested…
34 …ently call `epoll_wait()`, we are guaranteed that only one thread is woken up if one of the `fds` …
36 …dable/writable, all the threads in all the `pollsets` (in which that `fd` is present) are woken up.
47 …eans that for every incoming new channel, all the threads waiting on all the pollsets are woken up.
54 There are other scenarios especially on the client side where an fd can end up being on multiple po…
59 …nto a single epoll-based set. This would ensure that only one thread wakes up in case of an event …
65 * `event_fd`: A level triggered _event fd_ that is used to wake up all the threads waiting on this …
68 In this new model, only one thread wakes up whenever an event of interest happens in an epoll set.
88 …* Wake up all the threads waiting on the smaller `polling_island`'s `epoll_fd` (by signaling the `…
[all …]
/third_party/pulseaudio/sonic/samples/
DREADME5 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/elfutils/libdw/
Dmemory-access.h265 const union unaligned *up = p; in read_2ubyte_unaligned_1() local
267 return bswap_16 (up->u2); in read_2ubyte_unaligned_1()
268 return up->u2; in read_2ubyte_unaligned_1()
273 const union unaligned *up = p; in read_2sbyte_unaligned_1() local
275 return (int16_t) bswap_16 (up->u2); in read_2sbyte_unaligned_1()
276 return up->s2; in read_2sbyte_unaligned_1()
282 const union unaligned *up = p; in read_4ubyte_unaligned_noncvt() local
283 return up->u4; in read_4ubyte_unaligned_noncvt()
288 const union unaligned *up = p; in read_4ubyte_unaligned_1() local
290 return bswap_32 (up->u4); in read_4ubyte_unaligned_1()
[all …]
/third_party/rust/rust/library/std/src/sys/unix/locks/
Dfutex_rwlock.rs54 …// at which point the unlocking thread might be waking up writers, which have priority over reader… in is_read_lockable()
55 // The unlocking thread will clear the readers waiting bit and wake up readers, if necessary. in is_read_lockable()
98 // Wake up a writer if we were the last reader and there's a writer waiting. in read_unlock()
139 // Spin again after waking up. in read_contended()
220 // Spin again after waking up. in write_contended()
225 /// Wake up waiting threads after unlocking.
227 /// If both are waiting, this will wake up only one writer, but will fall
228 /// back to waking up readers if there was no writer to wake up.
240 // care of waking up waiters when it unlocks. in wake_writer_or_readers()
242 // If only writers are waiting, wake one of them up. in wake_writer_or_readers()
[all …]
/third_party/pulseaudio/sonic/debian/
Dcontrol14 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/iptables/extensions/
Dlibxt_conntrack.c517 struct xt_conntrack_mtinfo3 up; in conntrack1_mt_parse() local
519 memset(&up, 0, sizeof(up)); in conntrack1_mt_parse()
520 cinfo_transform(&up, info); in conntrack1_mt_parse()
521 up.origsrc_port_high = up.origsrc_port; in conntrack1_mt_parse()
522 up.origdst_port_high = up.origdst_port; in conntrack1_mt_parse()
523 up.replsrc_port_high = up.replsrc_port; in conntrack1_mt_parse()
524 up.repldst_port_high = up.repldst_port; in conntrack1_mt_parse()
525 cb->data = &up; in conntrack1_mt_parse()
527 if (up.origsrc_port != up.origsrc_port_high || in conntrack1_mt_parse()
528 up.origdst_port != up.origdst_port_high || in conntrack1_mt_parse()
[all …]

12345678910>>...404