/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
D | FieldVector.java | 66 FieldVector<T> add(FieldVector<T> v) in add() method 75 FieldVector<T> add(T[] v) in add() method 101 FieldVector<T> mapAdd(T d); in mapAdd() 109 FieldVector<T> mapAddToSelf(T d); in mapAddToSelf() 116 FieldVector<T> mapSubtract(T d); in mapSubtract() 124 FieldVector<T> mapSubtractToSelf(T d); in mapSubtractToSelf() 131 FieldVector<T> mapMultiply(T d); in mapMultiply() 139 FieldVector<T> mapMultiplyToSelf(T d); in mapMultiplyToSelf() 146 FieldVector<T> mapDivide(T d); in mapDivide() 154 FieldVector<T> mapDivideToSelf(T d); in mapDivideToSelf() [all …]
|
D | SparseFieldVector.java | 139 public FieldVector<T> add(SparseFieldVector<T> v) throws IllegalArgumentException { in add() method in SparseFieldVector 159 public FieldVector<T> add(T[] v) throws IllegalArgumentException { in add() method in SparseFieldVector 193 public FieldVector<T> append(T d) { in append() 336 public FieldVector<T> mapAdd(T d) { in mapAdd() 341 public FieldVector<T> mapAddToSelf(T d) { in mapAddToSelf() 349 public FieldVector<T> mapDivide(T d) { in mapDivide() 354 public FieldVector<T> mapDivideToSelf(T d) { in mapDivideToSelf() 377 public FieldVector<T> mapMultiply(T d) { in mapMultiply() 382 public FieldVector<T> mapMultiplyToSelf(T d) { in mapMultiplyToSelf() 392 public FieldVector<T> mapSubtract(T d) { in mapSubtract() [all …]
|
D | ArrayFieldVector.java | 92 public ArrayFieldVector(T[] d) in ArrayFieldVector() 109 public ArrayFieldVector(Field<T> field, T[] d) { in ArrayFieldVector() 135 public ArrayFieldVector(T[] d, boolean copyArray) in ArrayFieldVector() 158 public ArrayFieldVector(Field<T> field, T[] d, boolean copyArray) { in ArrayFieldVector() 169 public ArrayFieldVector(T[] d, int pos, int size) { in ArrayFieldVector() 310 public FieldVector<T> add(FieldVector<T> v) throws IllegalArgumentException { in add() method in ArrayFieldVector 324 public FieldVector<T> add(T[] v) throws IllegalArgumentException { in add() method in ArrayFieldVector 339 public ArrayFieldVector<T> add(ArrayFieldVector<T> v) in add() method in ArrayFieldVector 380 public FieldVector<T> mapAdd(T d) { in mapAdd() 389 public FieldVector<T> mapAddToSelf(T d) { in mapAddToSelf() [all …]
|
D | RealVector.java | 153 RealVector add(RealVector v); in add() method 163 RealVector add(double[] v); in add() method 192 RealVector mapAdd(double d); in mapAdd() 201 RealVector mapAddToSelf(double d); in mapAddToSelf() 209 RealVector mapSubtract(double d); in mapSubtract() 218 RealVector mapSubtractToSelf(double d); in mapSubtractToSelf() 226 RealVector mapMultiply(double d); in mapMultiply() 235 RealVector mapMultiplyToSelf(double d); in mapMultiplyToSelf() 243 RealVector mapDivide(double d); in mapDivide() 252 RealVector mapDivideToSelf(double d); in mapDivideToSelf() [all …]
|
D | ArrayRealVector.java | 80 public ArrayRealVector(double[] d) { in ArrayRealVector() 96 public ArrayRealVector(double[] d, boolean copyArray) { in ArrayRealVector() 106 public ArrayRealVector(double[] d, int pos, int size) { in ArrayRealVector() 119 public ArrayRealVector(Double[] d) { in ArrayRealVector() 132 public ArrayRealVector(Double[] d, int pos, int size) { in ArrayRealVector() 259 public RealVector add(RealVector v) in add() method in ArrayRealVector 277 public RealVector add(double[] v) in add() method in ArrayRealVector 293 public ArrayRealVector add(ArrayRealVector v) in add() method in ArrayRealVector 341 public RealVector mapAddToSelf(double d) { in mapAddToSelf() 350 public RealVector mapSubtractToSelf(double d) { in mapSubtractToSelf() [all …]
|
D | AbstractRealVector.java | 59 int d = getDimension(); in checkVectorDimensions() local 95 public RealVector add(double[] v) throws IllegalArgumentException { in add() method in AbstractRealVector 106 public RealVector add(RealVector v) throws IllegalArgumentException { in add() method in AbstractRealVector 150 public RealVector mapAdd(double d) { in mapAdd() 155 public RealVector mapAddToSelf(double d) { in mapAddToSelf() 177 double d = 0; in dotProduct() local 199 double d = 0; in getDistance() local 251 double d = 0; in getL1Distance() local 263 double d = 0; in getL1Distance() local 275 double d = 0; in getLInfDistance() local [all …]
|
D | OpenMapRealVector.java | 213 public RealVector add(RealVector v) throws IllegalArgumentException { in add() method in OpenMapRealVector 228 public OpenMapRealVector add(OpenMapRealVector v) throws IllegalArgumentException{ in add() method in OpenMapRealVector 270 public OpenMapRealVector append(double d) { in append()
|
D | BigMatrix.java | 50 BigMatrix add(BigMatrix m) throws IllegalArgumentException; in add() method 67 BigMatrix scalarAdd(BigDecimal d); in scalarAdd() 75 BigMatrix scalarMultiply(BigDecimal d); in scalarMultiply()
|
D | AbstractRealMatrix.java | 78 public RealMatrix add(RealMatrix m) throws IllegalArgumentException { in add() method in AbstractRealMatrix 116 public RealMatrix scalarAdd(final double d) { in scalarAdd() 132 public RealMatrix scalarMultiply(final double d) { in scalarMultiply()
|
D | BigMatrixImpl.java | 129 public BigMatrixImpl(BigDecimal[][] d) { in BigMatrixImpl() 149 public BigMatrixImpl(BigDecimal[][] d, boolean copyArray) { in BigMatrixImpl() 188 public BigMatrixImpl(double[][] d) { in BigMatrixImpl() 218 public BigMatrixImpl(String[][] d) { in BigMatrixImpl() 272 public BigMatrix add(BigMatrix m) throws IllegalArgumentException { in add() method in BigMatrixImpl 301 public BigMatrixImpl add(BigMatrixImpl m) throws IllegalArgumentException { in add() method in BigMatrixImpl 381 public BigMatrix scalarAdd(BigDecimal d) { in scalarAdd() 400 public BigMatrix scalarMultiply(BigDecimal d) { in scalarMultiply() 511 final double d[][] = new double[nRows][nCols]; in getDataAsDoubleArray() local
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/environment/ |
D | AmbientCubemap.java | 84 public AmbientCubemap add (float r, float g, float b) { in add() method in AmbientCubemap 93 public AmbientCubemap add (final Color color) { in add() method in AmbientCubemap 97 …public AmbientCubemap add (final float r, final float g, final float b, final float x, final float… in add() method in AmbientCubemap 99 float d = x2 + y2 + z2; in add() local 118 public AmbientCubemap add (final Color color, final Vector3 direction) { in add() method in AmbientCubemap 122 public AmbientCubemap add (final float r, final float g, final float b, final Vector3 direction) { in add() method in AmbientCubemap 126 public AmbientCubemap add (final Color color, final float x, final float y, final float z) { in add() method in AmbientCubemap 130 public AmbientCubemap add (final Color color, final Vector3 point, final Vector3 target) { in add() method in AmbientCubemap 134 …public AmbientCubemap add (final Color color, final Vector3 point, final Vector3 target, final flo… in add() method in AmbientCubemap
|
/external/v8/test/cctest/ |
D | test-code-stubs-arm.cc | 101 __ add(source_reg, sp, Operand(source_reg_offset)); in MakeConvertDToIFuncTrampoline() local 107 __ add(sp, sp, Operand(kDoubleSize)); in MakeConvertDToIFuncTrampoline() local 118 __ add(sp, sp, Operand(kPointerSize)); in MakeConvertDToIFuncTrampoline() local 123 __ add(sp, sp, Operand(kDoubleSize)); in MakeConvertDToIFuncTrampoline() local 176 for (size_t d = 0; d < sizeof(dest_registers) / sizeof(Register); d++) { in TEST() local
|
D | test-code-stubs-x87.cc | 92 __ add(esp, Immediate(kDoubleSize)); in MakeConvertDToIFuncTrampoline() local 102 __ add(esp, Immediate(kPointerSize)); in MakeConvertDToIFuncTrampoline() local 148 for (size_t d = 0; d < sizeof(dest_registers) / sizeof(Register); d++) { in TEST() local
|
D | test-code-stubs-ia32.cc | 92 __ add(esp, Immediate(kDoubleSize)); in MakeConvertDToIFuncTrampoline() local 102 __ add(esp, Immediate(kPointerSize)); in MakeConvertDToIFuncTrampoline() local 148 for (size_t d = 0; d < sizeof(dest_registers) / sizeof(Register); d++) { in TEST() local
|
D | test-code-stubs-arm64.cc | 97 __ add(source_reg, jssp, Operand(source_reg_offset)); in MakeConvertDToIFuncTrampoline() local 181 for (size_t d = 0; d < sizeof(dest_registers) / sizeof(Register); d++) { in TEST() local
|
/external/clang/test/CodeGenCXX/ |
D | debug-info-template-member.cpp | 4 template <int i> int add(int j) { in add() function 99 virt<elem> d; // emit 'virt<elem>' in f2() local
|
/external/elfutils/lib/ |
D | sha1.c | 128 size_t add = 128 - left_over > len ? len : 128 - left_over; in sha1_process_bytes() local 195 #define FF(b, c, d) (d ^ (b & (c ^ d))) argument 196 #define FG(b, c, d) (b ^ c ^ d) argument 198 #define FH(b, c, d) (((b | c) & d) | (b & c)) argument 251 #define OP(i, a, b, c, d, e) \ in sha1_process_block() argument 285 #define OP(i, f, a, b, c, d, e, K) \ in sha1_process_block() argument
|
D | md5.c | 209 size_t add = 128 - left_over > len ? len : 128 - left_over; in md5_process_bytes() local 277 #define FF(b, c, d) (d ^ (b & (c ^ d))) argument 278 #define FG(b, c, d) FF (d, b, c) argument 279 #define FH(b, c, d) (b ^ c ^ d) argument 280 #define FI(b, c, d) (c ^ (b | ~d)) argument 321 #define OP(a, b, c, d, s, T) \ in md5_process_block() argument 363 #define OP(f, a, b, c, d, k, s, T) \ in md5_process_block() argument
|
/external/libvncserver/common/ |
D | md5.c | 220 size_t add = 128 - left_over > len ? len : 128 - left_over; local 288 #define FF(b, c, d) (d ^ (b & (c ^ d))) argument 289 #define FG(b, c, d) FF (d, b, c) argument 290 #define FH(b, c, d) (b ^ c ^ d) argument 291 #define FI(b, c, d) (c ^ (b | ~d)) argument 335 #define OP(a, b, c, d, s, T) \ argument 377 #define OP(f, a, b, c, d, k, s, T) \ argument
|
/external/jmonkeyengine/engine/src/core/com/jme3/math/ |
D | Vector4f.java | 177 public Vector4f add(Vector4f vec) { in add() method in Vector4f 196 public Vector4f add(Vector4f vec, Vector4f result) { in add() method in Vector4f 238 public Vector4f add(float addX, float addY, float addZ, float addW) { in add() method in Vector4f 273 public Vector4f scaleAdd(float scalar, Vector4f add) { in scaleAdd() 293 public Vector4f scaleAdd(float scalar, Vector4f mult, Vector4f add) { in scaleAdd() 320 float d = other.lengthSquared(); // |B|^2 in project() local
|
D | Vector3f.java | 168 public Vector3f add(Vector3f vec) { in add() method in Vector3f 187 public Vector3f add(Vector3f vec, Vector3f result) { in add() method in Vector3f 227 public Vector3f add(float addX, float addY, float addZ) { in add() method in Vector3f 261 public Vector3f scaleAdd(float scalar, Vector3f add) { in scaleAdd() 280 public Vector3f scaleAdd(float scalar, Vector3f mult, Vector3f add) { in scaleAdd() 388 float d = other.lengthSquared(); // |B|^2 in project() local
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/complex/ |
D | Complex.java | 149 public Complex add(Complex rhs) { in add() method in Complex 216 double d = rhs.getImaginary(); in divide() local 861 double d = FastMath.cos(real2) + MathUtils.cosh(imaginary2); in tan() local 899 double d = MathUtils.cosh(real2) + FastMath.cos(imaginary2); in tanh() local
|
/external/lldb/source/Plugins/Instruction/ARM/ |
D | EmulateInstructionARM.cpp | 934 uint32_t d; in EmulateMUL() local 1220 bool add; // +imm32 or -imm32? in EmulateLDRRtPCRelative() local 1306 uint32_t d; in EmulateADDSPImm() local 1909 bool add; in EmulateSTRRtSP() local 2015 uint32_t d; // UInt(D:Vd) or UInt(Vd:D) starting register in EmulateVPUSH() local 2111 uint32_t d; // UInt(D:Vd) or UInt(Vd:D) starting register in EmulateVPOP() local 2465 uint32_t d; in EmulateADDImmThumb() local 3883 bool add, index, wback; in EmulateLDRRtRnImm() local 4590 bool add; in EmulateSTRThumb() local 4757 bool add; in EmulateSTRRegister() local [all …]
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/duration/ |
D | ICUDurationTest.java | 53 long d = millis / 86400000L; in ICUTestDuration() local 74 ICUTestDuration(int sgn, int y, int months, int d, int h, int m, float s) { in ICUTestDuration() 91 public Duration add(Duration rhs) { in add() method in ICUDurationTest.ICUTestDuration 149 private static final ICUTestDuration newDuration(int sgn, int d, int h, int m, float s) { in newDuration() 218 Duration d; in TestSimpleXMLDuration() local 280 TestCase(String loc, String ds, Duration d, String exp) { in TestXMLDuration() 313 Duration d = tc.duration; in TestXMLDuration() local 420 Date d = new Date(target); in TestFromNowTo() local
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/duration/ |
D | ICUDurationTest.java | 57 long d = millis / 86400000L; in ICUTestDuration() local 78 ICUTestDuration(int sgn, int y, int months, int d, int h, int m, float s) { in ICUTestDuration() 95 public Duration add(Duration rhs) { in add() method in ICUDurationTest.ICUTestDuration 153 private static final ICUTestDuration newDuration(int sgn, int d, int h, int m, float s) { in newDuration() 222 Duration d; in TestSimpleXMLDuration() local 284 TestCase(String loc, String ds, Duration d, String exp) { in TestXMLDuration() 317 Duration d = tc.duration; in TestXMLDuration() local 424 Date d = new Date(target); in TestFromNowTo() local
|