/external/llvm/lib/Transforms/Vectorize/ |
SLPVectorizer.cpp | 443 /// context means the creation of vectors from a group of scalars. 455 /// \returns a vector from a collection of scalars in \p VL. 473 TreeEntry() : Scalars(), VectorizedValue(nullptr), 476 /// \returns true if the scalars in VL are equal to this entry. 478 assert(VL.size() == Scalars.size() && "Invalid size"); 479 return std::equal(VL.begin(), VL.end(), Scalars.begin()); 482 /// A vector of scalars. 483 ValueList Scalars; 485 /// The Scalars are vectorized into this value. It is initialized to Null. 497 Last->Scalars.insert(Last->Scalars.begin(), VL.begin(), VL.end()) [all...] |
/external/mesa3d/src/mesa/drivers/dri/r200/ |
r200_sanity.c | 615 static struct reg scalars[512+1]; variable in typeref:struct:reg 631 for (i = 0, tmp = scalar_names ; i < Elements(scalars) ; i++) { 633 scalars[i].idx = i; 634 scalars[i].closest = tmp; 635 scalars[i].flags = ISFLOAT; 646 scalars[Elements(scalars)-1].idx = -1; [all...] |
r200_state_init.c | 199 h.scalars.cmd_type = RADEON_CMD_SCALARS; 200 h.scalars.offset = offset; 201 h.scalars.stride = stride; 202 h.scalars.count = count; 210 h.scalars.cmd_type = RADEON_CMD_SCALARS2; 211 h.scalars.offset = offset - 0x100; 212 h.scalars.stride = stride; 213 h.scalars.count = count; 311 OUT_BATCH((h.scalars.offset) | (h.scalars.stride << RADEON_SCAL_INDX_DWORD_STRIDE_SHIFT)); [all...] |
/external/opencv3/modules/viz/src/ |
precomp.hpp | 280 vtkSmartPointer<vtkUnsignedCharArray> scalars = vtkSmartPointer<vtkUnsignedCharArray>::New(); local 281 scalars->SetName("Colors"); 282 scalars->SetNumberOfComponents(3); 283 scalars->SetNumberOfTuples((vtkIdType)size); 284 scalars->SetArray(color_data->val, (vtkIdType)(size * 3), 0); 285 return scalars;
|
/prebuilts/go/darwin-x86/src/crypto/elliptic/ |
elliptic_test.go | 342 scalars := make([]*big.Int, 0, len(p224BaseMultTests)+1) 345 scalars = append(scalars, k) 349 scalars = append(scalars, k) 351 for i, k := range scalars {
|
/prebuilts/go/linux-x86/src/crypto/elliptic/ |
elliptic_test.go | 342 scalars := make([]*big.Int, 0, len(p224BaseMultTests)+1) 345 scalars = append(scalars, k) 349 scalars = append(scalars, k) 351 for i, k := range scalars {
|
/external/eigen/lapack/ |
cladiv.f | 49 *> The complex scalars X and Y. 78 * .. Local Scalars ..
|
zladiv.f | 49 *> The complex scalars X and Y. 78 * .. Local Scalars ..
|
dladiv.f | 64 *> The scalars a, b, c, and d in the above expression. 75 *> The scalars p and q in the above expression. 104 * .. Local Scalars ..
|
sladiv.f | 64 *> The scalars a, b, c, and d in the above expression. 75 *> The scalars p and q in the above expression. 104 * .. Local Scalars ..
|
clarfg.f | 43 *> where alpha and beta are scalars, with beta real, and x is an 128 * .. Local Scalars ..
|
dlarfg.f | 43 *> where alpha and beta are scalars, and x is an (n-1)-element real 128 * .. Local Scalars ..
|
/external/vulkan-validation-layers/libs/glm/gtx/ |
transform.hpp | 57 /// Transforms a matrix with a translation 4 * 4 matrix created from 3 scalars. 64 /// Builds a rotation 4 * 4 matrix created from an axis of 3 scalars and an angle expressed in degrees.
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/random/ |
GaussianRandomGenerator.java | 21 * This class is a gaussian normalized random generator for scalars.
|
/external/skia/include/effects/ |
SkBlurMaskFilter.h | 45 @param direction array of 3 scalars [x, y, z] specifying the direction of the light source
|
/external/skia/include/utils/ |
SkTextBox.h | 23 of text. Spacing consists of two scalars: mul and add, and the spacing
|
/external/cblas/testing/ |
c_dblat1.f | 8 * .. Scalars in Common .. 11 * .. Local Scalars .. 58 * .. Scalars in Common .. 88 * .. Scalars in Common .. 91 * .. Local Scalars .. 149 * .. Scalars in Common .. 152 * .. Local Scalars .. 243 * .. Scalars in Common .. 246 * .. Local Scalars .. 398 * .. Scalars in Common . [all...] |
c_sblat1.f | 8 * .. Scalars in Common .. 11 * .. Local Scalars .. 58 * .. Scalars in Common .. 88 * .. Scalars in Common .. 91 * .. Local Scalars .. 149 * .. Scalars in Common .. 152 * .. Local Scalars .. 243 * .. Scalars in Common .. 246 * .. Local Scalars .. 398 * .. Scalars in Common . [all...] |
/external/deqp/modules/gles2/scripts/ |
genutil.py | 574 def __init__ (self, numCols, numRows, scalars): 575 assert len(scalars) == numRows*numCols 578 self.scalars = scalars 582 scalars = [] 585 scalars.append(1.0 if col == row else 0.0) 586 return Mat(numCols, numRows, scalars) 591 return self.scalars[colNdx*self.numRows + rowNdx] 596 self.scalars[colNdx*self.numRows + rowNdx] = scalar 622 return "%s(%s)" % (self.typeString(), ", ".join([str(s) for s in self.scalars])) [all...] |
gen-conversions.py | 35 # - scalars types 82 scalars = reduce(operator.add, [x[ndx].toFloat().getScalars() for x in comps]) 83 # print "->", scalars 84 res.append(Vec.fromScalarList(scalars)) 102 scalars = reduce(operator.add, [x[ndx].toFloat().getScalars() for x in comps]) 103 res.append(Mat(numCols, numRows, scalars))
|
/external/deqp/modules/gles3/scripts/ |
gen-conversions.py | 35 # - scalars types 82 scalars = reduce(operator.add, [x[ndx].toFloat().getScalars() for x in comps]) 83 # print "->", scalars 84 res.append(Vec.fromScalarList(scalars)) 105 scalars = reduce(operator.add, [x[ndx].toFloat().getScalars() for x in comps]) 106 res.append(Mat(numCols, numRows, scalars))
|
/external/llvm/include/llvm/Transforms/Utils/ |
PromoteMemToReg.h | 1 //===- PromoteMemToReg.h - Promote Allocas to Scalars -----------*- C++ -*-===//
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_bld_blend.h | 84 * are scalars, or a vector.
|
/external/skia/src/gpu/ |
GrStrokeInfo.cpp | 67 // scalars having more strict alignment requirements than what data can guarantee. The
|
/external/clang/test/SemaOpenCL/ |
cond.cl | 15 // all scalars, but widths do not match. 26 // scalar condition and mixed-width vectors and scalars
|