Home
last modified time | relevance | path

Searched refs:input0 (Results 1 – 25 of 1446) sorted by relevance

12345678910>>...58

/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.aarch64.test/src/org/graalvm/compiler/core/aarch64/test/
H A DAArch64LogicShiftTest.java43 value += input0 & (input1 >> 5); in andShiftInt()
44 value += input0 & (input1 >>> 5); in andShiftInt()
59 value += input0 & (input1 >> 5); in andShiftLong()
60 value += input0 & (input1 >>> 5); in andShiftLong()
75 value += input0 | (input1 >> 5); in orrShiftInt()
76 value += input0 | (input1 >>> 5); in orrShiftInt()
91 value += input0 | (input1 >> 5); in orrShiftLong()
92 value += input0 | (input1 >>> 5); in orrShiftLong()
107 value += input0 ^ (input1 >> 5); in eorShiftInt()
108 value += input0 ^ (input1 >>> 5); in eorShiftInt()
[all …]
H A DAArch64AddSubShiftTest.java117 private static int subLeftShiftInt(int input0, int input1) { in subLeftShiftInt() argument
118 return input0 - (input1 << 5); in subLeftShiftInt()
122 return input0 - (input1 >> 5); in subRightShiftInt()
126 return input0 - (input1 >>> 5); in subUnsignedRightShiftInt()
129 public static int subShiftInt(int input0, int input1) { in subShiftInt() argument
130 …return subLeftShiftInt(input0, input1) + subRightShiftInt(input0, input1) + subUnsignedRightShiftI… in subShiftInt()
147 return input0 - (input1 << 5); in subLeftShiftLong()
151 return input0 - (input1 >> 5); in subRightShiftLong()
155 return input0 - (input1 >>> 5); in subUnsignedRightShiftLong()
158 public static long subShiftLong(long input0, long input1) { in subShiftLong() argument
[all …]
H A DAArch64MultiplyAddSubTest.java41 public static int mulAddInt(int input0, int input1, int input2) { in mulAddInt() argument
42 return input2 + input0 * input1; in mulAddInt()
56 public static long mulAddLong(long input0, long input1, long input2) { in mulAddLong() argument
57 return input0 * input1 + input2; in mulAddLong()
71 public static int mulSubInt(int input0, int input1, int input2) { in mulSubInt() argument
72 return input2 - input0 * input1; in mulSubInt()
86 public static long mulSubLong(long input0, long input1, long input2) { in mulSubLong() argument
87 return input2 - input0 * input1; in mulSubLong()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.aarch64.test/src/org/graalvm/compiler/core/aarch64/test/
H A DAArch64LogicShiftTest.java43 value += input0 & (input1 >> 5); in andShiftInt()
44 value += input0 & (input1 >>> 5); in andShiftInt()
59 value += input0 & (input1 >> 5); in andShiftLong()
60 value += input0 & (input1 >>> 5); in andShiftLong()
75 value += input0 | (input1 >> 5); in orrShiftInt()
76 value += input0 | (input1 >>> 5); in orrShiftInt()
91 value += input0 | (input1 >> 5); in orrShiftLong()
92 value += input0 | (input1 >>> 5); in orrShiftLong()
107 value += input0 ^ (input1 >> 5); in eorShiftInt()
108 value += input0 ^ (input1 >>> 5); in eorShiftInt()
[all …]
H A DAArch64AddSubShiftTest.java117 private static int subLeftShiftInt(int input0, int input1) { in subLeftShiftInt() argument
118 return input0 - (input1 << 5); in subLeftShiftInt()
122 return input0 - (input1 >> 5); in subRightShiftInt()
126 return input0 - (input1 >>> 5); in subUnsignedRightShiftInt()
129 public static int subShiftInt(int input0, int input1) { in subShiftInt() argument
130 …return subLeftShiftInt(input0, input1) + subRightShiftInt(input0, input1) + subUnsignedRightShiftI… in subShiftInt()
147 return input0 - (input1 << 5); in subLeftShiftLong()
151 return input0 - (input1 >> 5); in subRightShiftLong()
155 return input0 - (input1 >>> 5); in subUnsignedRightShiftLong()
158 public static long subShiftLong(long input0, long input1) { in subShiftLong() argument
[all …]
H A DAArch64MultiplyAddSubTest.java41 public static int mulAddInt(int input0, int input1, int input2) { in mulAddInt() argument
42 return input2 + input0 * input1; in mulAddInt()
56 public static long mulAddLong(long input0, long input1, long input2) { in mulAddLong() argument
57 return input0 * input1 + input2; in mulAddLong()
71 public static int mulSubInt(int input0, int input1, int input2) { in mulSubInt() argument
72 return input2 - input0 * input1; in mulSubInt()
86 public static long mulSubLong(long input0, long input1, long input2) { in mulSubLong() argument
87 return input2 - input0 * input1; in mulSubLong()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.aarch64.test/src/org/graalvm/compiler/core/aarch64/test/
H A DAArch64LogicShiftTest.java43 value += input0 & (input1 >> 5); in andShiftInt()
44 value += input0 & (input1 >>> 5); in andShiftInt()
59 value += input0 & (input1 >> 5); in andShiftLong()
60 value += input0 & (input1 >>> 5); in andShiftLong()
75 value += input0 | (input1 >> 5); in orrShiftInt()
76 value += input0 | (input1 >>> 5); in orrShiftInt()
91 value += input0 | (input1 >> 5); in orrShiftLong()
92 value += input0 | (input1 >>> 5); in orrShiftLong()
107 value += input0 ^ (input1 >> 5); in eorShiftInt()
108 value += input0 ^ (input1 >>> 5); in eorShiftInt()
[all …]
H A DAArch64AddSubShiftTest.java117 private static int subLeftShiftInt(int input0, int input1) { in subLeftShiftInt() argument
118 return input0 - (input1 << 5); in subLeftShiftInt()
122 return input0 - (input1 >> 5); in subRightShiftInt()
126 return input0 - (input1 >>> 5); in subUnsignedRightShiftInt()
129 public static int subShiftInt(int input0, int input1) { in subShiftInt() argument
130 …return subLeftShiftInt(input0, input1) + subRightShiftInt(input0, input1) + subUnsignedRightShiftI… in subShiftInt()
147 return input0 - (input1 << 5); in subLeftShiftLong()
151 return input0 - (input1 >> 5); in subRightShiftLong()
155 return input0 - (input1 >>> 5); in subUnsignedRightShiftLong()
158 public static long subShiftLong(long input0, long input1) { in subShiftLong() argument
[all …]
H A DAArch64MultiplyAddSubTest.java41 public static int mulAddInt(int input0, int input1, int input2) { in mulAddInt() argument
42 return input2 + input0 * input1; in mulAddInt()
56 public static long mulAddLong(long input0, long input1, long input2) { in mulAddLong() argument
57 return input0 * input1 + input2; in mulAddLong()
71 public static int mulSubInt(int input0, int input1, int input2) { in mulSubInt() argument
72 return input2 - input0 * input1; in mulSubInt()
86 public static long mulSubLong(long input0, long input1, long input2) { in mulSubLong() argument
87 return input2 - input0 * input1; in mulSubLong()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.aarch64.test/src/org/graalvm/compiler/core/aarch64/test/
H A DAArch64LogicShiftTest.java43 value += input0 & (input1 >> 5); in andShiftInt()
44 value += input0 & (input1 >>> 5); in andShiftInt()
59 value += input0 & (input1 >> 5); in andShiftLong()
60 value += input0 & (input1 >>> 5); in andShiftLong()
75 value += input0 | (input1 >> 5); in orrShiftInt()
76 value += input0 | (input1 >>> 5); in orrShiftInt()
91 value += input0 | (input1 >> 5); in orrShiftLong()
92 value += input0 | (input1 >>> 5); in orrShiftLong()
107 value += input0 ^ (input1 >> 5); in eorShiftInt()
108 value += input0 ^ (input1 >>> 5); in eorShiftInt()
[all …]
H A DAArch64AddSubShiftTest.java117 private static int subLeftShiftInt(int input0, int input1) { in subLeftShiftInt() argument
118 return input0 - (input1 << 5); in subLeftShiftInt()
122 return input0 - (input1 >> 5); in subRightShiftInt()
126 return input0 - (input1 >>> 5); in subUnsignedRightShiftInt()
129 public static int subShiftInt(int input0, int input1) { in subShiftInt() argument
130 …return subLeftShiftInt(input0, input1) + subRightShiftInt(input0, input1) + subUnsignedRightShiftI… in subShiftInt()
147 return input0 - (input1 << 5); in subLeftShiftLong()
151 return input0 - (input1 >> 5); in subRightShiftLong()
155 return input0 - (input1 >>> 5); in subUnsignedRightShiftLong()
158 public static long subShiftLong(long input0, long input1) { in subShiftLong() argument
[all …]
H A DAArch64MultiplyAddSubTest.java41 public static int mulAddInt(int input0, int input1, int input2) { in mulAddInt() argument
42 return input2 + input0 * input1; in mulAddInt()
56 public static long mulAddLong(long input0, long input1, long input2) { in mulAddLong() argument
57 return input0 * input1 + input2; in mulAddLong()
71 public static int mulSubInt(int input0, int input1, int input2) { in mulSubInt() argument
72 return input2 - input0 * input1; in mulSubInt()
86 public static long mulSubLong(long input0, long input1, long input2) { in mulSubLong() argument
87 return input2 - input0 * input1; in mulSubLong()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.aarch64.test/src/org/graalvm/compiler/core/aarch64/test/
H A DAArch64LogicShiftTest.java43 value += input0 & (input1 >> 5); in andShiftInt()
44 value += input0 & (input1 >>> 5); in andShiftInt()
59 value += input0 & (input1 >> 5); in andShiftLong()
60 value += input0 & (input1 >>> 5); in andShiftLong()
75 value += input0 | (input1 >> 5); in orrShiftInt()
76 value += input0 | (input1 >>> 5); in orrShiftInt()
91 value += input0 | (input1 >> 5); in orrShiftLong()
92 value += input0 | (input1 >>> 5); in orrShiftLong()
107 value += input0 ^ (input1 >> 5); in eorShiftInt()
108 value += input0 ^ (input1 >>> 5); in eorShiftInt()
[all …]
H A DAArch64AddSubShiftTest.java117 private static int subLeftShiftInt(int input0, int input1) { in subLeftShiftInt() argument
118 return input0 - (input1 << 5); in subLeftShiftInt()
122 return input0 - (input1 >> 5); in subRightShiftInt()
126 return input0 - (input1 >>> 5); in subUnsignedRightShiftInt()
129 public static int subShiftInt(int input0, int input1) { in subShiftInt() argument
130 …return subLeftShiftInt(input0, input1) + subRightShiftInt(input0, input1) + subUnsignedRightShiftI… in subShiftInt()
147 return input0 - (input1 << 5); in subLeftShiftLong()
151 return input0 - (input1 >> 5); in subRightShiftLong()
155 return input0 - (input1 >>> 5); in subUnsignedRightShiftLong()
158 public static long subShiftLong(long input0, long input1) { in subShiftLong() argument
[all …]
H A DAArch64MultiplyAddSubTest.java41 public static int mulAddInt(int input0, int input1, int input2) { in mulAddInt() argument
42 return input2 + input0 * input1; in mulAddInt()
56 public static long mulAddLong(long input0, long input1, long input2) { in mulAddLong() argument
57 return input0 * input1 + input2; in mulAddLong()
71 public static int mulSubInt(int input0, int input1, int input2) { in mulSubInt() argument
72 return input2 - input0 * input1; in mulSubInt()
86 public static long mulSubLong(long input0, long input1, long input2) { in mulSubLong() argument
87 return input2 - input0 * input1; in mulSubLong()
/dports/misc/mnn/MNN-1.2.0/tools/converter/source/optimizer/tflitextra/
H A DBinaryActivation.cpp28 auto input0 = inputs[0]; in onExecute() local
33 newOutput = _Pow(input0, input1); in onExecute()
37 newOutput = _Maximum(input0, input1); in onExecute()
41 newOutput = _Minimum(input0, input1); in onExecute()
45 newOutput = _Less(input0, input1); in onExecute()
53 newOutput = _Add(input0, input1); in onExecute()
57 newOutput = _Subtract(input0, input1); in onExecute()
61 newOutput = _FloorDiv(input0, input1); in onExecute()
65 newOutput = _Divide(input0, input1); in onExecute()
69 newOutput = _FloorMod(input0, input1); in onExecute()
[all …]
/dports/databases/postgis25/postgis-2.5.5/postgis/
H A Dlwgeom_sfcgal.c255 PG_FREE_IF_COPY(input0, 0); in sfcgal_intersects()
279 PG_FREE_IF_COPY(input0, 0); in sfcgal_intersects3D()
303 PG_FREE_IF_COPY(input0, 0); in sfcgal_distance()
327 PG_FREE_IF_COPY(input0, 0); in sfcgal_distance3D()
485 PG_FREE_IF_COPY(input0, 0); in sfcgal_intersection()
514 PG_FREE_IF_COPY(input0, 0); in sfcgal_intersection3D()
542 PG_FREE_IF_COPY(input0, 0); in sfcgal_difference()
571 PG_FREE_IF_COPY(input0, 0); in sfcgal_difference3D()
599 PG_FREE_IF_COPY(input0, 0); in sfcgal_union()
628 PG_FREE_IF_COPY(input0, 0); in sfcgal_union3D()
[all …]
/dports/misc/mnn/MNN-1.2.0/test/speed/
H A DBinarySpeedTest.cpp26 auto output = input0 - input1; in SubScalarTest()
30 input0->writeMap<float>(); in SubScalarTest()
37 auto input0 = _Input({}, NCHW); in AddScalarTest() local
39 auto output = input0 + input1; in AddScalarTest()
43 input0->writeMap<float>(); in AddScalarTest()
52 auto output = input0 - input1; in SubTest()
56 input0->writeMap<float>(); in SubTest()
65 auto output = input0 + input1; in AddTest()
69 input0->writeMap<float>(); in AddTest()
80 auto subOutput = input0 - input1; in run()
[all …]
/dports/x11-fonts/linuxlibertine-g/LinLibertineG/src/
H A Dfontname.history23 ./fontname input0/LinBiolinum_RB.ttf input "LinuxBiolinumGB" "Linux Biolinum G Bold" "Linux Biolinu…
4 ./fontname input0/LinBiolinum_R.ttf input "LinuxBiolinumG" "Linux Biolinum G Regular" "Linux Biolin…
5 ./fontname input0/LinBiolinum_RI.ttf input "LinuxBiolinumGI" "Linux Biolinum G Italic" "Linux Bioli…
6 ./fontname input0/LinLibertine_R.ttf input "LinuxLibertineG" "Linux Libertine G Regular" "Linux Lib…
8 ./fontname input0/LinLibertine_RI.ttf input "LinuxLibertineGI" "Linux Libertine G Italic" "Linux Li…
10 ./fontname input0/LinLibertine_RB.ttf input "LinuxLibertineGB" "Linux Libertine G Bold" "Linux Libe…
12 ./fontname input0/LinLibertine_RZ.ttf input "LinuxLibertineGZ" "Linux Libertine G Semibold" "Linux …
14 ./fontname input0/LinLibertine_RBI.ttf input "LinuxLibertineGBI" "Linux Libertine G Bold Italic" "L…
16 ./fontname input0/LinLibertine_RZI.ttf input "LinuxLibertineGZI" "Linux Libertine G Semibold Italic…
18 ./fontname input0/LinLibertine_DR.ttf input "LinuxLibertineDG" "Linux Libertine G Display Regular" …
H A Dcpglyph.history2 python cpglyph.py extra/ExtraLinBiolinum_RB.ttf SRC/LinBiolinum_RB*sfd input0 Aacute
3 python cpglyph.py extra/ExtraLinLibertine_R.ttf SRC/LinBiolinum_R.sfd input0
4 python cpglyph.py extra/ExtraLinLibertine_R.ttf SRC/LinBiolinum_RI*sfd input0
5 python cpglyph.py extra/ExtraLinLibertine_R.ttf SRC/LinLibertine_R.sfd input0 uni2731 uni0170 e.su…
6 python cpglyph.py extra/ExtraLinLibertine_RI.ttf SRC/LinLibertine_RI.sfd input0 uniE0F7 uniE0F8 un…
7 python cpglyph.py extra/ExtraLinLibertine_RZ.ttf SRC/LinLibertine_RZ.sfd input0 unie033
9 python cpglyph.py extra/ExtraLinLibertine_RZI.ttf SRC/LinLibertine_RZI.sfd input0 unie033 unie037 …
11 python cpglyph.py extra/ExtraLinLibertine_RB.ttf SRC/LinLibertine_RB.sfd input0 unie033 uniE0F8 un…
13 python cpglyph.py extra/ExtraLinLibertine_RBI.ttf SRC/LinLibertine_RBI.sfd input0 uniE033 uniE037 …
15 python cpglyph.py extra/ExtraLinLibertine_DR.ttf SRC/LinLibertine_DR.sfd input0 f_f_i uniE033 uniE…
/dports/science/InsightToolkit/ITK-5.0.1/Modules/Core/Common/test/
H A DitkDataObjectAndProcessObjectTest.cxx259 process->SetNthInput( 0, input0 ); in itkDataObjectAndProcessObjectTest()
335 process->SetNthInput( 10, input0 ); in itkDataObjectAndProcessObjectTest()
338 process->AddInput( input0 ); in itkDataObjectAndProcessObjectTest()
375 process->SetPrimaryInput( input0 ); in itkDataObjectAndProcessObjectTest()
384 process->SetNthInput( 1, input0 ); in itkDataObjectAndProcessObjectTest()
420 process->SetPrimaryInput( input0 ); in itkDataObjectAndProcessObjectTest()
442 process->SetPrimaryInput( input0 ); in itkDataObjectAndProcessObjectTest()
450 process->SetInput( "Req", input0 ); in itkDataObjectAndProcessObjectTest()
456 process->SetInput( "name", input0 ); in itkDataObjectAndProcessObjectTest()
476 process->SetPrimaryOutput( input0 ); in itkDataObjectAndProcessObjectTest()
[all …]
/dports/misc/mnn/MNN-1.2.0/backupcode/cpubackend/
H A DCPUBatchMatMul.cpp20 auto input0 = inputs[0]; in onResize() local
24 if (input0->elementSize() == 0 || input1->elementSize() == 0) { in onResize()
27 auto dimensions = input0->dimensions(); in onResize()
28 …mMatrixA.reset(Tensor::createDevice<float>({input0->length(input0->dimensions()-2), input0->length… in onResize()
29 …ateDevice<float>({input1->length(input1->dimensions()-2), input1->length(input0->dimensions()-1)})… in onResize()
42 batch *= input0->length(i); in onResize()
53 auto input0 = inputs[0]; in onExecute() local
57 if (input0->elementSize() == 0 || input1->elementSize() == 0) { in onExecute()
61 const int dimensions = input0->dimensions(); in onExecute()
63 const int input0Stride = input0->length(dimensions - 1) * input0->length(dimensions - 2); in onExecute()
[all …]
/dports/misc/mnn/MNN-1.2.0/test/op/
H A DSelectTest.cpp52 bool RunSelectAndCheckResult(VARP select, VARP input0, VARP input1) { in RunSelectAndCheckResult() argument
53 RandInit<float>(input0, -100.f, 100.f); in RunSelectAndCheckResult()
57 auto output = _Select(select, input0, input1); in RunSelectAndCheckResult()
59 int iter0 = input0->getInfo()->size == 1 ? 0 : 1; in RunSelectAndCheckResult()
62 auto input0Ptr = input0->readMap<float>(); in RunSelectAndCheckResult()
84 auto input0 = _Input({N}, NCHW); in SelectTester1D() local
88 CHECK_OR_RETURN(RunSelectAndCheckResult(select, input0, input1)); in SelectTester1D()
92 CHECK_OR_RETURN(RunSelectAndCheckResult(select, input0, input1)); in SelectTester1D()
98 auto input0 = _Input({N, C, H, W}, NCHW); in SelectTester4D() local
102 CHECK_OR_RETURN(RunSelectAndCheckResult(select, input0, input1)); in SelectTester4D()
[all …]
/dports/misc/mnn/MNN-1.2.0/source/backend/hiai/execution/
H A DNPUBinary.cpp24 .set_input_x1(input0) in OpInsert()
30 .set_input_x(input0) in OpInsert()
36 .set_input_x1(input0) in OpInsert()
42 .set_input_x1(input0) in OpInsert()
48 .set_input_x1(input0) in OpInsert()
54 .set_input_x1(input0) in OpInsert()
60 .set_input_x1(input0) in OpInsert()
66 .set_input_x1(input0) in OpInsert()
89 auto input0 = inputs[1]; in NPUBinary() local
117 auto input0 = inputs[0]; in NPUBinary() local
[all …]
/dports/misc/mnn/MNN-1.2.0/source/backend/opengl/
H A DGLBinary.cpp51 auto input0 = inputs[0]; in onExecute() local
55 std::vector<int> inputShape = tensorShapeFormat(input0); in onExecute()
70 MNN_ASSERT(input0->getType().code == halide_type_float); in onExecute()
71 MNN_ASSERT(input0->dimensions() == input1->dimensions()); in onExecute()
73 const auto intputFormat = TensorUtils::getDescribe(input0)->dimensionFormat; in onExecute()
81 glBindTexture(GL_TEXTURE_3D, input0->deviceId()); in onExecute()
105 auto input0 = inputs[0]; in onCreate() local
109 if (input0->dimensions() != input->dimensions()) { in onCreate()
114 auto dim = input0->dimensions(); in onCreate()
116 if (input0->length(l) != input->length(l)) { in onCreate()
[all …]

12345678910>>...58