Searched defs:fuzz (Results 1 - 25 of 36) sorted by relevance

12

/external/ImageMagick/MagickCore/
H A Dcolor-private.h39 fuzz; local
41 fuzz=(double) MagickMax(MagickMax(p->fuzz,q->fuzz),(MagickRealType)
43 return(fuzz*fuzz);
H A Dcompare.c138 fuzz;
213 fuzz=GetFuzzyColorDistance(image,reconstruct_image);
284 if ((distance*distance) > fuzz)
357 fuzz;
373 fuzz=GetFuzzyColorDistance(image,reconstruct_image);
440 if ((distance*distance) > fuzz)
136 fuzz; local
354 fuzz; local
H A Dcolor.c1705 fuzz,
1715 fuzz=MagickMax(image->fuzz,MagickSQ1_2);
1716 fuzz*=fuzz;
1719 if (distance > fuzz)
1884 fuzz,
1892 fuzz=MagickMax(image->fuzz,MagickSQ1_2);
1893 fuzz*
1688 fuzz, local
1865 fuzz, local
[all...]
H A Dpixel.c2177 pixel->fuzz=0.0;
2186 pixel->fuzz=0.0;
2193 pixel->fuzz=image->fuzz;
6057 fuzz,
6064 fuzz=GetFuzzyColorDistance(source,destination);
6075 if (distance > fuzz)
6092 fuzz*=3.0;
6107 if (distance > fuzz)
6111 if (distance > fuzz)
6039 fuzz, local
6150 fuzz, local
[all...]
H A Dpixel.h179 fuzz; member in struct:_PixelInfo
H A Dimage.h219 fuzz; /* current color fuzz attribute - move to image_info */ member in struct:_Image
412 fuzz; /* current color fuzz attribute */ member in struct:_ImageInfo
/external/openssh/regress/unittests/sshbuf/
H A Dtest_sshbuf_getput_fuzz.c74 onerror(void *fuzz) argument
76 fprintf(stderr, "Failed during fuzz:\n");
77 fuzz_dump((struct fuzz *)fuzz);
117 struct fuzz *fuzz; local
119 TEST_START("fuzz blob parsing");
120 fuzz = fuzz_begin(FUZZ_1_BIT_FLIP | FUZZ_2_BIT_FLIP |
123 TEST_ONERROR(onerror, fuzz);
124 for(; !fuzz_done(fuzz); fuzz_nex
[all...]
/external/openssh/regress/unittests/sshkey/
H A Dtest_fuzz.c42 onerror(void *fuzz) argument
44 fprintf(stderr, "Failed during fuzz:\n");
45 fuzz_dump((struct fuzz *)fuzz);
53 struct fuzz *fuzz; local
58 fuzz = fuzz_begin(FUZZ_1_BIT_FLIP | /* XXX too slow FUZZ_2_BIT_FLIP | */
66 TEST_ONERROR(onerror, fuzz);
67 for(; !fuzz_done(fuzz); fuzz_next(fuzz)) {
77 struct fuzz *fuzz; local
104 struct fuzz *fuzz; local
[all...]
/external/skia/fuzz/
H A DFuzzPathop.cpp14 void BuildPath(Fuzz* fuzz, argument
17 while (!fuzz->exhausted()) {
21 fuzz->next(&operation);
26 fuzz->next(&a, &b);
31 fuzz->next(&a, &b);
36 fuzz->next(&a, &b, &c, &d);
41 fuzz->next(&a, &b, &c, &d, &e);
46 fuzz->next(&a, &b, &c, &d, &e, &f);
61 DEF_FUZZ(Pathop, fuzz) {
65 fuzz
[all...]
H A DFuzzParsePath.cpp37 static void add_white(Fuzz* fuzz, SkString* atom) { argument
45 fuzz->nextRange(&reps, 0, 2);
48 fuzz->nextRange(&index, 0, (int) SK_ARRAY_COUNT(gWhiteSpace) - 1);
55 static void add_some_white(Fuzz* fuzz, SkString* atom) { argument
57 add_white(fuzz, atom);
61 static void add_comma(Fuzz* fuzz, SkString* atom) { argument
66 add_white(fuzz, atom);
68 fuzz->next(&b);
72 add_some_white(fuzz, atom);
75 SkString MakeRandomParsePathPiece(Fuzz* fuzz) { argument
[all...]
H A DFuzzGradients.cpp20 void makeMatrix(Fuzz* fuzz, SkMatrix* m) { argument
22 fuzz->nextN(mat, 9);
26 void initGradientParams(Fuzz* fuzz, std::vector<SkColor>* colors, argument
29 fuzz->nextRange(&count, 0, MAX_COUNT);
34 fuzz->nextRange(&m, 0, 2);
42 fuzz->next(&c, &s);
106 void fuzzLinearGradient(Fuzz* fuzz) {
108 fuzz->next(&pts[0].fX, &pts[0].fY, &pts[1].fX, &pts[1].fY);
110 fuzz->next(&useLocalMatrix, &useGlobalMatrix);
115 initGradientParams(fuzz,
142 fuzzRadialGradient(Fuzz* fuzz) argument
179 fuzzTwoPointConicalGradient(Fuzz* fuzz) argument
217 fuzzSweepGradient(Fuzz* fuzz) argument
[all...]
H A DFuzzDrawFunctions.cpp24 static void init_string(Fuzz* fuzz, char* str, size_t bufSize) { argument
26 fuzz->nextRange(&str[i], 0x20, 0x7E); // printable ASCII
32 static void init_paint(Fuzz* fuzz, SkPaint* p) { argument
34 fuzz->next(&b);
38 fuzz->nextRange(&tmp_u8, 0, (int)SkBlendMode::kLastMode);
42 fuzz->next(&co);
45 fuzz->next(&b);
48 fuzz->nextRange(&tmp_u8, 0, (int)kHigh_SkFilterQuality);
51 fuzz->nextRange(&tmp_u8, 0, (int)SkPaint::kFull_Hinting);
54 fuzz
71 init_bitmap(Fuzz* fuzz, SkBitmap* bmp) argument
102 init_surface(Fuzz* fuzz, sk_sp<SkSurface>* s) argument
110 fuzz_drawText(Fuzz* fuzz, sk_sp<SkTypeface> font) argument
162 fuzz_drawCircle(Fuzz* fuzz) argument
173 fuzz_drawLine(Fuzz* fuzz) argument
184 fuzz_drawRect(Fuzz* fuzz) argument
205 fuzz_drawPath(Fuzz* fuzz) argument
256 fuzz_drawBitmap(Fuzz* fuzz) argument
269 fuzz_drawImage(Fuzz* fuzz) argument
297 fuzz_drawPaint(Fuzz* fuzz) argument
[all...]
/external/ImageMagick/tests/
H A Dvalidate.h27 "-metric RMSE -fuzz 5%",
28 "-metric AE -fuzz 5%",
154 "-fill blue -fuzz 35% -opaque red",
195 "-fuzz 35% -transparent red",
196 "-fuzz 5% -trim",
242 fuzz; member in struct:ReferenceFormats
H A Dvalidate.c1539 fuzz;
1726 fuzz=0.003; /* grayscale */
1727 if (reference_formats[i].fuzz != 0.0)
1728 fuzz=reference_formats[i].fuzz;
1743 if ((QuantumScale*distortion) > fuzz)
1816 fuzz;
1956 fuzz=0.003; /* grayscale */
1957 if (reference_formats[i].fuzz != 0.0)
1958 fuzz
1531 fuzz; local
1807 fuzz; local
[all...]
/external/python/cpython2/Lib/test/
H A Dtest_timeout.py96 # When fuzz was at 1.0, I (tim) routinely saw bogus failures on Win2K
99 fuzz = 2.0 variable in class:TimeoutTestCase
126 self.assertTrue(_delta < _timeout + self.fuzz,
128 %(_delta, self.fuzz, _timeout))
143 self.assertTrue(_delta < _timeout + self.fuzz,
145 %(_delta, self.fuzz, _timeout))
160 self.assertTrue(_delta < _timeout + self.fuzz,
162 %(_delta, self.fuzz, _timeout))
177 self.assertTrue(_delta < _timeout + self.fuzz,
179 %(_delta, self.fuzz, _timeou
[all...]
/external/kernel-headers/original/uapi/linux/
H A Dvirtio_input.h45 __u32 fuzz; member in struct:virtio_input_absinfo
H A Dinput.h54 * @fuzz: specifies fuzz value that is used to filter noise from
72 __s32 fuzz; member in struct:input_absinfo
/external/openssh/regress/unittests/test_helper/
H A Dfuzz.c1 /* $OpenBSD: fuzz.c,v 1.8 2015/03/03 20:42:49 djm Exp $ */
18 /* Utility functions/framework for fuzz tests */
59 struct fuzz { struct
70 /* Current working copy of seed with fuzz mutations applied */
73 /* Used by fuzz methods */
103 fuzz_fmt(struct fuzz *fuzz, char *s, size_t n) argument
105 if (fuzz == NULL)
108 switch (fuzz->strategy) {
111 fuzz_ntop(fuzz
184 fuzz_dump(struct fuzz *fuzz) argument
245 fuzz_cleanup(struct fuzz *fuzz) argument
261 fuzz_strategy_done(struct fuzz *fuzz) argument
284 fuzz_next(struct fuzz *fuzz) argument
381 fuzz_matches_original(struct fuzz *fuzz) argument
389 fuzz_done(struct fuzz *fuzz) argument
398 fuzz_len(struct fuzz *fuzz) argument
418 fuzz_ptr(struct fuzz *fuzz) argument
[all...]
/external/bsdiff/
H A Dbsdiff.cc230 const off_t fuzz = 8; local
231 if (prev_len-fuzz<=len && len<=prev_len &&
232 prev_oldscore-fuzz<=oldscore &&
234 prev_pos<=pos && pos <=prev_pos+fuzz &&
235 oldscore<=len && len<=oldscore+fuzz)
/external/freetype/src/pshinter/
H A Dpshglob.c232 /* fuzz-expands the zones as well. */
239 FT_Int fuzz,
317 /* expand top and bottom tables with blue fuzz */
331 zone->org_bottom -= fuzz;
334 /* checking that the interval is smaller than the fuzz */
342 if ( delta / 2 < fuzz )
346 zone[0].org_top = top + fuzz;
347 zone[1].org_bottom = bot - fuzz;
355 zone->org_top = top + fuzz;
234 psh_blues_set_zones( PSH_Blues target, FT_UInt count, FT_Short* blues, FT_UInt count_others, FT_Short* other_blues, FT_Int fuzz, FT_Int family ) argument
/external/pdfium/third_party/freetype/src/pshinter/
H A Dpshglob.c232 /* fuzz-expands the zones as well. */
239 FT_Int fuzz,
317 /* expand top and bottom tables with blue fuzz */
331 zone->org_bottom -= fuzz;
334 /* checking that the interval is smaller than the fuzz */
342 if ( delta / 2 < fuzz )
346 zone[0].org_top = top + fuzz;
347 zone[1].org_bottom = bot - fuzz;
355 zone->org_top = top + fuzz;
234 psh_blues_set_zones( PSH_Blues target, FT_UInt count, FT_Short* blues, FT_UInt count_others, FT_Short* other_blues, FT_Int fuzz, FT_Int family ) argument
/external/ImageMagick/MagickWand/
H A Dpixel-wand.c318 % const double fuzz)
326 % o fuzz: any two colors that are less than or equal to this distance
331 const double fuzz)
341 p->pixel.fuzz=fuzz;
342 q->pixel.fuzz=fuzz;
982 % PixelGetFuzz() returns the normalized fuzz value of the pixel wand.
999 return((double) wand->pixel.fuzz);
1304 packet->fuzz
321 IsPixelWandSimilar(PixelWand *p,PixelWand *q, const double fuzz) argument
1865 PixelSetFuzz(PixelWand *wand,const double fuzz) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dsta_info.c408 int fuzz = os_random() % 20; local
420 next_time = hapd->conf->ap_max_inactivity + fuzz;
435 next_time = hapd->conf->ap_max_inactivity + fuzz -
/external/wpa_supplicant_8/src/ap/
H A Dsta_info.c408 int fuzz = os_random() % 20; local
420 next_time = hapd->conf->ap_max_inactivity + fuzz;
435 next_time = hapd->conf->ap_max_inactivity + fuzz -
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dsta_info.c408 int fuzz = os_random() % 20; local
420 next_time = hapd->conf->ap_max_inactivity + fuzz;
435 next_time = hapd->conf->ap_max_inactivity + fuzz -

Completed in 1822 milliseconds

12