HomeSort by relevance Sort by last modified time
    Searched refs:vals (Results 76 - 100 of 155) sorted by null

1 2 34 5 6 7

  /external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
MeshLoader.java 344 // compute new vals based on sum
496 String[] vals = value.split("\\s"); local
497 if (vals.length != 3 && vals.length != 4) {
502 color.r = parseFloat(vals[0]);
503 color.g = parseFloat(vals[1]);
504 color.b = parseFloat(vals[2]);
505 if (vals.length == 3) {
508 color.a = parseFloat(vals[3]);
  /external/skia/tests/
DrawPathTest.cpp 177 const SkScalar vals[] = { 27734, 35660, 2157846850.0f, 247 }; local
178 SkDashPathEffect dontAssert(vals, 4, -248.135982067f);
  /external/chromium_org/third_party/libxml/src/
gentest.py 552 vals = [] variable
560 vals.append(vname)
561 if vals == []:
567 test.write("#define gen_nb_%s %d\n" % (name, len(vals)))
571 for value in vals:
  /external/jpeg/
configure     [all...]
  /external/qemu/distrib/jpeg-6b/
configure     [all...]
  /external/libvorbis/lib/
block.c 388 float **vorbis_analysis_buffer(vorbis_dsp_state *v, int vals){
401 if(v->pcm_current+vals>=v->pcm_storage){
402 v->pcm_storage=v->pcm_current+vals*2;
459 int vorbis_analysis_wrote(vorbis_dsp_state *v, int vals){
463 if(vals<=0){
506 if(v->pcm_current+vals>v->pcm_storage)
509 v->pcm_current+=vals;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_complex.py 517 vals = [0.0, 1e-500, 1e-315, 1e-200, 0.0123, 3.1415, 1e50, INF, NAN]
518 vals += [-v for v in vals]
522 for x in vals:
523 for y in vals:
533 for x in vals:
534 for y in vals:
test_math.py 524 for i, (vals, expected) in enumerate(test_values):
526 actual = math.fsum(vals)
529 "for math.fsum(%.100r)" % (i, expected, vals))
532 "for math.fsum(%.100r)" % (i, expected, vals))
537 vals = [7, 1e100, -7, -1e100, -9e-20, 8e-20] * 10
542 vals.append(v)
543 shuffle(vals)
545 s = msum(vals)
546 self.assertEqual(msum(vals), math.fsum(vals))
    [all...]
test_iter.py 345 self.vals = args
348 def __init__(self, vals):
349 self.vals = vals
356 if i < len(self.vals):
357 return self.vals[i]
360 return SeqIter(self.vals)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_complex.py 517 vals = [0.0, 1e-500, 1e-315, 1e-200, 0.0123, 3.1415, 1e50, INF, NAN]
518 vals += [-v for v in vals]
522 for x in vals:
523 for y in vals:
533 for x in vals:
534 for y in vals:
test_math.py 524 for i, (vals, expected) in enumerate(test_values):
526 actual = math.fsum(vals)
529 "for math.fsum(%.100r)" % (i, expected, vals))
532 "for math.fsum(%.100r)" % (i, expected, vals))
537 vals = [7, 1e100, -7, -1e100, -9e-20, 8e-20] * 10
542 vals.append(v)
543 shuffle(vals)
545 s = msum(vals)
546 self.assertEqual(msum(vals), math.fsum(vals))
    [all...]
test_iter.py 345 self.vals = args
348 def __init__(self, vals):
349 self.vals = vals
356 if i < len(self.vals):
357 return self.vals[i]
360 return SeqIter(self.vals)
  /external/chromium/testing/gmock/test/
gmock-matchers_test.cc 3522 static const int vals[] = {1, 1, 2, 3, 5, 8}; local
3531 static const int vals[] = {1, 1, 2, 3, 5, 8}; local
3543 static const int vals[] = {1, 1, 2, 3, 5, 8}; local
3554 static const int vals[] = {1, 1, 2, 3, 5, 8}; local
3567 static const int vals[] = {1, 1, 2, 3, 5, 8}; local
3581 static const int vals[] = {1, 1, 2, 3, 5, 8}; local
3594 static const int vals[] = {1, 1, 2, 3, 5, 8}; local
3606 static const int vals[] = {1, 1, 2, 3, 5, 8}; local
3620 static const int vals[] = {1, 1, 2, 3, 5, 8}; local
    [all...]
  /external/chromium_org/third_party/skia/src/svg/
SkSVGParser.cpp 322 void SkSVGParser::ConvertToArray(SkString& vals) {
323 vals.appendUnichar(']');
324 char* valCh = (char*) vals.c_str();
  /external/skia/src/svg/
SkSVGParser.cpp 322 void SkSVGParser::ConvertToArray(SkString& vals) {
323 vals.appendUnichar(']');
324 char* valCh = (char*) vals.c_str();
  /external/tremolo/Tremolo/
floor1.c 76 static void mergesort(char *index,ogg_uint16_t *vals,ogg_uint16_t n){
87 if(vals[A[k1]]<vals[A[k2]])
codebook.c 71 /* vals are already read into temporary column vector here */
348 int vals=b->entries>>((bits-1)*(b->dim-1)/b->dim); local
355 acc*=vals;
356 acc1*=vals+1;
359 return(vals);
362 vals--;
364 vals++;
579 /* get the vals & pack them */
780 /* we have the unpacked multiplicands; compute final vals */
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
sysconfig.py 482 vals = []
484 vals.append(_config_vars.get(name))
485 return vals
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
sysconfig.py 482 vals = []
484 vals.append(_config_vars.get(name))
485 return vals
  /external/chromium_org/third_party/icu/source/test/cintltst/
cnumtst.c 1319 double vals[] = { local
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SValBuilder.h 211 NonLoc makeCompoundVal(QualType type, llvm::ImmutableList<SVal> vals) {
212 return nonloc::CompoundVal(BasicVals.getCompoundValData(type, vals));
  /external/flac/libFLAC/
bitwriter.c 416 FLaC__INLINE FLAC__bool FLAC__bitwriter_write_byte_block(FLAC__BitWriter *bw, const FLAC__byte vals[], unsigned nvals)
422 if(!FLAC__bitwriter_write_raw_uint32(bw, (FLAC__uint32)(vals[i]), 8))
541 FLAC__bool FLAC__bitwriter_write_rice_signed_block(FLAC__BitWriter *bw, const FLAC__int32 *vals, unsigned nvals, unsigned parameter)
558 uval = (*vals<<1) ^ (*vals>>31);
575 /* burying the capacity check down here means we have to grow the buffer a little if there are more vals to do */
651 vals++;
  /external/libogg/src/
bitwise.c 511 void cliptest(unsigned long *b,int vals,int bits,int *comp,int compsize){
516 for(i=0;i<vals;i++)
526 for(i=0;i<vals;i++){
546 void cliptestB(unsigned long *b,int vals,int bits,int *comp,int compsize){
551 for(i=0;i<vals;i++)
561 for(i=0;i<vals;i++){
  /frameworks/base/wifi/java/android/net/wifi/
WifiConfigStore.java 1526 String vals[] = value.split(" "); local
1539 String vals[] = value.split(" "); local
1552 String vals[] = value.split(" "); local
1565 String vals[] = value.split(" "); local
1578 String vals[] = value.split(" "); local
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineC.cpp 586 llvm::ImmutableList<SVal> vals = getBasicVals().getEmptySValList(); local
591 SVal V = svalBuilder.makeCompoundVal(T, vals);
601 vals = getBasicVals().consVals(V, vals);
606 svalBuilder.makeCompoundVal(T, vals)));
    [all...]

Completed in 943 milliseconds

1 2 34 5 6 7