HomeSort by relevance Sort by last modified time
    Searched refs:maxval (Results 1 - 25 of 38) sorted by null

1 2

  /external/openssh/openbsd-compat/
strtonum.c 34 strtonum(const char *numstr, long long minval, long long maxval,
52 if (minval > maxval)
60 else if ((ll == LLONG_MAX && errno == ERANGE) || ll > maxval)
  /external/libpng/contrib/gregbook/
readppm.c 84 int maxval; local
114 sscanf(ppmline, "%d", &maxval);
115 if (maxval != 255) {
116 fprintf(stderr, "ERROR: maxval = %d\n", maxval);
wpng.c 6 maxval = 255) to PNG. Non-interlaced PNGs are written progressively;
170 int maxval; local
353 sscanf(pnmline, "%d", &maxval);
355 maxval != 255)
358 ": only positive width/height, maxval == 255 allowed \n");
361 wpng_info.sample_depth = 8; /* <==> maxval 255 */
422 "to have maxval == 255 (i.e., no scaling). If pnmfile is specified, it\n"
  /external/libvorbis/vq/
huffbuild.c 67 int maxval=0; local
83 maxval=atoi(dpos+1);
108 if(!maxval)
115 if(!maxval){
120 if(v>maxval)maxval=v;
125 maxval++;
129 long vals=pow(maxval,subn);
139 long val=getval(file,begin,n,subn,maxval);
bookutil.c 55 int maxval = book->minval + book->delta*(book->quantvals-1); local
70 while(e[j]>=maxval)
  /external/libpng/contrib/pngminus/
pnm2png.c 202 png_uint_32 maxval; local
234 sscanf (maxval_token, "%lu", &maxval);
235 if (maxval <= 1)
237 else if (maxval <= 3)
239 else if (maxval <= 15)
241 else if (maxval <= 255)
243 else /* if (maxval <= 65535) */
255 sscanf (maxval_token, "%lu", &maxval);
256 if (maxval <= 1)
258 else if (maxval <= 3
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
CPPTarget.java 133 int maxval = 255; // codegen.grammar.get????(); local
134 if ( maxval <= 255 )
137 return maxval;
  /external/opencv/otherlibs/highgui/
grfmt_jpeg2000.h 74 int maxval, int offset, int ncmpts );
76 int maxval, int offset, int ncmpts );
grfmt_jpeg2000.cpp 221 int maxval = 1 << jas_image_cmptprec( m_image, cmptlut[i] ); local
222 int offset = jas_image_cmptsgnd( m_image, cmptlut[i] ) ? maxval / 2 : 0;
235 result = ReadComponent8u( data + i, buffer, step, cmptlut[i], maxval, offset, ncmpts );
237 result = ReadComponent16u( ((unsigned short *)data) + i, buffer, step / 2, cmptlut[i], maxval, offset, ncmpts );
261 int maxval, int offset, int ncmpts )
272 int rshift = cvRound(log(maxval/256.)/log(2.));
284 if( maxval == 256 && offset == 0 )
323 int maxval, int offset, int ncmpts )
334 int rshift = cvRound(log(maxval/65536.)/log(2.));
346 if( maxval == 65536 && offset == 0
    [all...]
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/
GeoMap.java 51 protected int width, height, maxval; field in class:GeoMap
56 public GeoMap(FloatBuffer heightData, int width, int height, int maxval){
61 this.maxval = maxval;
64 public GeoMap(float[] heightData, int width, int height, int maxval){
68 this.maxval = maxval;
89 return maxval;
346 oc.write(maxval, "maxval", 0)
    [all...]
  /external/jpeg/
rdppm.c 77 JSAMPLE *rescale; /* => maxval-remapping array, or NULL */
136 * maxval = MAXJSAMPLE, which is the normal case for 8-bit data.
142 /* This version is for reading text-format PGM files with any maxval */
160 /* This version is for reading text-format PPM files with any maxval */
180 /* This version is for reading raw-byte-format PGM files with any maxval */
201 /* This version is for reading raw-byte-format PPM files with any maxval */
224 /* This version is for reading raw-byte-format files with maxval = MAXJSAMPLE.
239 /* This version is for reading raw-word-format PGM files with any maxval */
263 /* This version is for reading raw-word-format PPM files with any maxval */
300 unsigned int w, h, maxval; local
    [all...]
rdcolmap.c 20 * Rescaling a PPM that has a maxval unequal to MAXJSAMPLE is not
174 unsigned int w, h, maxval, row, col; local
183 maxval = read_pbm_integer(cinfo, infile);
185 if (w <= 0 || h <= 0 || maxval <= 0) /* error check */
188 /* For now, we don't support rescaling from an unusual maxval. */
189 if (maxval != (unsigned int) MAXJSAMPLE)
  /external/qemu/distrib/jpeg-6b/
rdppm.c 77 JSAMPLE *rescale; /* => maxval-remapping array, or NULL */
136 * maxval = MAXJSAMPLE, which is the normal case for 8-bit data.
142 /* This version is for reading text-format PGM files with any maxval */
160 /* This version is for reading text-format PPM files with any maxval */
180 /* This version is for reading raw-byte-format PGM files with any maxval */
201 /* This version is for reading raw-byte-format PPM files with any maxval */
224 /* This version is for reading raw-byte-format files with maxval = MAXJSAMPLE.
239 /* This version is for reading raw-word-format PGM files with any maxval */
263 /* This version is for reading raw-word-format PPM files with any maxval */
300 unsigned int w, h, maxval; local
    [all...]
rdcolmap.c 20 * Rescaling a PPM that has a maxval unequal to MAXJSAMPLE is not
174 unsigned int w, h, maxval, row, col; local
183 maxval = read_pbm_integer(cinfo, infile);
185 if (w <= 0 || h <= 0 || maxval <= 0) /* error check */
188 /* For now, we don't support rescaling from an unusual maxval. */
189 if (maxval != (unsigned int) MAXJSAMPLE)
  /external/opencv/cv/src/
cvthresh.cpp 46 CvSize roi, uchar thresh, uchar maxval, int type )
57 tab[i] = maxval;
61 tab[i] = maxval;
114 CvSize roi, float thresh, float maxval, int type )
123 v.f = maxval; iMax = v.i;
297 cvThreshold( const void* srcarr, void* dstarr, double thresh, double maxval, int type )
358 if( maxval < 0 )
365 if( maxval < 255 )
366 CV_CALL( cvAndS( dst, cvScalarAll( maxval ), dst ));
392 imaxval = cvRound(maxval);
    [all...]
  /external/srec/srec/cfront/
sp_fft.c 646 unsigned maxval = 0; local
753 maxval |= data[0];
757 maxval |= last;
769 maxval |= data[i];
797 ASSERT(maxval >= 0);
798 ASSERT(!(maxval & 0xC0000000));
  /external/openfst/src/include/fst/
interval-set.h 137 // Complements the set w.r.t [0, maxval). Requires intervals be
139 void Complement(T maxval, IntervalSet<T> *oset) const;
229 // Complements the set w.r.t [0, maxval). Requires intervals be normalized.
232 void IntervalSet<T>::Complement(T maxval, IntervalSet<T> *oset) const {
242 interval.end = min(it->begin, maxval);
249 interval.end = maxval;
  /external/libvorbis/lib/
floor0.c 164 long maxval=(1<<info->ampbits)-1; local
165 float amp=(float)ampraw/maxval*info->ampdB;
floor1.c 872 int maxval[8]; local
876 maxval[k]=1;
878 maxval[k]=sbooks[info->class_subbook[class][k]]->entries;
884 if(val<maxval[l]){
res0.c 360 int maxval = book->minval + book->delta*(book->quantvals-1); local
376 while(e[j]>=maxval)
  /external/opencv/ml/src/
mlrtrees.cpp 350 double minval, maxval; local
352 cvMinMaxLoc( &responses, &minval, &maxval );
353 maximal_response = (float)MAX( MAX( fabs(minval), fabs(maxval) ), 0 );
mlem.cpp 404 double maxval = 0; local
417 cvMinMaxLoc( &prob, 0, &maxval );
418 if( maxval < FLT_EPSILON )
436 cvMinMaxLoc( weights, 0, &maxval );
437 if( maxval < FLT_EPSILON )
    [all...]
  /external/tremolo/Tremolo/
floor0.c 407 long maxval=(1<<info->ampbits)-1; local
408 int amp=((ampraw*info->ampdB)<<4)/maxval;
  /external/libpcap/
optimize.c 552 static int maxval; variable
571 memset((char *)vmap, 0, maxval * sizeof(*vmap));
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/include/
gmp.h     [all...]

Completed in 409 milliseconds

1 2