Home
last modified time | relevance | path

Searched refs:UP (Results 1 – 25 of 172) sorted by relevance

1234567

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DLoopUnrollPass.cpp185 TargetTransformInfo::UnrollingPreferences UP; in gatherUnrollingPreferences() local
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()
196 UP.MaxCount = std::numeric_limits<unsigned>::max(); 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()
160 unsigned InnerLoopSize, TargetTransformInfo::UnrollingPreferences &UP) { in computeUnrollAndJamCount() argument
170 /*MaxOrZero*/ false, OuterTripMultiple, OuterLoopSize, UP, UseUpperBound); in computeUnrollAndJamCount()
176 UP.Count = 0; in computeUnrollAndJamCount()
183 UP.Count = UnrollAndJamCount; in computeUnrollAndJamCount()
184 UP.Force = true; in computeUnrollAndJamCount()
185 if (UP.AllowRemainder && in computeUnrollAndJamCount()
186 getUnrollAndJammedLoopSize(OuterLoopSize, UP) < UP.Threshold && in computeUnrollAndJamCount()
[all …]
/third_party/node/test/parallel/
Dtest-repl-history-navigation.js51 const UP = { name: 'up' }; variable
84 test: [UP, UP, UP, UP, UP, DOWN, DOWN, DOWN, DOWN, DOWN],
130 '55', UP, UP, UP, UP, UP, UP, ENTER,
204 UP,
205 UP,
206 UP,
208 UP,
342 UP,
345 UP,
446 UP,
[all …]
Dtest-repl-persistent-history.js56 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 …]
Dtest-repl-programmatic-history.js54 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 …]
Dtest-repl-autocomplete.js51 const UP = { name: 'up' }; variable
85 yield UP;
86 yield UP;
/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
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))
DlocalImportNameVsGlobalName.js3 export enum Key { UP, DOWN, LEFT, RIGHT }
11 foo(Key.UP);
32 foo(Key.UP);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/
DNVPTXTargetTransformInfo.cpp145 TTI::UnrollingPreferences &UP) { in getUnrollingPreferences() argument
146 BaseT::getUnrollingPreferences(L, SE, UP); in getUnrollingPreferences()
152 UP.Partial = UP.Runtime = true; in getUnrollingPreferences()
153 UP.PartialThreshold = UP.Threshold / 4; in getUnrollingPreferences()
/third_party/mbedtls/tests/data_files/dir-maxpath/
Dlong.sh36 UP=$( printf "%02d" $((i-1)) )
42 $OPENSSL x509 -req -CA ${UP}.crt -CAkey ${UP}.key -set_serial 1 $OPT \
46 cat ${ME}.crt c${UP}.pem > c${ME}.pem
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DLoopUnrollPeel.cpp282 TargetTransformInfo::UnrollingPreferences &UP, in computePeelCount() argument
287 unsigned TargetPeelCount = UP.PeelCount; in computePeelCount()
288 UP.PeelCount = 0; in computePeelCount()
301 UP.PeelCount = UnrollForcePeelCount; in computePeelCount()
302 UP.PeelProfiledIterations = true; in computePeelCount()
307 if (!UP.AllowPeeling) in computePeelCount()
323 if (2 * LoopSize <= UP.Threshold && UnrollPeelMaxCount > 0) { in computePeelCount()
343 MaxPeelCount = std::min(MaxPeelCount, UP.Threshold / LoopSize - 1); in computePeelCount()
356 UP.PeelCount = DesiredPeelCount; in computePeelCount()
357 UP.PeelProfiledIterations = false; in computePeelCount()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPUTargetTransformInfo.cpp92 TTI::UnrollingPreferences &UP) { in getUnrollingPreferences() argument
94 UP.Threshold = AMDGPU::getIntegerAttribute(F, "amdgpu-unroll-threshold", 300); in getUnrollingPreferences()
95 UP.MaxCount = std::numeric_limits<unsigned>::max(); in getUnrollingPreferences()
96 UP.Partial = true; in getUnrollingPreferences()
120 if (UP.Threshold < MaxBoost && Br->isConditional()) { in getUnrollingPreferences()
127 UP.Threshold += UnrollThresholdIf; in getUnrollingPreferences()
128 LLVM_DEBUG(dbgs() << "Set unroll threshold " << UP.Threshold in getUnrollingPreferences()
131 if (UP.Threshold >= MaxBoost) in getUnrollingPreferences()
151 if (UP.Threshold >= Threshold) in getUnrollingPreferences()
206 UP.Threshold = Threshold; in getUnrollingPreferences()
[all …]
DAMDGPUTargetTransformInfo.h63 TTI::UnrollingPreferences &UP);
141 TTI::UnrollingPreferences &UP);
254 TTI::UnrollingPreferences &UP);
/third_party/typescript/tests/cases/compiler/
DlocalImportNameVsGlobalName.ts2 export enum Key { UP, DOWN, LEFT, RIGHT } enumerator
10 foo(Key.UP);
/third_party/flutter/flutter/dev/tools/gen_keycodes/
DREADME.md96 collections of volume controls would not be exposed via DOWN and UP events,
160 UP, code 0x0100070039. (CAPS LOCK UP)<br>
163 UP, code 0x0000000059 (Y UP)<br>
164 UP, code 0x01000700E1 (LEFT SHIFT UP)<br>
171 UP, code 0x0000000302 (CIRCUMFLEX UP)<br>
173 UP, code 0x0000000065. (E UP).<br>
/third_party/python/Tools/unicode/python-mappings/
DKOI8-U.TXT167 0x84 0x2514 # BOX DRAWINGS LIGHT UP AND RIGHT
168 0x85 0x2518 # BOX DRAWINGS LIGHT UP AND LEFT
172 0x89 0x2534 # BOX DRAWINGS LIGHT UP AND HORIZONTAL
207 0xA9 0x2558 # BOX DRAWINGS UP SINGLE AND RIGHT DOUBLE
208 0xAA 0x2559 # BOX DRAWINGS UP DOUBLE AND RIGHT SINGLE
209 0xAB 0x255A # BOX DRAWINGS DOUBLE UP AND RIGHT
210 0xAC 0x255B # BOX DRAWINGS UP SINGLE AND LEFT DOUBLE
211 #0xAD 0x255C # BOX DRAWINGS UP DOUBLE AND LEFT SINGLE
213 0xAE 0x255D # BOX DRAWINGS DOUBLE UP AND LEFT
227 0xB9 0x2567 # BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE
[all …]
/third_party/pulseaudio/src/modules/
Dmodule-lirc.c94 UP, in io_callback() enumerator
104 volchange = UP; in io_callback()
125 case UP: in io_callback()
Dmodule-mmkbd-evdev.c90 UP, in io_callback() enumerator
103 volchange = UP; in io_callback()
120 case UP: in io_callback()
/third_party/flutter/engine/flutter/shell/platform/android/io/flutter/embedding/android/
DAndroidTouchProcessor.java28 PointerChange.UP
37 int UP = 6; field
267 return PointerChange.UP; in getPointerChangeForAction()
274 return PointerChange.UP; in getPointerChangeForAction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/
DSystemZTargetTransformInfo.cpp241 TTI::UnrollingPreferences &UP) { in getUnrollingPreferences() argument
273 UP.FullUnrollMaxCount = Max; in getUnrollingPreferences()
274 UP.MaxCount = 1; in getUnrollingPreferences()
278 UP.MaxCount = Max; in getUnrollingPreferences()
279 if (UP.MaxCount <= 1) in getUnrollingPreferences()
283 UP.Partial = UP.Runtime = true; in getUnrollingPreferences()
285 UP.PartialThreshold = 75; in getUnrollingPreferences()
286 UP.DefaultUnrollRuntimeCount = 4; in getUnrollingPreferences()
289 UP.AllowExpensiveTripCount = true; in getUnrollingPreferences()
291 UP.Force = true; in getUnrollingPreferences()
/third_party/flutter/skia/third_party/externals/icu/source/data/unidata/
Dppucd.txt929 value;SB;UP;Upper
1275 …CWCM;CWKCF;CWL;gc=Lu;Hex;IDC;IDS;na=LATIN CAPITAL LETTER A;NFKC_CF=0061;SB=UP;sc=Latn;scf=0061;slc…
1276 …CWCM;CWKCF;CWL;gc=Lu;Hex;IDC;IDS;na=LATIN CAPITAL LETTER B;NFKC_CF=0062;SB=UP;sc=Latn;scf=0062;slc…
1277 …CWCM;CWKCF;CWL;gc=Lu;Hex;IDC;IDS;na=LATIN CAPITAL LETTER C;NFKC_CF=0063;SB=UP;sc=Latn;scf=0063;slc…
1278 …CWCM;CWKCF;CWL;gc=Lu;Hex;IDC;IDS;na=LATIN CAPITAL LETTER D;NFKC_CF=0064;SB=UP;sc=Latn;scf=0064;slc…
1279 …CWCM;CWKCF;CWL;gc=Lu;Hex;IDC;IDS;na=LATIN CAPITAL LETTER E;NFKC_CF=0065;SB=UP;sc=Latn;scf=0065;slc…
1280 …CWCM;CWKCF;CWL;gc=Lu;Hex;IDC;IDS;na=LATIN CAPITAL LETTER F;NFKC_CF=0066;SB=UP;sc=Latn;scf=0066;slc…
1281 …WCF;CWCM;CWKCF;CWL;gc=Lu;IDC;IDS;na=LATIN CAPITAL LETTER G;NFKC_CF=0067;SB=UP;sc=Latn;scf=0067;slc…
1282 …WCF;CWCM;CWKCF;CWL;gc=Lu;IDC;IDS;na=LATIN CAPITAL LETTER H;NFKC_CF=0068;SB=UP;sc=Latn;scf=0068;slc…
1283 …WCF;CWCM;CWKCF;CWL;gc=Lu;IDC;IDS;na=LATIN CAPITAL LETTER I;NFKC_CF=0069;SB=UP;sc=Latn;scf=0069;slc…
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonTargetTransformInfo.cpp79 TTI::UnrollingPreferences &UP) { in getUnrollingPreferences() argument
80 UP.Runtime = UP.Partial = true; in getUnrollingPreferences()
86 UP.PeelCount = 2; in getUnrollingPreferences()
/third_party/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/
DNumberFormatICU.java111 RoundingMode mode = RoundingMode.UP; in getRoundingMode()
135 mode = RoundingMode.UP; in getRoundingMode()
223 } else if (roundingMode.equals(RoundingMode.UP)) { in setRoundingMode()
/third_party/ltp/testcases/kernel/sched/tool/
Dtrace_sched.c83 #define UP 1 /* assume UP if no SMP value is specified. */ macro
295 int num_cpus = UP; /* assume machine is an UP machine. */ in main()
331 num_cpus = UP; in main()

1234567