Searched defs:mult (Results 1 - 25 of 44) sorted by relevance

12

/external/stlport/test/unit/
H A Daccum_test.cpp23 static int mult(int initial_, int element_);
44 int prod = accumulate(v.begin(), v.end(), 1, mult);
47 int AccumTest::mult(int initial_, int element_) function in class:AccumTest
H A Dinnerprod_test.cpp31 static size_t mult(size_t a_, size_t b_) { function in class:InnerprodTest
69 size_t result=inner_product(v1.begin(), v1.end(), v2.begin(), (size_t)1, mult, add);
H A Dadj_test.cpp33 static int mult(int a_, int b_);
120 adjacent_difference(v.begin(), v.end(), result.begin(), mult);
132 int AdjTest::mult(int a_, int b_) function in class:AdjTest
/external/e2fsprogs/lib/ext2fs/
H A Dsparse.c55 int mult = 3; local
67 mult = 5;
71 mult = 7;
75 *min *= mult;
H A Dres_gdt.c30 int mult = 3; local
42 mult = 5;
46 mult = 7;
50 *min *= mult;
/external/iptables/extensions/
H A Dlibxt_limit.c45 uint32_t mult = 1; /* Seconds by default. */ local
53 mult = 1;
55 mult = 60;
57 mult = 60*60;
59 mult = 24*60*60;
69 if (r / mult > XT_LIMIT_SCALE)
72 *val = XT_LIMIT_SCALE * mult / r;
111 uint32_t mult; member in struct:rates
122 if (period > rates[i].mult
123 || rates[i].mult/perio
[all...]
H A Dlibxt_hashlimit.c148 uint32_t mult = 1; /* Seconds by default. */ local
156 mult = 1;
158 mult = 60;
160 mult = 60*60;
162 mult = 24*60*60;
172 if (r / mult > XT_HASHLIMIT_SCALE)
175 *val = XT_HASHLIMIT_SCALE * mult / r;
314 uint32_t mult; member in struct:rates
325 if (period > rates[i].mult
326 || rates[i].mult/perio
[all...]
/external/ppp/pppd/plugins/pppoatm/
H A Dtext2qos.c27 const char mult[] = "kKmMgGg"; local
45 if (*end && (multiplier = strchr(mult,*end))) {
46 while (multiplier >= mult) {
/external/e2fsprogs/ext2ed/
H A Dinode_com.c29 long inode_num,mult=1; local
36 mult=atol (buffer);
51 if (entry_num-mult+1>0) {
52 device_offset-=sizeof (struct ext2_inode)*mult;
53 entry_num-=mult;
76 long inode_num,mult=1; local
83 mult=atol (buffer);
99 if (entry_num+mult-1<last_entry) {
100 device_offset+=sizeof (struct ext2_inode)*mult;
101 entry_num+=mult;
[all...]
H A Dgeneral_com.c204 long mult=1; local
223 mult=file_system_info.block_size;
233 mult=current_type->length;
247 new_offset=device_offset+atol (new_offset_buffer+1)*mult;
255 new_offset=device_offset-atol (new_offset_buffer+1)*mult;
260 new_offset=atol (new_offset_buffer)*mult;
/external/e2fsprogs/intl/
H A Dplural-exp.h45 mult, /* Multiplication. */ enumerator in enum:expression::operator
/external/webp/src/dsp/
H A Dupsampling.c260 const uint32_t mult = MULTIPLIER(a); local
261 rgb[4 * i + 0] = PREMULTIPLY(rgb[4 * i + 0], mult);
262 rgb[4 * i + 1] = PREMULTIPLY(rgb[4 * i + 1], mult);
263 rgb[4 * i + 2] = PREMULTIPLY(rgb[4 * i + 2], mult);
294 const uint32_t mult = MULTIPLIER(a); local
295 const uint8_t r = multiply(dither_hi(rgba4444[2 * i + 0]), mult);
296 const uint8_t g = multiply(dither_lo(rgba4444[2 * i + 0]), mult);
297 const uint8_t b = multiply(dither_hi(rgba4444[2 * i + 1]), mult);
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
H A DTexturePixel.java245 public void mult(float value) { method in class:TexturePixel
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DColorRGBA.java330 public ColorRGBA mult(ColorRGBA c) { method in class:ColorRGBA
341 public ColorRGBA mult(float scalar) { method in class:ColorRGBA
H A DMatrix3f.java764 * <code>mult</code> multiplies this matrix by a given matrix. The result
772 public Matrix3f mult(Matrix3f mat) { method in class:Matrix3f
773 return mult(mat, null);
777 * <code>mult</code> multiplies this matrix by a given matrix. The result
787 public Matrix3f mult(Matrix3f mat, Matrix3f product) { method in class:Matrix3f
820 * <code>mult</code> multiplies this matrix by a given
828 public Vector3f mult(Vector3f vec) { method in class:Matrix3f
829 return mult(vec, null);
843 public Vector3f mult(Vector3f vec, Vector3f product) { method in class:Matrix3f
903 * <code>mult</cod
[all...]
H A DVector2f.java341 * <code>mult</code> multiplies this vector by a scalar. The resultant
348 public Vector2f mult(float scalar) { method in class:Vector2f
372 * the vector to mult to this vector.
396 public Vector2f mult(float scalar, Vector2f product) { method in class:Vector2f
H A DQuaternion.java811 * <code>mult</code> multiplies this quaternion by a parameter quaternion.
819 public Quaternion mult(Quaternion q) { method in class:Quaternion
820 return mult(q, null);
824 * <code>mult</code> multiplies this quaternion by a parameter quaternion.
837 public Quaternion mult(Quaternion q, Quaternion res) { method in class:Quaternion
921 * <code>mult</code> multiplies this quaternion by a parameter vector. The
928 public Vector3f mult(Vector3f v) { method in class:Quaternion
929 return mult(v, null);
933 * <code>mult</code> multiplies this quaternion by a parameter vector. The
1002 * <code>mult</cod
1012 public Vector3f mult(Vector3f v, Vector3f store) { method in class:Quaternion
1041 public Quaternion mult(float scalar) { method in class:Quaternion
[all...]
H A DVector3f.java275 * @param mult
280 public Vector3f scaleAdd(float scalar, Vector3f mult, Vector3f add) { argument
281 this.x = mult.x * scalar + add.x;
282 this.y = mult.y * scalar + add.y;
283 this.z = mult.z * scalar + add.z;
450 * <code>mult</code> multiplies this vector by a scalar. The resultant
457 public Vector3f mult(float scalar) { method in class:Vector3f
463 * <code>mult</code> multiplies this vector by a scalar. The resultant
470 public Vector3f mult(float scalar, Vector3f product) { method in class:Vector3f
502 * the vector to mult t
542 public Vector3f mult(Vector3f vec) { method in class:Vector3f
560 public Vector3f mult(Vector3f vec, Vector3f store) { method in class:Vector3f
[all...]
H A DVector4f.java288 * @param mult
293 public Vector4f scaleAdd(float scalar, Vector4f mult, Vector4f add) { argument
294 this.x = mult.x * scalar + add.x;
295 this.y = mult.y * scalar + add.y;
296 this.z = mult.z * scalar + add.z;
297 this.w = mult.w * scalar + add.w;
383 * <code>mult</code> multiplies this vector by a scalar. The resultant
390 public Vector4f mult(float scalar) { method in class:Vector4f
396 * <code>mult</code> multiplies this vector by a scalar. The resultant
403 public Vector4f mult(floa method in class:Vector4f
480 public Vector4f mult(Vector4f vec) { method in class:Vector4f
498 public Vector4f mult(Vector4f vec, Vector4f store) { method in class:Vector4f
[all...]
/external/libvorbis/lib/
H A Dbackends.h71 int mult; /* 1 2 3 or 4 */ member in struct:__anon8712
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
H A DCompiler.java146 expr = mult(opPos); break;
391 protected Expression mult(int opPos) throws TransformerException method in class:Compiler
/external/eigen/Eigen/src/Geometry/
H A DAlignedBox.h148 Index mult = 1; local
151 if( mult & corner ) res[d] = m_max[d];
153 mult *= 2;
/external/speex/libspeex/
H A Dlsp.c410 spx_word32_t mult, a; local
486 mult = MULT16_32_Q14(freqn[2*i],xp[i][j+1]);
487 xp[i+1][j+2] = ADD32(SUB32(xp[i][j+2], mult), xp[i][j]);
488 mult = MULT16_32_Q14(freqn[2*i+1],xq[i][j+1]);
489 xq[i+1][j+2] = ADD32(SUB32(xq[i][j+2], mult), xq[i][j]);
494 mult = MULT16_32_Q14(freqn[2*i],xp[i][j+1]);
495 xp[i+1][j+2] = SUB32(xp[i][j], mult);
496 mult = MULT16_32_Q14(freqn[2*i+1],xq[i][j+1]);
497 xq[i+1][j+2] = SUB32(xq[i][j], mult);
/external/tremolo/Tremolo/
H A Dcodec_internal.h125 int mult; /* 1 2 3 or 4 */ member in struct:__anon13441
/external/grub/stage2/
H A Dchar_io.c106 unsigned long num = *((&c) + 1), mult = 10; local
111 mult = 16;
123 int dig = num % mult;
126 while (num /= mult);
851 int mult = 10, found = 0; local
859 mult = 16;
873 if (mult == 10 || digit > 5)
879 if (myint > ((MAXINT - digit) / mult))
884 myint = (myint * mult) + digit;

Completed in 591 milliseconds

12