github.com/apache/arrow/go/v14@v14.0.2/internal/utils/transpose_ints_noasm.go (about) 1 // Code generated by transpose_ints_noasm.go.tmpl. DO NOT EDIT. 2 3 // Licensed to the Apache Software Foundation (ASF) under one 4 // or more contributor license agreements. See the NOTICE file 5 // distributed with this work for additional information 6 // regarding copyright ownership. The ASF licenses this file 7 // to you under the Apache License, Version 2.0 (the 8 // "License"); you may not use this file except in compliance 9 // with the License. You may obtain a copy of the License at 10 // 11 // http://www.apache.org/licenses/LICENSE-2.0 12 // 13 // Unless required by applicable law or agreed to in writing, software 14 // distributed under the License is distributed on an "AS IS" BASIS, 15 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 // See the License for the specific language governing permissions and 17 // limitations under the License. 18 19 //go:build noasm || (!amd64 && !arm64 && !s390x && !ppc64le) 20 21 package utils 22 23 // if building with the 'noasm' tag, then point to the pure go implementations 24 var ( 25 TransposeInt8Int8 = transposeInt8Int8 26 TransposeInt8Uint8 = transposeInt8Uint8 27 TransposeInt8Int16 = transposeInt8Int16 28 TransposeInt8Uint16 = transposeInt8Uint16 29 TransposeInt8Int32 = transposeInt8Int32 30 TransposeInt8Uint32 = transposeInt8Uint32 31 TransposeInt8Int64 = transposeInt8Int64 32 TransposeInt8Uint64 = transposeInt8Uint64 33 34 TransposeUint8Int8 = transposeUint8Int8 35 TransposeUint8Uint8 = transposeUint8Uint8 36 TransposeUint8Int16 = transposeUint8Int16 37 TransposeUint8Uint16 = transposeUint8Uint16 38 TransposeUint8Int32 = transposeUint8Int32 39 TransposeUint8Uint32 = transposeUint8Uint32 40 TransposeUint8Int64 = transposeUint8Int64 41 TransposeUint8Uint64 = transposeUint8Uint64 42 43 TransposeInt16Int8 = transposeInt16Int8 44 TransposeInt16Uint8 = transposeInt16Uint8 45 TransposeInt16Int16 = transposeInt16Int16 46 TransposeInt16Uint16 = transposeInt16Uint16 47 TransposeInt16Int32 = transposeInt16Int32 48 TransposeInt16Uint32 = transposeInt16Uint32 49 TransposeInt16Int64 = transposeInt16Int64 50 TransposeInt16Uint64 = transposeInt16Uint64 51 52 TransposeUint16Int8 = transposeUint16Int8 53 TransposeUint16Uint8 = transposeUint16Uint8 54 TransposeUint16Int16 = transposeUint16Int16 55 TransposeUint16Uint16 = transposeUint16Uint16 56 TransposeUint16Int32 = transposeUint16Int32 57 TransposeUint16Uint32 = transposeUint16Uint32 58 TransposeUint16Int64 = transposeUint16Int64 59 TransposeUint16Uint64 = transposeUint16Uint64 60 61 TransposeInt32Int8 = transposeInt32Int8 62 TransposeInt32Uint8 = transposeInt32Uint8 63 TransposeInt32Int16 = transposeInt32Int16 64 TransposeInt32Uint16 = transposeInt32Uint16 65 TransposeInt32Int32 = transposeInt32Int32 66 TransposeInt32Uint32 = transposeInt32Uint32 67 TransposeInt32Int64 = transposeInt32Int64 68 TransposeInt32Uint64 = transposeInt32Uint64 69 70 TransposeUint32Int8 = transposeUint32Int8 71 TransposeUint32Uint8 = transposeUint32Uint8 72 TransposeUint32Int16 = transposeUint32Int16 73 TransposeUint32Uint16 = transposeUint32Uint16 74 TransposeUint32Int32 = transposeUint32Int32 75 TransposeUint32Uint32 = transposeUint32Uint32 76 TransposeUint32Int64 = transposeUint32Int64 77 TransposeUint32Uint64 = transposeUint32Uint64 78 79 TransposeInt64Int8 = transposeInt64Int8 80 TransposeInt64Uint8 = transposeInt64Uint8 81 TransposeInt64Int16 = transposeInt64Int16 82 TransposeInt64Uint16 = transposeInt64Uint16 83 TransposeInt64Int32 = transposeInt64Int32 84 TransposeInt64Uint32 = transposeInt64Uint32 85 TransposeInt64Int64 = transposeInt64Int64 86 TransposeInt64Uint64 = transposeInt64Uint64 87 88 TransposeUint64Int8 = transposeUint64Int8 89 TransposeUint64Uint8 = transposeUint64Uint8 90 TransposeUint64Int16 = transposeUint64Int16 91 TransposeUint64Uint16 = transposeUint64Uint16 92 TransposeUint64Int32 = transposeUint64Int32 93 TransposeUint64Uint32 = transposeUint64Uint32 94 TransposeUint64Int64 = transposeUint64Int64 95 TransposeUint64Uint64 = transposeUint64Uint64 96 )