Home
last modified time | relevance | path

Searched refs:rowId (Results 1 – 25 of 769) sorted by relevance

12345678910>>...31

/dports/devel/spark/spark-2.1.1/sql/core/src/main/java/org/apache/spark/sql/execution/vectorized/
H A DOnHeapColumnVector.java79 nulls[rowId] = (byte)0; in putNotNull()
84 nulls[rowId] = (byte)1; in putNull()
108 return nulls[rowId] == 1; in isNullAt()
141 byteData[rowId] = value; in putByte()
202 intData[rowId] = value; in putInt()
223 intData[i + rowId] = java.lang.Integer.reverseBytes(intData[i + rowId]); in putIntsLittleEndian()
245 return intData[rowId]; in getDictId()
275 longData[i + rowId] = java.lang.Long.reverseBytes(longData[i + rowId]); in putLongsLittleEndian()
294 public void putFloat(int rowId, float value) { floatData[rowId] = value; } in putFloat() argument
298 Arrays.fill(floatData, rowId, rowId + count, value); in putFloats()
[all …]
H A DOffHeapColumnVector.java82 public void putNotNull(int rowId) { in putNotNull() argument
87 public void putNull(int rowId) { in putNull() argument
95 long offset = nulls + rowId; in putNulls()
106 long offset = nulls + rowId; in putNotNulls()
135 public boolean getBoolean(int rowId) { return Platform.getByte(null, data + rowId) == 1; } in getBoolean() argument
160 public byte getByte(int rowId) { in getByte() argument
179 long offset = data + 2 * rowId; in putShorts()
211 long offset = data + 4 * rowId; in putInts()
239 public int getInt(int rowId) { in getInt() argument
252 public int getDictId(int rowId) { in getDictId() argument
[all …]
H A DColumnarBatch.java94 protected int rowId; field in ColumnarBatch.Row
339 int rowId = 0; in rowIterator()
343 while (rowId < maxRows && ColumnarBatch.this.filteredRows[rowId]) { in rowIterator()
344 ++rowId; in rowIterator()
351 while (rowId < maxRows && ColumnarBatch.this.filteredRows[rowId]) { in rowIterator()
352 ++rowId; in rowIterator()
357 row.rowId = rowId++; in rowIterator()
392 for (int rowId = 0; rowId < numRows; rowId++) { in setNumRows()
393 if (!filteredRows[rowId] && columns[ordinal].isNullAt(rowId)) { in setNumRows()
445 assert(rowId >= 0); in getRow()
[all …]
H A DColumnVector.java337 public abstract void putNull(int rowId); in putNull() argument
383 public abstract byte getByte(int rowId); in getByte() argument
429 public abstract int getInt(int rowId); in getInt() argument
436 public abstract int getDictId(int rowId); in getDictId() argument
462 public abstract long getLong(int rowId); in getLong() argument
537 resultStruct.rowId = rowId; in getStruct()
546 resultStruct.rowId = rowId; in getStruct()
553 public final Array getArray(int rowId) { in getArray() argument
575 private Array getByteArray(int rowId) { in getByteArray() argument
576 Array array = getArray(rowId); in getByteArray()
[all …]
/dports/devel/spark/spark-2.1.1/sql/core/src/main/java/org/apache/spark/sql/execution/datasources/parquet/
H A DVectorizedRleValuesReader.java191 c.putNulls(rowId, n); in readIntegers()
204 rowId += n; in readIntegers()
235 rowId += n; in readBooleans()
265 rowId += n; in readBytes()
297 rowId += n; in readShorts()
327 rowId += n; in readLongs()
357 rowId += n; in readFloats()
387 rowId += n; in readDoubles()
417 rowId += n; in readBinarys()
451 rowId += n; in readIntegers()
[all …]
H A DVectorizedColumnReader.java223 for (int i = rowId; i < rowId + num; ++i) { in decodeDictionaryIds()
229 for (int i = rowId; i < rowId + num; ++i) { in decodeDictionaryIds()
235 for (int i = rowId; i < rowId + num; ++i) { in decodeDictionaryIds()
248 for (int i = rowId; i < rowId + num; ++i) { in decodeDictionaryIds()
259 for (int i = rowId; i < rowId + num; ++i) { in decodeDictionaryIds()
267 for (int i = rowId; i < rowId + num; ++i) { in decodeDictionaryIds()
275 for (int i = rowId; i < rowId + num; ++i) { in decodeDictionaryIds()
291 for (int i = rowId; i < rowId + num; ++i) { in decodeDictionaryIds()
301 for (int i = rowId; i < rowId + num; ++i) { in decodeDictionaryIds()
308 for (int i = rowId; i < rowId + num; ++i) { in decodeDictionaryIds()
[all …]
H A DVectorizedPlainValuesReader.java59 public final void readBooleans(int total, ColumnVector c, int rowId) { in readBooleans() argument
62 c.putBoolean(rowId + i, readBoolean()); in readBooleans()
67 public final void readIntegers(int total, ColumnVector c, int rowId) { in readIntegers() argument
73 public final void readLongs(int total, ColumnVector c, int rowId) { in readLongs() argument
79 public final void readFloats(int total, ColumnVector c, int rowId) { in readFloats() argument
80 c.putFloats(rowId, total, buffer, offset - Platform.BYTE_ARRAY_OFFSET); in readFloats()
85 public final void readDoubles(int total, ColumnVector c, int rowId) { in readDoubles() argument
86 c.putDoubles(rowId, total, buffer, offset - Platform.BYTE_ARRAY_OFFSET); in readDoubles()
91 public final void readBytes(int total, ColumnVector c, int rowId) { in readBytes() argument
95 c.putByte(rowId + i, Platform.getByte(buffer, offset)); in readBytes()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Reflection.Metadata/src/System/Reflection/Metadata/PortablePdb/
H A DHasCustomDebugInformationTag.cs119 uint rowId = (taggedReference >> NumberOfBits); in ConvertToHandle()
126 return new EntityHandle(tokenType | rowId); in ConvertToHandle()
132 uint rowId = (uint)handle.RowId; in ConvertToTag()
138 return rowId << NumberOfBits | Field; in ConvertToTag()
140 return rowId << NumberOfBits | TypeRef; in ConvertToTag()
142 return rowId << NumberOfBits | TypeDef; in ConvertToTag()
144 return rowId << NumberOfBits | Param; in ConvertToTag()
150 return rowId << NumberOfBits | Module; in ConvertToTag()
156 return rowId << NumberOfBits | Event; in ConvertToTag()
168 return rowId << NumberOfBits | File; in ConvertToTag()
[all …]
H A DHandles.Debug.cs16 private DocumentHandle(int rowId) in DocumentHandle()
19 _rowId = rowId; in DocumentHandle()
24 return new DocumentHandle(rowId); in FromRowId()
102 _rowId = rowId; in MethodDebugInformationHandle()
194 private LocalScopeHandle(int rowId) in LocalScopeHandle()
197 _rowId = rowId; in LocalScopeHandle()
280 _rowId = rowId; in LocalVariableHandle()
363 _rowId = rowId; in LocalConstantHandle()
443 private ImportScopeHandle(int rowId) in ImportScopeHandle()
446 _rowId = rowId; in ImportScopeHandle()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Reflection.Metadata/src/System/Reflection/Metadata/Internal/
H A DHasCustomAttributeTag.cs112 return new EntityHandle(tokenType | rowId); in ConvertToHandle()
118 uint rowId = (uint)handle.RowId; in ConvertToTag()
124 return rowId << NumberOfBits | Field; in ConvertToTag()
126 return rowId << NumberOfBits | TypeRef; in ConvertToTag()
128 return rowId << NumberOfBits | TypeDef; in ConvertToTag()
130 return rowId << NumberOfBits | Param; in ConvertToTag()
136 return rowId << NumberOfBits | Module; in ConvertToTag()
140 return rowId << NumberOfBits | Property; in ConvertToTag()
142 return rowId << NumberOfBits | Event; in ConvertToTag()
148 return rowId << NumberOfBits | TypeSpec; in ConvertToTag()
[all …]
H A DTables.cs192 internal int GetFieldStart(int rowId) in GetFieldStart()
198 internal int GetMethodStart(int rowId) in GetMethodStart()
442 internal int GetParamStart(int rowId) in GetParamStart()
1052 internal uint GetClassSize(int rowId) in GetClassSize()
1120 internal uint GetOffset(int rowId) in GetOffset()
1372 int rowId in GetPropertyFor()
1777 internal int GetRva(int rowId) in GetRva()
1826 internal uint GetToken(int rowId) in GetToken()
1857 internal uint GetToken(int rowId) in GetToken()
2246 internal int GetTypeDefId(int rowId) in GetTypeDefId()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Data.OracleClient/Test/System.Data.OracleClient.jvm/OracleType/
H A DOracleType_Date.cs95 string rowId = "54416_"; in run()
136 CleanTestRow(rowId); in run()
176 CleanTestRow(rowId); in run()
213 CleanTestRow(rowId); in run()
250 CleanTestRow(rowId); in run()
287 CleanTestRow(rowId); in run()
324 CleanTestRow(rowId); in run()
361 CleanTestRow(rowId); in run()
406 CleanTestRow(rowId); in run()
444 CleanTestRow(rowId); in run()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Reflection.Metadata/src/System/Reflection/Metadata/TypeSystem/
H A DHandles.TypeSystem.cs19 _rowId = rowId; in ModuleDefinitionHandle()
102 _rowId = rowId; in AssemblyDefinitionHandle()
185 _rowId = rowId; in InterfaceImplementationHandle()
268 _rowId = rowId; in MethodDefinitionHandle()
363 _rowId = rowId; in MethodImplementationHandle()
446 _rowId = rowId; in MethodSpecificationHandle()
529 _rowId = rowId; in TypeDefinitionHandle()
612 _rowId = rowId; in ExportedTypeHandle()
695 _rowId = rowId; in TypeReferenceHandle()
778 _rowId = rowId; in TypeSpecificationHandle()
[all …]
H A DExportedType.cs14 internal readonly int rowId; field
16 internal ExportedType(MetadataReader reader, int rowId) in ExportedType()
19 Debug.Assert(rowId != 0); in ExportedType()
22 this.rowId = rowId; in ExportedType()
27 get { return ExportedTypeHandle.FromRowId(rowId); }
32 get { return reader.ExportedTypeTable.GetFlags(rowId); }
45 get { return reader.ExportedTypeTable.GetTypeName(rowId); }
55 return reader.ExportedTypeTable.GetTypeNamespaceString(rowId);
68 return reader.ExportedTypeTable.GetTypeNamespace(rowId);
86 return reader.ExportedTypeTable.GetImplementation(rowId);
/dports/science/apbs/apbs-pdb2pqr-apbs-1.5-102-g500c1473/apbs/include/Eigen/src/Core/
H A DSwap.h52 inline Scalar& coeffRef(Index rowId, Index colId)
62 inline Scalar& coeffRef(Index rowId, Index colId) const
64 return m_expression.coeffRef(rowId, colId);
76 eigen_internal_assert(rowId >= 0 && rowId < rows()
78 Scalar tmp = m_expression.coeff(rowId, colId);
79 m_expression.coeffRef(rowId, colId) = _other.coeff(rowId, colId);
80 _other.coeffRef(rowId, colId) = tmp;
97 eigen_internal_assert(rowId >= 0 && rowId < rows()
100 m_expression.template writePacket<StoreMode>(rowId, colId,
101 _other.template packet<LoadMode>(rowId, colId)
[all …]
H A DArrayWrapper.h61 inline CoeffReturnType coeff(Index rowId, Index colId) const
63 return m_expression.coeff(rowId, colId);
66 inline Scalar& coeffRef(Index rowId, Index colId)
71 inline const Scalar& coeffRef(Index rowId, Index colId) const
92 inline const PacketScalar packet(Index rowId, Index colId) const
94 return m_expression.template packet<LoadMode>(rowId, colId);
181 inline CoeffReturnType coeff(Index rowId, Index colId) const
183 return m_expression.coeff(rowId, colId);
186 inline Scalar& coeffRef(Index rowId, Index colId)
191 inline const Scalar& coeffRef(Index rowId, Index colId) const
[all …]
/dports/math/libmesh/libmesh-1.6.2/contrib/eigen/3.2.9/Eigen/src/Core/
H A DSwap.h52 inline Scalar& coeffRef(Index rowId, Index colId)
62 inline Scalar& coeffRef(Index rowId, Index colId) const
64 return m_expression.coeffRef(rowId, colId);
76 eigen_internal_assert(rowId >= 0 && rowId < rows()
78 Scalar tmp = m_expression.coeff(rowId, colId);
79 m_expression.coeffRef(rowId, colId) = _other.coeff(rowId, colId);
80 _other.coeffRef(rowId, colId) = tmp;
97 eigen_internal_assert(rowId >= 0 && rowId < rows()
100 m_expression.template writePacket<StoreMode>(rowId, colId,
101 _other.template packet<LoadMode>(rowId, colId)
[all …]
H A DArrayWrapper.h66 inline CoeffReturnType coeff(Index rowId, Index colId) const
68 return m_expression.coeff(rowId, colId);
71 inline Scalar& coeffRef(Index rowId, Index colId)
76 inline const Scalar& coeffRef(Index rowId, Index colId) const
97 inline const PacketScalar packet(Index rowId, Index colId) const
99 return m_expression.template packet<LoadMode>(rowId, colId);
191 inline CoeffReturnType coeff(Index rowId, Index colId) const
193 return m_expression.coeff(rowId, colId);
196 inline Scalar& coeffRef(Index rowId, Index colId)
201 inline const Scalar& coeffRef(Index rowId, Index colId) const
[all …]
/dports/graphics/wdune/wdune-1.926/vcglib/eigenlib/Eigen/src/Core/
H A DSwap.h52 inline Scalar& coeffRef(Index rowId, Index colId)
62 inline Scalar& coeffRef(Index rowId, Index colId) const
64 return m_expression.coeffRef(rowId, colId);
76 eigen_internal_assert(rowId >= 0 && rowId < rows()
78 Scalar tmp = m_expression.coeff(rowId, colId);
79 m_expression.coeffRef(rowId, colId) = _other.coeff(rowId, colId);
80 _other.coeffRef(rowId, colId) = tmp;
97 eigen_internal_assert(rowId >= 0 && rowId < rows()
100 m_expression.template writePacket<StoreMode>(rowId, colId,
101 _other.template packet<LoadMode>(rowId, colId)
[all …]
H A DArrayWrapper.h66 inline CoeffReturnType coeff(Index rowId, Index colId) const
68 return m_expression.coeff(rowId, colId);
71 inline Scalar& coeffRef(Index rowId, Index colId)
76 inline const Scalar& coeffRef(Index rowId, Index colId) const
97 inline const PacketScalar packet(Index rowId, Index colId) const
99 return m_expression.template packet<LoadMode>(rowId, colId);
191 inline CoeffReturnType coeff(Index rowId, Index colId) const
193 return m_expression.coeff(rowId, colId);
196 inline Scalar& coeffRef(Index rowId, Index colId)
201 inline const Scalar& coeffRef(Index rowId, Index colId) const
[all …]
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/libs/sqlite/
H A Dlastchangedrowid.h70 void operator()(long long rowId) { lastRowId = rowId; } in operator()
72 static void callbackOnlyRowId(void *object, int, char const *, char const *, long long rowId) in callbackOnlyRowId() argument
74 (*static_cast<LastChangedRowId *>(object))(rowId); in callbackOnlyRowId()
82 void operator()(Utils::SmallStringView database, long long rowId) in operator()
85 lastRowId = rowId; in operator()
89 void *object, int, char const *database, char const *, long long rowId) in callbackWithDatabase() argument
91 (*static_cast<LastChangedRowId *>(object))(Utils::SmallStringView{database}, rowId); in callbackWithDatabase()
94 void operator()(Utils::SmallStringView database, Utils::SmallStringView table, long long rowId) in operator()
97 lastRowId = rowId; in operator()
101 void *object, int, char const *database, char const *table, long long rowId) in callbackWithTables() argument
[all …]
/dports/science/nwchem/nwchem-7b21660b82ebd85ef659f6fba7e1e73433b0bd0a/src/tce/ttlg/
H A Dfvinomatchg32.cu25 int rowId = id%32; in fvinomatchg32_main() local
33 tile[j * SHM2 + rowId] = Atmp[rowId + j * lda1]; in fvinomatchg32_main()
39 Btmp[j * ldb1 + rowId] =tile[rowId * SHM2 + j]; in fvinomatchg32_main()
52 int rowId = id%32; in fvinomatchg32_rem() local
59 tile[j * SHM2 + rowId] = Atmp[rowId + j * lda1]; in fvinomatchg32_rem()
67 Btmp[j * ldb1 + rowId] =tile[rowId * SHM2 + j]; in fvinomatchg32_rem()
78 int rowId = id%32; in fvinomatchg32_main_coars() local
88 tile[j * SHM2 + rowId] = Atmp[i*acoars+rowId + j * lda1]; in fvinomatchg32_main_coars()
93 Btmp[i*bcoars +j * ldb1 + rowId] =tile[rowId * SHM2 + j]; in fvinomatchg32_main_coars()
120 tile[j * SHM2 + rowId] = Atmp[i*acoars+rowId + j * lda1]; in fvinomatchg32_rem_coars()
[all …]
/dports/science/nwchem-data/nwchem-7.0.2-release/src/tce/ttlg/
H A Dfvinomatchg32.cu25 int rowId = id%32; in fvinomatchg32_main() local
33 tile[j * SHM2 + rowId] = Atmp[rowId + j * lda1]; in fvinomatchg32_main()
39 Btmp[j * ldb1 + rowId] =tile[rowId * SHM2 + j]; in fvinomatchg32_main()
52 int rowId = id%32; in fvinomatchg32_rem() local
59 tile[j * SHM2 + rowId] = Atmp[rowId + j * lda1]; in fvinomatchg32_rem()
67 Btmp[j * ldb1 + rowId] =tile[rowId * SHM2 + j]; in fvinomatchg32_rem()
78 int rowId = id%32; in fvinomatchg32_main_coars() local
88 tile[j * SHM2 + rowId] = Atmp[i*acoars+rowId + j * lda1]; in fvinomatchg32_main_coars()
93 Btmp[i*bcoars +j * ldb1 + rowId] =tile[rowId * SHM2 + j]; in fvinomatchg32_main_coars()
120 tile[j * SHM2 + rowId] = Atmp[i*acoars+rowId + j * lda1]; in fvinomatchg32_rem_coars()
[all …]
/dports/devel/spark/spark-2.1.1/sql/catalyst/src/main/java/org/apache/spark/sql/catalyst/expressions/
H A DFixedLengthRowBasedKeyValueBatch.java36 private long getKeyOffsetForFixedLengthRecords(int rowId) { in getKeyOffsetForFixedLengthRecords() argument
37 return recordStartOffset + rowId * (long) recordLength; in getKeyOffsetForFixedLengthRecords()
74 public UnsafeRow getKeyRow(int rowId) { in getKeyRow() argument
75 assert(rowId >= 0); in getKeyRow()
76 assert(rowId < numRows); in getKeyRow()
78 long offset = getKeyOffsetForFixedLengthRecords(rowId); in getKeyRow()
81 keyRowId = rowId; in getKeyRow()
93 protected UnsafeRow getValueFromKey(int rowId) {
94 if (keyRowId != rowId) {
95 getKeyRow(rowId);
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Data.OracleClient/Test/System.Data.OracleClient.jvm/OracleCommand/
H A DOracleCommand_Parameters.cs112 string rowId = string.Empty; in TypesSubTests()
119 rowId = string.Format("13282_{0}", this.TestCaseNumber); in TypesSubTests()
122 affectedRows = currentlyTested.ExecuteInsert(rowId); in TypesSubTests()
133 currentlyTested.ExecuteDelete(rowId); in TypesSubTests()
156 string rowId = string .Empty; in DoTestTimeOnDB2()
161 rowId = "13282_" + this.TestCaseNumber.ToString(); in DoTestTimeOnDB2()
165 …T INTO {0} (ID, T_TIME) VALUES ('{1}', ?)",ConnectedDataProvider.EXTENDED_TYPES_TABLE_NAME ,rowId); in DoTestTimeOnDB2()
179 … DbTypeParametersCollection.ExecuteDelete(ConnectedDataProvider.EXTENDED_TYPES_TABLE_NAME, rowId); in DoTestTimeOnDB2()
195 string rowId = string .Empty; in DoTestTimeOnDB2_bug3391()
199 rowId = "13282_" + this.TestCaseNumber.ToString(); in DoTestTimeOnDB2_bug3391()
[all …]

12345678910>>...31