Home
last modified time | relevance | path

Searched +full:40 +full:- +full:svt (Results 1 – 25 of 42) sorted by relevance

12

/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DTargetLoweringBase.cpp1 //===- TargetLoweringBase.cpp - Implement the TargetLoweringBase class ----===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
67 "jump-is-expensive", cl::init(false),
72 ("min-jump-table-entries", cl::init(4), cl::Hidden,
76 ("max-jump-table-size", cl::init(UINT_MAX), cl::Hidden,
81 JumpTableDensity("jump-table-density", cl::init(10), cl::Hidden,
85 /// Minimum jump table density for -Os or -Oz functions.
87 "optsize-jump-table-density", cl::init(40), cl::Hidden,
[all …]
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/CodeGen/
H A DTargetLoweringBase.cpp1 //===- TargetLoweringBase.cpp - Implement the TargetLoweringBase class ----===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
69 "jump-is-expensive", cl::init(false),
74 ("min-jump-table-entries", cl::init(4), cl::Hidden,
78 ("max-jump-table-size", cl::init(UINT_MAX), cl::Hidden,
83 JumpTableDensity("jump-table-density", cl::init(10), cl::Hidden,
87 /// Minimum jump table density for -Os or -Oz functions.
89 "optsize-jump-table-density", cl::init(40), cl::Hidden,
[all …]
/aosp_15_r20/external/mesa3d/src/gallium/drivers/svga/ci/
H A Dtraces-vmware.yml2 ---
3 traces-db:
4 download-url: "https://s3.freedesktop.org/mesa-tracie-public/"
7 bgfx/01-cubes.rdc:
8 gl-vmware-llvmpipe:
10 bgfx/02-metaballs.rdc:
11 gl-vmware-llvmpipe:
13 bgfx/03-raymarch.rdc:
14 gl-vmware-llvmpipe:
16 bgfx/04-mesh.rdc:
[all …]
/aosp_15_r20/external/mesa3d/src/gallium/drivers/llvmpipe/ci/
H A Dtraces-llvmpipe.yml2 ---
3 traces-db:
4 download-url: "https://s3.freedesktop.org/mesa-tracie-public/"
7 0ad/0ad-v2.trace:
8 gl-vmware-llvmpipe:
10 bgfx/01-cubes.rdc:
11 gl-vmware-llvmpipe:
13 bgfx/02-metaballs.rdc:
14 gl-vmware-llvmpipe:
16 bgfx/03-raymarch.rdc:
[all …]
/aosp_15_r20/external/llvm/include/llvm/CodeGen/
H A DMachineValueType.h1 //===- CodeGen/MachineValueType.h - Machine-Level types ---------*- C++ -*-===//
8 //===----------------------------------------------------------------------===//
10 // This file defines the set of machine-level target independent types which
13 //===----------------------------------------------------------------------===//
26 /// MVT - Machine Value Type. Every type that is supported natively by some
32 // INVALID_SIMPLE_VALUE_TYPE - Simple value types less than zero are
34 INVALID_SIMPLE_VALUE_TYPE = -1,
38 Other = 0, // This is a non-standard value
54 ppcf128 = 12, // This is a PPC 128-bit floating point value
89 v4i32 = 40, // 4 x i32
[all …]
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp1 //===- LegalizeDAG.cpp - Implement SelectionDAG::Legalize -----------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
60 /// Keeps track of state when getting the sign of a floating-point value as an
74 //===----------------------------------------------------------------------===//
131 /// e.g. <v4i32> <0, 1, 0, 1> -> v8i16 <0, 1, 2, 3, 0, 1, 2, 3>
203 UpdatedNodes->insert(N); in ReplacedNode()
207 LLVM_DEBUG(dbgs() << " ... replacing: "; Old->dump(&DAG); in ReplaceNode()
208 dbgs() << " with: "; New->dump(&DAG)); in ReplaceNode()
[all …]
/aosp_15_r20/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp1 //===-- LegalizeDAG.cpp - Implement SelectionDAG::Legalize ----------------===//
8 //===----------------------------------------------------------------------===//
12 //===----------------------------------------------------------------------===//
46 //===----------------------------------------------------------------------===//
104 /// e.g. <v4i32> <0, 1, 0, 1> -> v8i16 <0, 1, 2, 3, 0, 1, 2, 3>
171 UpdatedNodes->insert(N); in ReplacedNode()
174 DEBUG(dbgs() << " ... replacing: "; Old->dump(&DAG); in ReplaceNode()
175 dbgs() << " with: "; New->dump(&DAG)); in ReplaceNode()
177 assert(Old->getNumValues() == New->getNumValues() && in ReplaceNode()
182 UpdatedNodes->insert(New); in ReplaceNode()
[all …]
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp1 //===-- TargetLowering.cpp - Implement the TargetLowering class -----------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
57 if (F.getFnAttribute("disable-tail-calls").getValueAsBool()) in isInTailCallPosition()
95 // for the function live-in value of register Reg) in parametersInCSRMatch()
97 if (Value->getOpcode() == ISD::AssertZext) in parametersInCSRMatch()
99 if (Value->getOpcode() != ISD::CopyFromReg) in parametersInCSRMatch()
101 Register ArgReg = cast<RegisterSDNode>(Value->getOperand(1))->getReg(); in parametersInCSRMatch()
112 IsSExt = Call->paramHasAttr(ArgIdx, Attribute::SExt); in setAttributes()
[all …]
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DMachineValueType.h1 //===- Support/MachineValueType.h - Machine-Level types ---------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file defines the set of machine-level target independent types which
12 //===----------------------------------------------------------------------===//
39 Other = 1, // This is a non-standard value
55 ppcf128 = 13, // This is a PPC 128-bit floating point value
88 v32i16 = 40, // 32 x i16
212 Glue = 131, // This glues nodes together during pre-RA sched
246 // Any floating-point or vector floating-point value. This is used
[all …]
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Support/
H A DMachineValueType.h1 //===- Support/MachineValueType.h - Machine-Level types ---------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file defines the set of machine-level target independent types which
12 //===----------------------------------------------------------------------===//
34 // clang-format off
42 Other = 1, // This is a non-standard value
61 ppcf128 = 16, // This is a PPC 128-bit floating point value
92 v128i8 = 40, // 128 x i8
282 Glue = 189, // This glues nodes together during pre-RA sched
[all …]
/aosp_15_r20/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/testdata/src/test/assets/media/ts/
H A Dsample_h265.ts3- 3.3+1-f94b0d3273G�7d:[Mac OS X][clang 11.0.0][64 bit] 8bit+10bit+12bit - H.265/HEVC codec - Co…
/aosp_15_r20/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/testdata/src/test/assets/media/ts/
H A Dsample_h265.ts3- 3.3+1-f94b0d3273G�7d:[Mac OS X][clang 11.0.0][64 bit] 8bit+10bit+12bit - H.265/HEVC codec - Co…
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp1 //===-- X86ISelLowering.cpp - X86 DAG Lowering Implementation -------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 //===----------------------------------------------------------------------===//
66 #define DEBUG_TYPE "x86-isel"
71 "x86-experimental-pref-loop-alignment", cl::init(4),
74 "(the last x86-experimental-pref-loop-alignment bits"
80 "x86-enable-old-knl-abi", cl::init(false),
86 "mul-constant-optimization", cl::init(true),
92 "x86-experimental-unordered-atomic-isel", cl::init(false),
[all …]
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp1 //===-- X86ISelLowering.cpp - X86 DAG Lowering Implementation -------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 //===----------------------------------------------------------------------===//
71 #define DEBUG_TYPE "x86-isel"
76 "x86-experimental-pref-innermost-loop-alignment", cl::init(4),
80 "alignment set by x86-experimental-pref-loop-alignment."),
84 "mul-constant-optimization", cl::init(true),
90 "x86-experimental-unordered-atomic-isel", cl::init(false),
103 DAG.getContext()->diagnose( in errorUnsupported()
[all …]
/aosp_15_r20/external/toybox/android/device/generated/
H A Dflags.h243 // cd >1LP[-LP]
245 #define OPTSTR_cd ">1LP[-LP]"
275 // chgrp <2h(no-dereference)PLHRfv[-HLP] <2h(no-dereference)PLHRfv[-HLP]
277 #define OPTSTR_chgrp "<2h(no-dereference)PLHRfv[-HLP]"
290 // chmod <2?vfR[-vf] <2?vfR[-vf]
292 #define OPTSTR_chmod "<2?vfR[-vf]"
404 …verbose)nF(remove-destination)fit:T[-HLPd][-niu][+Rr] <1(preserve):;D(parents)RHLPprudaslv(verbose…
406 …TSTR_cp "<1(preserve):;D(parents)RHLPprudaslv(verbose)nF(remove-destination)fit:T[-HLPd][-niu][+Rr…
432-devno)(renumber-inodes)(quiet)(no-preserve-owner)R(owner):md(make-directories)uLH:p|i|t|F:v(verbo…
434 #define OPTSTR_cpio "(ignore-devno)(renumber-inodes)(quiet)(no-preserve-owner)R(owner):md(make-dire…
[all …]
/aosp_15_r20/external/toybox/android/linux/generated/
H A Dflags.h243 // cd >1LP[-LP]
245 #define OPTSTR_cd ">1LP[-LP]"
275 // chgrp <2h(no-dereference)PLHRfv[-HLP]
277 #define OPTSTR_chgrp "<2h(no-dereference)PLHRfv[-HLP]"
290 // chmod <2?vfR[-vf] <2?vfR[-vf]
292 #define OPTSTR_chmod "<2?vfR[-vf]"
404 …verbose)nF(remove-destination)fit:T[-HLPd][-niu][+Rr] <1(preserve):;D(parents)RHLPprudaslv(verbose…
406 …TSTR_cp "<1(preserve):;D(parents)RHLPprudaslv(verbose)nF(remove-destination)fit:T[-HLPd][-niu][+Rr…
432-devno)(renumber-inodes)(quiet)(no-preserve-owner)R(owner):md(make-directories)uLH:p|i|t|F:v(verbo…
434 #define OPTSTR_cpio "(ignore-devno)(renumber-inodes)(quiet)(no-preserve-owner)R(owner):md(make-dire…
[all …]
/aosp_15_r20/external/toybox/android/mac/generated/
H A Dflags.h243 // cd >1LP[-LP]
245 #define OPTSTR_cd ">1LP[-LP]"
275 // chgrp <2h(no-dereference)PLHRfv[-HLP]
277 #define OPTSTR_chgrp "<2h(no-dereference)PLHRfv[-HLP]"
290 // chmod <2?vfR[-vf] <2?vfR[-vf]
292 #define OPTSTR_chmod "<2?vfR[-vf]"
404 …verbose)nF(remove-destination)fit:T[-HLPd][-niu][+Rr] <1(preserve):;D(parents)RHLPprudaslv(verbose…
406 …TSTR_cp "<1(preserve):;D(parents)RHLPprudaslv(verbose)nF(remove-destination)fit:T[-HLPd][-niu][+Rr…
432-devno)(renumber-inodes)(quiet)(no-preserve-owner)R(owner):md(make-directories)uLH:p|i|t|F:v(verbo…
434 #define OPTSTR_cpio "(ignore-devno)(renumber-inodes)(quiet)(no-preserve-owner)R(owner):md(make-dire…
[all …]
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp1 //===-- PPCISelLowering.cpp - PPC DAG Lowering Implementation -------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
104 #define DEBUG_TYPE "ppc-lowering"
106 static cl::opt<bool> DisablePPCPreinc("disable-ppc-preinc",
109 static cl::opt<bool> DisableILPPref("disable-ppc-ilp-pref",
112 static cl::opt<bool> DisablePPCUnaligned("disable-ppc-unaligned",
115 static cl::opt<bool> DisableSCO("disable-ppc-sco",
118 static cl::opt<bool> DisableInnermostLoopAlign32("disable-ppc-innermost-loop-align32",
[all …]
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp1 //===-- PPCISelLowering.cpp - PPC DAG Lowering Implementation -------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
104 #define DEBUG_TYPE "ppc-lowering"
106 static cl::opt<bool> DisablePPCPreinc("disable-ppc-preinc",
109 static cl::opt<bool> DisableILPPref("disable-ppc-ilp-pref",
112 static cl::opt<bool> DisablePPCUnaligned("disable-ppc-unaligned",
115 static cl::opt<bool> DisableSCO("disable-ppc-sco",
118 static cl::opt<bool> DisableInnermostLoopAlign32("disable-ppc-innermost-loop-align32",
[all …]
/aosp_15_r20/external/cpuinfo/test/dmesg/
H A Dgalaxy-a8-2018.log5 [ 0.000000] [0: swapper: 0] Linux version 4.4.13-12719828 (dpi@SWHE7718) (gcc version…
14 … swapper: 0] Reserved memory: initialized node crypto, compatible id exynos8890-ion,crypto
16 …swapper: 0] Reserved memory: initialized node video_stream, compatible id exynos8890-ion,vstream
18 [ 0.000000] [0: swapper: 0] sec_debug_magic_setup: Reserved Mem(0x80000000, 0x1000) -
38 [ 0.000000] [0: swapper: 0] WARNING: x1-x3 nonzero in violation of boot protocol:
44 [ 0.000000] [0: swapper: 0] pcpu-alloc: s30464 r0 d30976 u61440 alloc=15*4096
45 [ 0.000000] [0: swapper: 0] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0]…
46 [ 0.000000] [0: swapper: 0] Detected VIPT I-cache on CPU0
49 …c pmic_info=11 ccic_info=1 cordon=5d6062b282f63b22da2761427025255c connie=SM-A530F_OPEN_EUR_6d4cde…
50 [ 0.000000] [0: swapper: 0] exynos-snapshot: try to reserve dedicated memory : 0x9120…
[all …]
/aosp_15_r20/packages/inputmethods/LatinIME/dictionaries/
Dde_wordlist.combined.gz
/aosp_15_r20/external/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp1 //===-- PPCISelLowering.cpp - PPC DAG Lowering Implementation -------------===//
8 //===----------------------------------------------------------------------===//
12 //===----------------------------------------------------------------------===//
49 #define DEBUG_TYPE "ppc-lowering"
51 static cl::opt<bool> DisablePPCPreinc("disable-ppc-preinc",
54 static cl::opt<bool> DisableILPPref("disable-ppc-ilp-pref",
57 static cl::opt<bool> DisablePPCUnaligned("disable-ppc-unaligned",
60 static cl::opt<bool> DisableSCO("disable-ppc-sco",
96 // PowerPC has pre-inc load and store's. in PPCTargetLowering()
144 // This is used in the ppcf128->int sequence. Note it has different semantics in PPCTargetLowering()
[all …]
/aosp_15_r20/external/cldr/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/
H A D2013-1_UNLOCODE_CodeListPart1.csv2 ,"AD","ALV","Andorra la Vella","Andorra la Vella",,"--34-6--","AI","0601",,"4230N 00131E",""
3 ,"AD","CAN","Canillo","Canillo",,"--3-----","RL","0307",,"4234N 00135E",
4 ,"AD","ENC","Encamp","Encamp",,"--3-----","RL","0307",,"4232N 00134E",
5 ,"AD","ESC","Escaldes-Engordany","Escaldes-Engordany",,"--3-----","RL","0307",,"4231N 00133E",
6 ,"AD","FMO","La Farga de Moles","La Farga de Moles",,"--3----B","RQ","0307",,,
7 ,"AD","LMA","La Massana","La Massana",,"--3-----","RL","0307",,"4234N 00129E",
8 ,"AD","ORD","Ordino","Ordino",,"--3-----","RL","0307",,"4233N 00131E",
9 ,"AD","PAS","Pas de la Casa","Pas de la Casa",,"--3----B","RL","0307",,"4233N 00144E",
10 ,"AD","SJL","Sant Juli� de L�ria","Sant Julia de Loria",,"--3-----","RL","1101",,"4228N 00130E",""
11 ,"AD","SCO","Santa Coloma","Santa Coloma",,"--3-----","RL","0307",,"4230N 00130E",
[all …]
/aosp_15_r20/packages/apps/TV/tuner/tests/assets/
Dcapture_kqed.ts3 …�0����d��v��K-�E� ���ǟ�CxR�L�q�TP�cE��� �)�N���Q]�� ,���0� H����n��A!P�O�8�5…
9 �)HgƖ,��Lg3lʔ(��$��Lw,J�8p"tM����K���SKq���-��XGkĊ�O�׾��a-�p�ˆ�,�n�a�S����F�����i�g�[��VSK�…
11 …I�&T]�n�]��.�� �+\G�,�J���� �=p<x���]_��H�Տ�>�6n)Z�D�պ�� �-PG�<�G�.��E�����0���WKaزd-�l�A�ۦ�…
18 *L� X]�F���#��`?@A�g�d8�-B�,PE�<�.�R���+T_�~�*�n�i�s�&�V��*����@�}8��V���i%�`�q� �־��AmG�P�…
22 ���Iw*T�@�͂�rl�d_/�̮Vna�_���[���C�߶��1�ݰ��yݰj1�$Bq���M�#�)�p��ˋ���N�ժ���-��(��G�G{L��w��n�…
23 dAlH��ʯ;��I�$�z�1r&F�(He–,��Lg#L�(�z�!RS�f%��(�>��"y��b]-�]���C�φ�#��0�Ӵ��a5� ZQ�f�m�c�[�R�…
25 ��Ζ�WQ]�r�2�٪^Y_�b�u.8{l� l]�P:�����;l7v���e7�(ZY�v�=j#^�d�u�+Nkƞ$�� h� t�ñ��-�';
26-�H����G�i=��}�����ue6��s�����~Ì�߮Nq<bܨPE����q�7f+N���O��>I��}�����$Biʆ�W��n#�L���;�٠�…
28 �hQ=�*z�����R���#�:�.VI�>tG�:~ ˍ���(�-+: t�:����h-B� Ŋ�O�߾��q
/aosp_15_r20/cts/tests/tests/graphics/res/raw/
H A Dsample_raf.raf1 FUJIFILMCCD-RAW 0201FF4K2101X20�����������������������������0101�����������������������������V…
24 X�n)JO�j�ܯ�g��+���Y��ƭ׳Q�����}�Ku՟������|Y�>|7m.�D�5E������Ψ-&܏��
28 ��O�$���b8n|K��#��.�w�3Z5�Ĉ6� c$c=������~,~�����(ſxb� �Z�Z��-�h��7�Y��I��^;�Ꮙ���cP…
29 …-&��D�\��M � <��'�z���\-�Z������~�>Yu/k�ҝ+�~���yy�_�]�/�ώ����Z>�ዩf�i�M�|F�H�ܹ�#������i…
33 …ي���/�q��?w�U��Ͻr��dsQ0��ZXşſ����������uM}K� �V��xZ���Z��u�Mre{���ܛW-�������j��<W��_�…
37 …�� ���c�h�*��d�*]�1�!S<�[%��� t�1�b�KJ������M�G��+N4*�-S_��������}��L�S�5�%������6�%�5f-���…
39 >����7�,�`���J�+����~ֶ���Lj-� 4n����`�u_��u�:W���T��RpN-7�u���j~��Ї�\��[�Zw9 ��h�
41 …�?�O�(����}�7Q��~����1j/�!��xj��N��!�g�:���c��#9�� z�#�)E^'�ݏ ����ž-��|Q�x�\麕��km&�.���X…
43 …&˥��)8&��kݽ7ip�a��1���=���k?KI�_]��3ii�е��C,l���x'8�_|���>6x_Z��|--O�� ?�5Κfު��a2�n7>}…

12