Home
last modified time | relevance | path

Searched refs:create (Results 1 – 25 of 1822) sorted by relevance

12345678910>>...73

/frameworks/base/services/tests/servicestests/src/com/android/server/job/
DWorkTypeConfigTest.java108 /* min */ List.of(Pair.create(WORK_TYPE_TOP, 1), Pair.create(WORK_TYPE_EJ, 0), in test()
109 Pair.create(WORK_TYPE_BG, 0), Pair.create(WORK_TYPE_BGUSER, 0)), in test()
110 /* max */ List.of(Pair.create(WORK_TYPE_TOP, 13), Pair.create(WORK_TYPE_EJ, 13), in test()
111 Pair.create(WORK_TYPE_BG, 13), Pair.create(WORK_TYPE_BGUSER, 13))); in test()
113 /* min */ List.of(Pair.create(WORK_TYPE_TOP, 4), Pair.create(WORK_TYPE_BG, 0)), in test()
114 /* max */ List.of(Pair.create(WORK_TYPE_BG, 1)), in test()
116 /* min */ List.of(Pair.create(WORK_TYPE_TOP, 4), Pair.create(WORK_TYPE_BG, 0)), in test()
117 /* max */ List.of(Pair.create(WORK_TYPE_TOP, 5), Pair.create(WORK_TYPE_BG, 1))); in test()
119 /* min */ List.of(Pair.create(WORK_TYPE_TOP, 5), in test()
120 Pair.create(WORK_TYPE_BG, 0), Pair.create(WORK_TYPE_BGUSER, 0)), in test()
[all …]
DWorkCountTrackerTest.java305 final List<Pair<Integer, Integer>> maxLimits = List.of(Pair.create(WORK_TYPE_BG, 4)); in testRandom1()
306 final List<Pair<Integer, Integer>> minLimits = List.of(Pair.create(WORK_TYPE_BG, 2)); in testRandom1()
321 List.of(Pair.create(WORK_TYPE_BG, 2), Pair.create(WORK_TYPE_BGUSER, 1)); in testRandom2()
339 List.of(Pair.create(WORK_TYPE_BG, 2), Pair.create(WORK_TYPE_BGUSER, 1)); in testRandom3()
340 final List<Pair<Integer, Integer>> minLimits = List.of(Pair.create(WORK_TYPE_BG, 2)); in testRandom3()
357 List.of(Pair.create(WORK_TYPE_BG, 2), Pair.create(WORK_TYPE_BGUSER, 1)); in testRandom4()
375 List.of(Pair.create(WORK_TYPE_BG, 4), Pair.create(WORK_TYPE_BGUSER, 2)); in testRandom5()
376 final List<Pair<Integer, Integer>> minLimits = List.of(Pair.create(WORK_TYPE_BG, 2)); in testRandom5()
393 List.of(Pair.create(WORK_TYPE_BG, 4), Pair.create(WORK_TYPE_BGUSER, 2)); in testRandom6()
394 final List<Pair<Integer, Integer>> minLimits = List.of(Pair.create(WORK_TYPE_BG, 2)); in testRandom6()
[all …]
/frameworks/compile/mclinker/include/mcld/Script/
DOperator.h114 static Operator& create();
124 Operator& Operator::create<Operator::SIZEOF_HEADERS>();
126 Operator& Operator::create<Operator::MAXPAGESIZE>();
128 Operator& Operator::create<Operator::COMMONPAGESIZE>();
132 Operator& Operator::create<Operator::UNARY_PLUS>();
134 Operator& Operator::create<Operator::UNARY_MINUS>();
136 Operator& Operator::create<Operator::LOGICAL_NOT>();
138 Operator& Operator::create<Operator::BITWISE_NOT>();
141 Operator& Operator::create<Operator::ABSOLUTE>();
143 Operator& Operator::create<Operator::ADDR>();
[all …]
/frameworks/compile/mclinker/lib/Script/
DOperator.cpp45 m_pIntOperand = IntOperand::create(0); in Operator()
57 Operator& Operator::create<Operator::SIZEOF_HEADERS>() { in create() function in mcld::Operator
63 Operator& Operator::create<Operator::MAXPAGESIZE>() { in create() function in mcld::Operator
69 Operator& Operator::create<Operator::COMMONPAGESIZE>() { in create() function in mcld::Operator
76 Operator& Operator::create<Operator::UNARY_PLUS>() { in create() function in mcld::Operator
82 Operator& Operator::create<Operator::UNARY_MINUS>() { in create() function in mcld::Operator
88 Operator& Operator::create<Operator::LOGICAL_NOT>() { in create() function in mcld::Operator
94 Operator& Operator::create<Operator::BITWISE_NOT>() { in create() function in mcld::Operator
100 Operator& Operator::create<Operator::ABSOLUTE>() { in create() function in mcld::Operator
106 Operator& Operator::create<Operator::ADDR>() { in create() function in mcld::Operator
[all …]
DScriptParser.yy294 { $$ = FileToken::create(*$1, m_ScriptFile.asNeeded()); }
296 { $$ = NameSpec::create(*$1, m_ScriptFile.asNeeded()); }
354 /* create exp for vma */
468 { $$ = StrToken::create(*$1); }
501 WildcardPattern::create(*$1, WildcardPattern::SORT_NONE);
514 { $$ = WildcardPattern::create(*$1, WildcardPattern::SORT_NONE); }
516 { $$ = WildcardPattern::create(*$3, WildcardPattern::SORT_BY_NAME); }
538 WildcardPattern::create(*$2, WildcardPattern::SORT_NONE));
543 WildcardPattern::create(*$1, WildcardPattern::SORT_NONE));
563 { $$ = WildcardPattern::create(*$1, WildcardPattern::SORT_NONE); }
[all …]
DRpnExpr.cpp54 RpnExpr* RpnExpr::create() { in create() function in mcld::RpnExpr
81 RpnExpr* expr = RpnExpr::create(); in buildHelperExpr()
82 expr->push_back(SectDescOperand::create(*pIter)); in buildHelperExpr()
83 expr->push_back(&Operator::create<Operator::ADDR>()); in buildHelperExpr()
84 expr->push_back(SectDescOperand::create(*pIter)); in buildHelperExpr()
85 expr->push_back(&Operator::create<Operator::SIZEOF>()); in buildHelperExpr()
86 expr->push_back(&Operator::create<Operator::ADD>()); in buildHelperExpr()
92 RpnExpr* expr = RpnExpr::create(); in buildHelperExpr()
93 expr->push_back(FragOperand::create(pFrag)); in buildHelperExpr()
/frameworks/base/packages/SystemUI/src/com/android/systemui/log/dagger/
DLogModule.java48 return factory.create("DozeLog", 150); in provideDozeLogBuffer()
62 return factory.create("NotifLog", maxSize, false /* systrace */); in provideNotificationsLogBuffer()
71 return factory.create("NotifLockscreenLog", 50, false /* systrace */); in provideNotificationLockScreenLogBuffer()
79 return factory.create("NotifHeadsUpLog", 1000); in provideNotificationHeadsUpLogBuffer()
87 return factory.create("NotifInterruptLog", 100); in provideNotificationInterruptLogBuffer()
95 return factory.create("NotifRenderLog", 100); in provideNotificationRenderLogBuffer()
103 return factory.create("LSShadeTransitionLog", 50); in provideLSShadeTransitionControllerBuffer()
111 return factory.create("ShadeWindowLog", 600, false); in provideShadeWindowLogBuffer()
119 return factory.create("ShadeLog", 500, false); in provideShadeLogBuffer()
127 return factory.create("ShadeHeightLog", 500 /* maxSize */); in provideShadeHeightLogBuffer()
[all …]
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/utils/
DRotationCacheTest.java19 import static android.util.Pair.create;
51 return create(o, rot); in setUp()
57 assertThat(mCache.getOrCompute("hello", 0), equalTo(create("hello", 0))); in getOrCompute_computes()
58 assertThat(mCache.getOrCompute("hello", 1), equalTo(create("hello", 1))); in getOrCompute_computes()
59 assertThat(mCache.getOrCompute("hello", 2), equalTo(create("hello", 2))); in getOrCompute_computes()
60 assertThat(mCache.getOrCompute("hello", 3), equalTo(create("hello", 3))); in getOrCompute_computes()
68 assertThat(mCache.getOrCompute("hello", 1), equalTo(create("hello", 1))); in getOrCompute_sameParam_sameRot_hitsCache()
80 assertThat(mCache.getOrCompute("hello", 1), equalTo(create("hello", 1))); in getOrCompute_sameParam_hitsCache_forAllRots()
81 assertThat(mCache.getOrCompute("hello", 0), equalTo(create("hello", 0))); in getOrCompute_sameParam_hitsCache_forAllRots()
82 assertThat(mCache.getOrCompute("hello", 2), equalTo(create("hello", 2))); in getOrCompute_sameParam_hitsCache_forAllRots()
[all …]
/frameworks/base/services/tests/servicestests/src/com/android/server/compat/
DCompatConfigTest.java107 assertThat(compatConfig.isChangeEnabled(1234L, ApplicationInfoBuilder.create().build())) in testUnknownChangeEnabled()
113 CompatConfig compatConfig = CompatConfigBuilder.create(mBuildClassifier, mContext) in testDisabledChangeDisabled()
117 assertThat(compatConfig.isChangeEnabled(1234L, ApplicationInfoBuilder.create().build())) in testDisabledChangeDisabled()
123 CompatConfig compatConfig = CompatConfigBuilder.create(mBuildClassifier, mContext) in testTargetSdkChangeDisabled()
128 ApplicationInfoBuilder.create().withTargetSdk(2).build())) in testTargetSdkChangeDisabled()
134 CompatConfig compatConfig = CompatConfigBuilder.create(mBuildClassifier, mContext) in testTargetSdkChangeEnabled()
139 ApplicationInfoBuilder.create().withTargetSdk(3).build())).isTrue(); in testTargetSdkChangeEnabled()
144 CompatConfig compatConfig = CompatConfigBuilder.create(mBuildClassifier, mContext) in testDisabledOverrideTargetSdkChange()
149 ApplicationInfoBuilder.create().withTargetSdk(3).build())).isFalse(); in testDisabledOverrideTargetSdkChange()
154 CompatConfig compatConfig = CompatConfigBuilder.create(mBuildClassifier, mContext) in testGetDisabledChanges()
[all …]
DPlatformCompatTest.java93 mCompatConfig = CompatConfigBuilder.create(mBuildClassifier, mContext) in testListAllChanges()
121 mCompatConfig = CompatConfigBuilder.create(mBuildClassifier, mContext) in testListUIChanges()
143 mCompatConfig = CompatConfigBuilder.create(mBuildClassifier, mContext) in testOverrideAtInstallTime()
187 CompatibilityChangeConfigBuilder.create().enable(1L).build(), in testRegisterListenerReturn()
202 .thenReturn(ApplicationInfoBuilder.create().withPackageName(PACKAGE_NAME).build()); in testListenerCalledOnSetOverrides()
205 CompatibilityChangeConfigBuilder.create().enable(1L).disable(2L).build(), in testListenerCalledOnSetOverrides()
217 .thenReturn(ApplicationInfoBuilder.create().withPackageName(PACKAGE_NAME).build()); in testListenerNotCalledOnWrongPackage()
220 CompatibilityChangeConfigBuilder.create().enable(1L).disable(2L).build(), in testListenerNotCalledOnWrongPackage()
231 .thenReturn(ApplicationInfoBuilder.create().withPackageName(PACKAGE_NAME).build()); in testListenerCalledOnSetOverridesTwoListeners()
234 CompatibilityChangeConfigBuilder.create().enable(1L).disable(2L).build(), in testListenerCalledOnSetOverridesTwoListeners()
[all …]
DOverrideValidatorImplTest.java96 CompatConfig config = CompatConfigBuilder.create(debuggableBuild(), mContext) in getOverrideAllowedState_debugBuildAnyChangeDebugApp_allowOverride()
105 .thenReturn(ApplicationInfoBuilder.create() in getOverrideAllowedState_debugBuildAnyChangeDebugApp_allowOverride()
140 CompatConfig config = CompatConfigBuilder.create(debuggableBuild(), mContext) in getOverrideAllowedState_debugBuildAnyChangeReleaseApp_allowOverride()
149 .thenReturn(ApplicationInfoBuilder.create() in getOverrideAllowedState_debugBuildAnyChangeReleaseApp_allowOverride()
183 CompatConfig config = CompatConfigBuilder.create(betaBuild(), mContext) in getOverrideAllowedState_betaBuildTargetSdkChangeDebugApp_allowOverride()
190 .thenReturn(ApplicationInfoBuilder.create() in getOverrideAllowedState_betaBuildTargetSdkChangeDebugApp_allowOverride()
217 CompatConfig config = CompatConfigBuilder.create(betaBuild(), mContext) in getOverrideAllowedState_betaBuildEnabledChangeDebugApp_allowOverride()
221 .thenReturn(ApplicationInfoBuilder.create() in getOverrideAllowedState_betaBuildEnabledChangeDebugApp_allowOverride()
236 CompatConfig config = CompatConfigBuilder.create(betaBuild(), mContext) in getOverrideAllowedState_betaBuildDisabledChangeDebugApp_allowOverride()
240 .thenReturn(ApplicationInfoBuilder.create() in getOverrideAllowedState_betaBuildDisabledChangeDebugApp_allowOverride()
[all …]
/frameworks/layoutlib/
DMETADATA3 " create/tests/res/mock_data/mock_android/fake/InnerTest.java\n"
4 " create/tests/res/mock_data/mock_android/util/EmptyArray.java\n"
5 " create/tests/res/mock_data/mock_android/view/View.java\n"
6 " create/tests/res/mock_data/mock_android/view/ViewGroup.java\n"
7 " create/tests/res/mock_data/mock_android/widget/LinearLayout.java\n"
8 " create/tests/res/mock_data/mock_android/widget/TableLayout.java\n"
9 " create/tests/res/mock_data/notjava/lang/JavaClass.java"
/frameworks/base/media/mca/filterfw/java/android/filterfw/format/
DImageFormat.java37 public static MutableFrameFormat create(int width, in create() method in ImageFormat
53 public static MutableFrameFormat create(int width, in create() method in ImageFormat
57 return create(width, in create()
65 public static MutableFrameFormat create(int colorspace, int target) { in create() method in ImageFormat
66 return create(FrameFormat.SIZE_UNSPECIFIED, in create()
74 public static MutableFrameFormat create(int colorspace) { in create() method in ImageFormat
75 return create(FrameFormat.SIZE_UNSPECIFIED, in create()
/frameworks/opt/car/services/builtInServices/src/com/android/server/wm/
DCalculateParams.java48 public static CalculateParams create(Task task, ActivityInfo.WindowLayout layout, in create() method in CalculateParams
55 params.mTask = TaskWrapper.create(task); in create()
56 params.mLayout = WindowLayoutWrapper.create(layout); in create()
57 params.mActivity = ActivityRecordWrapper.create(actvity); in create()
58 params.mSource = ActivityRecordWrapper.create(source); in create()
59 params.mOptions = ActivityOptionsWrapper.create(options); in create()
60 params.mRequest = RequestWrapper.create(request); in create()
62 params.mCurrentParams = LaunchParamsWrapper.create(currentParams); in create()
63 params.mOutParams = LaunchParamsWrapper.create(outParms); in create()
/frameworks/base/packages/BackupEncryption/test/robolectric/src/com/android/server/backup/encryption/chunk/
DEncryptedChunkOrderingTest.java38 EncryptedChunkOrdering.create(TEST_BYTE_ARRAY_1); in testEncryptedChunkOrdering_returnsValue()
50 EncryptedChunkOrdering chunkOrdering1 = EncryptedChunkOrdering.create(TEST_BYTE_ARRAY_1); in testEquals()
52 EncryptedChunkOrdering.create(TEST_BYTE_ARRAY_1); in testEquals()
53 EncryptedChunkOrdering chunkOrdering2 = EncryptedChunkOrdering.create(TEST_BYTE_ARRAY_2); in testEquals()
61 EncryptedChunkOrdering chunkOrdering1 = EncryptedChunkOrdering.create(TEST_BYTE_ARRAY_1); in testHashCode()
63 EncryptedChunkOrdering.create(TEST_BYTE_ARRAY_1); in testHashCode()
64 EncryptedChunkOrdering chunkOrdering2 = EncryptedChunkOrdering.create(TEST_BYTE_ARRAY_2); in testHashCode()
/frameworks/native/libs/renderengine/
DRenderEngine.cpp29 std::unique_ptr<RenderEngine> RenderEngine::create(const RenderEngineCreationArgs& args) { in create() function in android::renderengine::RenderEngine
33 return renderengine::threaded::RenderEngineThreaded::create( in create()
34 [args]() { return android::renderengine::gl::GLESRenderEngine::create(args); }, in create()
38 return renderengine::skia::SkiaGLRenderEngine::create(args); in create()
41 return renderengine::threaded::RenderEngineThreaded::create( in create()
43 return android::renderengine::skia::SkiaGLRenderEngine::create(args); in create()
50 return renderengine::gl::GLESRenderEngine::create(args); in create()
/frameworks/base/packages/BackupEncryption/test/robolectric/src/com/android/server/backup/encryption/chunking/
DEncryptedChunkTest.java59 () -> EncryptedChunk.create(chunkHash, shortNonce, ENCRYPTED_BYTES_1)); in testCreate_withIncorrectLength_throwsException()
66 EncryptedChunk.create(chunkHash, NONCE_1, ENCRYPTED_BYTES_1); in testEncryptedBytes_forNewlyCreatedObject_returnsCorrectValue()
80 EncryptedChunk.create(chunkHash, NONCE_1, ENCRYPTED_BYTES_1); in testKey_forNewlyCreatedObject_returnsCorrectValue()
91 EncryptedChunk.create(chunkHash, NONCE_1, ENCRYPTED_BYTES_1); in testNonce_forNewlycreatedObject_returnCorrectValue()
104 EncryptedChunk.create(chunkHash1, NONCE_1, ENCRYPTED_BYTES_1); in testEquals()
106 EncryptedChunk.create(equalChunkHash1, NONCE_1, ENCRYPTED_BYTES_1); in testEquals()
108 EncryptedChunk.create(chunkHash2, NONCE_2, ENCRYPTED_BYTES_2); in testEquals()
120 EncryptedChunk.create(chunkHash1, NONCE_1, ENCRYPTED_BYTES_1); in testHashCode()
122 EncryptedChunk.create(equalChunkHash1, NONCE_1, ENCRYPTED_BYTES_1); in testHashCode()
124 EncryptedChunk.create(chunkHash2, NONCE_2, ENCRYPTED_BYTES_2); in testHashCode()
/frameworks/base/apct-tests/perftests/core/src/android/graphics/perftests/
DRenderNodePerfTest.java36 final RenderNode node = RenderNode.create("benchmark", null); in testMeasureRenderNodeJniOverhead()
48 RenderNode.create(null, null); in testCreateRenderNodeNoName()
56 RenderNode.create("LinearLayout", null); in testCreateRenderNode()
63 RenderNode node = RenderNode.create("LinearLayout", null); in testIsValid()
72 RenderNode node = RenderNode.create("LinearLayout", null); in testStartEnd()
84 nodes[i] = RenderNode.create("LinearLayout", null); in testStartEndDeepHierarchy()
100 RenderNode node = RenderNode.create("LinearLayout", null); in testHasIdentityMatrix()
109 RenderNode node = RenderNode.create("LinearLayout", null); in testSetOutline()
/frameworks/layoutlib/create/tests/
Drun_tests.sh10create/layoutlib_create/linux_glibc_common/combined/layoutlib_create.jar:${OUT_INTERMEDIATES}/fram…
12 com.android.tools.layoutlib.create.AllTests
/frameworks/base/core/tests/coretests/src/android/graphics/
DTypefaceTest.java52 Typeface.create(Typeface.SANS_SERIF, 0),
53 Typeface.create(Typeface.SANS_SERIF, 1),
54 Typeface.create(Typeface.SERIF, 0),
55 Typeface.create(Typeface.SERIF, 1),
56 Typeface.create(Typeface.SERIF, 2),
57 Typeface.create(Typeface.SERIF, 3),
58 Typeface.create(Typeface.MONOSPACE, 0)
164 final Typeface result = Typeface.create(base, style); in testMultithreadCacheStressTest()
169 final Typeface result = Typeface.create(base, weight, italic); in testMultithreadCacheStressTest()
224 "sans-serif", Typeface.create(res.getFont(R.font.samplefont), Typeface.NORMAL), in testSetSystemFontMap()
[all …]
/frameworks/base/tools/aapt2/
DResourceUtils_test.cpp64 bool create = false; in TEST() local
66 EXPECT_TRUE(ResourceUtils::ParseReference("@color/foo", &actual, &create, &private_ref)); in TEST()
68 EXPECT_FALSE(create); in TEST()
74 bool create = false; in TEST() local
76 EXPECT_TRUE(ResourceUtils::ParseReference("@android:color/foo", &actual, &create, &private_ref)); in TEST()
78 EXPECT_FALSE(create); in TEST()
84 bool create = false; in TEST() local
86 …EXPECT_TRUE(ResourceUtils::ParseReference("\t @android:color/foo\n \n\t", &actual, &create, &priva… in TEST()
88 EXPECT_FALSE(create); in TEST()
94 bool create = false; in TEST() local
[all …]
/frameworks/base/services/core/java/com/android/server/soundtrigger_middleware/
DSoundTriggerMiddlewareService.java144 try (SafeCloseable ignored = ClearCallingIdentityContext.create()) { in loadModel()
151 try (SafeCloseable ignored = ClearCallingIdentityContext.create()) { in loadPhraseModel()
158 try (SafeCloseable ignored = ClearCallingIdentityContext.create()) { in unloadModel()
166 try (SafeCloseable ignored = ClearCallingIdentityContext.create()) { in startRecognition()
173 try (SafeCloseable ignored = ClearCallingIdentityContext.create()) { in stopRecognition()
180 try (SafeCloseable ignored = ClearCallingIdentityContext.create()) { in forceRecognitionEvent()
188 try (SafeCloseable ignored = ClearCallingIdentityContext.create()) { in setModelParameter()
195 try (SafeCloseable ignored = ClearCallingIdentityContext.create()) { in getModelParameter()
203 try (SafeCloseable ignored = ClearCallingIdentityContext.create()) { in queryModelParameterSupport()
210 try (SafeCloseable ignored = ClearCallingIdentityContext.create()) { in detach()
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
DNotificationListenersTest.java192 mListeners.setNotificationListenerFilter(Pair.create(mCn1, 0), nlf); in testWriteExtraTag()
193 mListeners.setNotificationListenerFilter(Pair.create(mCn2, 10), nlf2); in testWriteExtraTag()
213 assertThat(mListeners.getNotificationListenerFilter(Pair.create(mCn1, 0)).getTypes()) in validateListenersFromXml()
215 assertThat(mListeners.getNotificationListenerFilter(Pair.create(mCn1, 0)) in validateListenersFromXml()
219 assertThat(mListeners.getNotificationListenerFilter(Pair.create(mCn2, 10)).getTypes()) in validateListenersFromXml()
222 assertThat(mListeners.getNotificationListenerFilter(Pair.create(mCn2, 10)) in validateListenersFromXml()
233 mListeners.setNotificationListenerFilter(Pair.create(mCn1, 0), nlf); in testOnUserRemoved()
234 mListeners.setNotificationListenerFilter(Pair.create(mCn2, 10), nlf2); in testOnUserRemoved()
238 assertThat(mListeners.getNotificationListenerFilter(Pair.create(mCn1, 0))).isNull(); in testOnUserRemoved()
239 assertThat(mListeners.getNotificationListenerFilter(Pair.create(mCn2, 10)).getTypes()) in testOnUserRemoved()
[all …]
/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
DUT_foreach_multi.java53 Ain0 = Allocation.createTyped(RS, type32Builder.create()); in initializeGlobals()
57 Ain1 = Allocation.createTyped(RS, type32Builder.create()); in initializeGlobals()
61 Ain2 = Allocation.createTyped(RS, type32Builder.create()); in initializeGlobals()
67 Ain3 = Allocation.createTyped(RS, type16Builder.create()); in initializeGlobals()
73 Out0 = Allocation.createTyped(RS, type32Builder.create()); in initializeGlobals()
76 Out1 = Allocation.createTyped(RS, type32Builder.create()); in initializeGlobals()
79 Out2 = Allocation.createTyped(RS, type32Builder.create()); in initializeGlobals()
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
DUT_foreach_multi.java51 Ain0 = Allocation.createTyped(RS, type32Builder.create()); in initializeGlobals()
55 Ain1 = Allocation.createTyped(RS, type32Builder.create()); in initializeGlobals()
59 Ain2 = Allocation.createTyped(RS, type32Builder.create()); in initializeGlobals()
65 Ain3 = Allocation.createTyped(RS, type16Builder.create()); in initializeGlobals()
71 Out0 = Allocation.createTyped(RS, type32Builder.create()); in initializeGlobals()
74 Out1 = Allocation.createTyped(RS, type32Builder.create()); in initializeGlobals()
77 Out2 = Allocation.createTyped(RS, type32Builder.create()); in initializeGlobals()

12345678910>>...73