g 4254 ext/gd/gd.c zend_long r,g,b,tmp; g 4257 ext/gd/gd.c if (zend_parse_parameters(ZEND_NUM_ARGS(), "rllll|l", &SIM, &tmp, &r, &g, &b, &a) == FAILURE) { g 4269 ext/gd/gd.c if (gdImageColor(im_src, (int) r, (int) g, (int) b, (int) a) == 1) { g 259 ext/gd/libgd/gd.c int gdImageColorClosest (gdImagePtr im, int r, int g, int b) g 261 ext/gd/libgd/gd.c return gdImageColorClosestAlpha (im, r, g, b, gdAlphaOpaque); g 264 ext/gd/libgd/gd.c int gdImageColorClosestAlpha (gdImagePtr im, int r, int g, int b, int a) g 273 ext/gd/libgd/gd.c return gdTrueColorAlpha(r, g, b, a); g 281 ext/gd/libgd/gd.c gd = im->green[i] - g; g 301 ext/gd/libgd/gd.c #define RETURN_RGB(r, g, b) {RGB->R = r; RGB->G = g; RGB->B = b; return RGB;} g 303 ext/gd/libgd/gd.c #define SETUP_RGB(s, r, g, b) {s.R = r/255.0f; s.G = g/255.0f; s.B = b/255.0f;} g 430 ext/gd/libgd/gd.c int gdImageColorClosestHWB (gdImagePtr im, int r, int g, int b) g 438 ext/gd/libgd/gd.c return gdTrueColor(r, g, b); g 445 ext/gd/libgd/gd.c dist = HWB_Diff(im->red[i], im->green[i], im->blue[i], r, g, b); g 455 ext/gd/libgd/gd.c int gdImageColorExact (gdImagePtr im, int r, int g, int b) g 457 ext/gd/libgd/gd.c return gdImageColorExactAlpha (im, r, g, b, gdAlphaOpaque); g 460 ext/gd/libgd/gd.c int gdImageColorExactAlpha (gdImagePtr im, int r, int g, int b, int a) g 464 ext/gd/libgd/gd.c return gdTrueColorAlpha(r, g, b, a); g 470 ext/gd/libgd/gd.c if ((im->red[i] == r) && (im->green[i] == g) && (im->blue[i] == b) && (im->alpha[i] == a)) { g 477 ext/gd/libgd/gd.c int gdImageColorAllocate (gdImagePtr im, int r, int g, int b) g 479 ext/gd/libgd/gd.c return gdImageColorAllocateAlpha (im, r, g, b, gdAlphaOpaque); g 482 ext/gd/libgd/gd.c int gdImageColorAllocateAlpha (gdImagePtr im, int r, int g, int b, int a) g 487 ext/gd/libgd/gd.c return gdTrueColorAlpha(r, g, b, a); g 503 ext/gd/libgd/gd.c im->green[ct] = g; g 522 ext/gd/libgd/gd.c int gdImageColorResolve (gdImagePtr im, int r, int g, int b) g 524 ext/gd/libgd/gd.c return gdImageColorResolveAlpha(im, r, g, b, gdAlphaOpaque); g 527 ext/gd/libgd/gd.c int gdImageColorResolveAlpha (gdImagePtr im, int r, int g, int b, int a) g 536 ext/gd/libgd/gd.c return gdTrueColorAlpha (r, g, b, a); g 553 ext/gd/libgd/gd.c gd = (long) (im->green[c] - g); g 578 ext/gd/libgd/gd.c im->green[op] = g; g 1268 ext/gd/libgd/gd.c int dr,dg,db,p,r,g,b; g 1275 ext/gd/libgd/gd.c g = gdTrueColorGetGreen(p); g 1279 ext/gd/libgd/gd.c BLEND_COLOR(t, dg, g, dg); g 2305 ext/gd/libgd/gd.c float g; g 2328 ext/gd/libgd/gd.c g = (0.29900f * gdImageRed(dst, dc)) + (0.58700f * gdImageGreen(dst, dc)) + (0.11400f * gdImageBlue(dst, dc)); g 2330 ext/gd/libgd/gd.c ncR = (int)(gdImageRed (src, c) * (pct / 100.0f) + g * ((100 - pct) / 100.0)); g 2331 ext/gd/libgd/gd.c ncG = (int)(gdImageGreen (src, c) * (pct / 100.0f) + g * ((100 - pct) / 100.0)); g 2332 ext/gd/libgd/gd.c ncB = (int)(gdImageBlue (src, c) * (pct / 100.0f) + g * ((100 - pct) / 100.0)); g 509 ext/gd/libgd/gd.h int gdImageColorAllocate(gdImagePtr im, int r, int g, int b); g 511 ext/gd/libgd/gd.h int gdImageColorAllocateAlpha(gdImagePtr im, int r, int g, int b, int a); g 513 ext/gd/libgd/gd.h int gdImageColorClosest(gdImagePtr im, int r, int g, int b); g 518 ext/gd/libgd/gd.h int gdImageColorClosestAlpha(gdImagePtr im, int r, int g, int b, int a); g 520 ext/gd/libgd/gd.h int gdImageColorClosestHWB(gdImagePtr im, int r, int g, int b); g 522 ext/gd/libgd/gd.h int gdImageColorExact(gdImagePtr im, int r, int g, int b); g 524 ext/gd/libgd/gd.h int gdImageColorExactAlpha(gdImagePtr im, int r, int g, int b, int a); g 526 ext/gd/libgd/gd.h int gdImageColorResolve(gdImagePtr im, int r, int g, int b); g 528 ext/gd/libgd/gd.h int gdImageColorResolveAlpha(gdImagePtr im, int r, int g, int b, int a); g 533 ext/gd/libgd/gd.h #define gdTrueColor(r, g, b) (((r) << 16) + \ g 534 ext/gd/libgd/gd.h ((g) << 8) + \ g 541 ext/gd/libgd/gd.h #define gdTrueColorAlpha(r, g, b, a) (((a) << 24) + \ g 543 ext/gd/libgd/gd.h ((g) << 8) + \ g 63 ext/gd/libgd/gd_arc_f_buggy.c long g; /* decision variable */ g 297 ext/gd/libgd/gd_arc_f_buggy.c g = x2 - 1; g 298 ext/gd/libgd/gd_arc_f_buggy.c g = g * g * hs + 4 * ws - whs; g 303 ext/gd/libgd/gd_arc_f_buggy.c g += ws * 4 * (y2 + 1); g 305 ext/gd/libgd/gd_arc_f_buggy.c if (g > 0) /* Need to drop */ g 308 ext/gd/libgd/gd_arc_f_buggy.c g -= hs * 4 * x2; g 331 ext/gd/libgd/gd_arc_f_buggy.c g = y2 - 1; g 332 ext/gd/libgd/gd_arc_f_buggy.c g = g * g * ws + 4 * hs - whs; g 337 ext/gd/libgd/gd_arc_f_buggy.c g += hs * 4 * (x2 + 1); g 339 ext/gd/libgd/gd_arc_f_buggy.c if (g > 0) /* Need to drop */ g 342 ext/gd/libgd/gd_arc_f_buggy.c g -= ws * 4 * y2; g 414 ext/gd/libgd/gd_arc_f_buggy.c g = x2 - 1; g 415 ext/gd/libgd/gd_arc_f_buggy.c g = g * g * hs + 4 * ws - whs; g 423 ext/gd/libgd/gd_arc_f_buggy.c g += ws * 4 * (y2 + 1); g 425 ext/gd/libgd/gd_arc_f_buggy.c if (g > 0) /* Need to drop */ g 428 ext/gd/libgd/gd_arc_f_buggy.c g -= hs * 4 * x2; g 441 ext/gd/libgd/gd_arc_f_buggy.c g += ws * 4 * (y2 + 1); g 443 ext/gd/libgd/gd_arc_f_buggy.c if (g > 0) /* Need to drop */ g 446 ext/gd/libgd/gd_arc_f_buggy.c g -= hs * 4 * x2; g 479 ext/gd/libgd/gd_arc_f_buggy.c g = y2 - 1; g 480 ext/gd/libgd/gd_arc_f_buggy.c g = g * g * ws + 4 * hs - whs; g 485 ext/gd/libgd/gd_arc_f_buggy.c g += hs * 4 * (x2 + 1); g 487 ext/gd/libgd/gd_arc_f_buggy.c if (g > 0) /* Need to drop */ g 490 ext/gd/libgd/gd_arc_f_buggy.c g -= ws * 4 * y2; g 506 ext/gd/libgd/gd_arc_f_buggy.c g += hs * 4 * (x2 + 1); g 508 ext/gd/libgd/gd_arc_f_buggy.c if (g > 0) /* Need to drop */ g 511 ext/gd/libgd/gd_arc_f_buggy.c g -= ws * 4 * y2; g 555 ext/gd/libgd/gd_arc_f_buggy.c long g; /* decision variable */ g 636 ext/gd/libgd/gd_arc_f_buggy.c g = x2 - 1; g 637 ext/gd/libgd/gd_arc_f_buggy.c g = g * g * hs + 4 * ws - whs; g 642 ext/gd/libgd/gd_arc_f_buggy.c g += ws * 4 * (y2 + 1); g 644 ext/gd/libgd/gd_arc_f_buggy.c if (g > 0) /* Need to drop */ g 647 ext/gd/libgd/gd_arc_f_buggy.c g -= hs * 4 * x2; g 663 ext/gd/libgd/gd_arc_f_buggy.c g = y2 - 1; g 664 ext/gd/libgd/gd_arc_f_buggy.c g = g * g * ws + 4 * hs - whs; g 669 ext/gd/libgd/gd_arc_f_buggy.c g += hs * 4 * (x2 + 1); g 671 ext/gd/libgd/gd_arc_f_buggy.c if (g > 0) /* Need to drop */ g 674 ext/gd/libgd/gd_arc_f_buggy.c g -= ws * 4 * y2; g 333 ext/gd/libgd/gd_crop.c register int r,b,g,a; g 336 ext/gd/libgd/gd_crop.c g = (int)(0.5f + (gdImageGreen(im, tl) + gdImageGreen(im, tr) + gdImageGreen(im, bl) + gdImageGreen(im, br)) / 4); g 339 ext/gd/libgd/gd_crop.c *color = gdImageColorClosestAlpha(im, r, g, b, a); g 19 ext/gd/libgd/gd_filter.c int r,g,b,a; g 34 ext/gd/libgd/gd_filter.c g = gdImageGreen(src, pxl); g 38 ext/gd/libgd/gd_filter.c new_pxl = gdImageColorAllocateAlpha(src, 255-r, 255-g, 255-b, a); g 40 ext/gd/libgd/gd_filter.c new_pxl = gdImageColorClosestAlpha(src, 255-r, 255-g, 255-b, a); g 52 ext/gd/libgd/gd_filter.c int r,g,b,a; g 66 ext/gd/libgd/gd_filter.c g = gdImageGreen(src, pxl); g 69 ext/gd/libgd/gd_filter.c r = g = b = (int) (.299 * r + .587 * g + .114 * b); g 71 ext/gd/libgd/gd_filter.c new_pxl = gdImageColorAllocateAlpha(src, r, g, b, a); g 73 ext/gd/libgd/gd_filter.c new_pxl = gdImageColorClosestAlpha(src, r, g, b, a); g 85 ext/gd/libgd/gd_filter.c int r,g,b,a; g 104 ext/gd/libgd/gd_filter.c g = gdImageGreen(src, pxl); g 109 ext/gd/libgd/gd_filter.c g = g + brightness; g 113 ext/gd/libgd/gd_filter.c g = (g > 255)? 255 : ((g < 0)? 0:g); g 116 ext/gd/libgd/gd_filter.c new_pxl = gdImageColorAllocateAlpha(src, (int)r, (int)g, (int)b, a); g 118 ext/gd/libgd/gd_filter.c new_pxl = gdImageColorClosestAlpha(src, (int)r, (int)g, (int)b, a); g 130 ext/gd/libgd/gd_filter.c int r,g,b,a; g 150 ext/gd/libgd/gd_filter.c g = gdImageGreen(src, pxl); g 166 ext/gd/libgd/gd_filter.c gf = (double)g/255.0; g 202 ext/gd/libgd/gd_filter.c int r,g,b,a; g 206 ext/gd/libgd/gd_filter.c g = gdImageGreen(src, pxl); g 211 ext/gd/libgd/gd_filter.c g = g + green; g 216 ext/gd/libgd/gd_filter.c g = (g > 255)? 255 : ((g < 0)? 0 : g); g 220 ext/gd/libgd/gd_filter.c new_pxl = gdImageColorAllocateAlpha(src, r, g, b, a); g 222 ext/gd/libgd/gd_filter.c new_pxl = gdImageColorClosestAlpha(src, r, g, b, a); g 346 ext/gd/libgd/gd_gd2.c int g = chunkBuf[chunkPos++] << 8; g 348 ext/gd/libgd/gd_gd2.c im->tpixels[y][x] = a + r + g + b; g 764 ext/gd/libgd/gd_interpolation.c int r, g, b, a; g 772 ext/gd/libgd/gd_interpolation.c g = (int)(m1*gdTrueColorGetGreen(c1) + m2*gdTrueColorGetGreen(c2) + m3*gdTrueColorGetGreen(c3) + m4*gdTrueColorGetGreen(c4)); g 777 ext/gd/libgd/gd_interpolation.c g = (int)(m1*im->green[(c1)] + m2*im->green[(c2)] + m3*im->green[(c3)] + m4*im->green[(c4)]); g 783 ext/gd/libgd/gd_interpolation.c g = CLAMP(g, 0, 255); g 786 ext/gd/libgd/gd_interpolation.c return gdTrueColorAlpha(r, g, b, a); g 972 ext/gd/libgd/gd_interpolation.c register unsigned char r = 0, g = 0, b = 0, a = 0; g 981 ext/gd/libgd/gd_interpolation.c g += (unsigned char)(contrib->ContribRow[x].Weights[left_channel] * (double)(gdTrueColorGetGreen(p_src_row[i]))); g 985 ext/gd/libgd/gd_interpolation.c p_dst_row[x] = gdTrueColorAlpha(r, g, b, a); g 1017 ext/gd/libgd/gd_interpolation.c register unsigned char r = 0, g = 0, b = 0, a = 0; g 1028 ext/gd/libgd/gd_interpolation.c g += (unsigned char)(contrib->ContribRow[y].Weights[i_iLeft] * (double)(gdTrueColorGetGreen(pCurSrc))); g 1032 ext/gd/libgd/gd_interpolation.c pRes->tpixels[y][uCol] = gdTrueColorAlpha(r, g, b, a); g 26 ext/gd/libgd/gd_pixelate.c int a, r, g, b, c; g 30 ext/gd/libgd/gd_pixelate.c a = r = g = b = c = total = 0; g 40 ext/gd/libgd/gd_pixelate.c g += gdImageGreen(im, c); g 47 ext/gd/libgd/gd_pixelate.c c = gdImageColorResolveAlpha(im, r / total, g / total, b / total, a / total); g 364 ext/gd/libgd/gd_png.c register png_byte g = row_pointers[h][boffset++]; g 366 ext/gd/libgd/gd_png.c im->tpixels[h][w] = gdTrueColor (r, g, b); g 377 ext/gd/libgd/gd_png.c register png_byte g = row_pointers[h][boffset++]; g 386 ext/gd/libgd/gd_png.c im->tpixels[h][w] = gdTrueColorAlpha(r, g, b, a); g 23 ext/gd/libgd/gd_rotate.c int i, r, g, b, a, clrBackR, clrBackG, clrBackB, clrBackA; g 54 ext/gd/libgd/gd_rotate.c g = (int)(gdImageGreen(src,pxlSrc) * dWeight); g 58 ext/gd/libgd/gd_rotate.c pxlLeft = gdImageColorAllocateAlpha(src, r, g, b, a); g 61 ext/gd/libgd/gd_rotate.c pxlLeft = gdImageColorClosestAlpha(src, r, g, b, a); g 65 ext/gd/libgd/gd_rotate.c g = gdImageGreen(src,pxlSrc) - (gdImageGreen(src,pxlLeft) - gdImageGreen(src,pxlOldLeft)); g 73 ext/gd/libgd/gd_rotate.c if (g>255) { g 74 ext/gd/libgd/gd_rotate.c g = 255; g 88 ext/gd/libgd/gd_rotate.c pxlSrc = gdImageColorAllocateAlpha(dst, r, g, b, a); g 91 ext/gd/libgd/gd_rotate.c pxlSrc = gdImageColorClosestAlpha(dst, r, g, b, a); g 120 ext/gd/libgd/gd_rotate.c int i, iYPos=0, r, g, b, a; g 134 ext/gd/libgd/gd_rotate.c g = (int)((double)gdImageGreen(src,clrBack) * dWeight); g 138 ext/gd/libgd/gd_rotate.c pxlOldLeft = gdImageColorAllocateAlpha(dst, r, g, b, a); g 145 ext/gd/libgd/gd_rotate.c g = (int)((double)gdImageGreen(src,pxlSrc) * dWeight); g 149 ext/gd/libgd/gd_rotate.c pxlLeft = gdImageColorAllocateAlpha(src, r, g, b, a); g 152 ext/gd/libgd/gd_rotate.c pxlLeft = gdImageColorClosestAlpha(src, r, g, b, a); g 156 ext/gd/libgd/gd_rotate.c g = gdImageGreen(src,pxlSrc) - (gdImageGreen(src,pxlLeft) - gdImageGreen(src,pxlOldLeft)); g 164 ext/gd/libgd/gd_rotate.c if (g>255) { g 165 ext/gd/libgd/gd_rotate.c g = 255; g 179 ext/gd/libgd/gd_rotate.c pxlSrc = gdImageColorAllocateAlpha(dst, r, g, b, a); g 182 ext/gd/libgd/gd_rotate.c pxlSrc = gdImageColorClosestAlpha(dst, r, g, b, a); g 208 ext/gd/libgd/gd_rotate.c int c,r,g,b,a; g 233 ext/gd/libgd/gd_rotate.c g = gdImageGreen(src,c); g 236 ext/gd/libgd/gd_rotate.c c = gdTrueColorAlpha(r, g, b, a); g 255 ext/gd/libgd/gd_rotate.c int c,r,g,b,a; g 280 ext/gd/libgd/gd_rotate.c g = gdImageGreen(src,c); g 283 ext/gd/libgd/gd_rotate.c c = gdTrueColorAlpha(r, g, b, a); g 303 ext/gd/libgd/gd_rotate.c int c,r,g,b,a; g 328 ext/gd/libgd/gd_rotate.c g = gdImageGreen(src,c); g 331 ext/gd/libgd/gd_rotate.c c = gdTrueColorAlpha(r, g, b, a); g 371 ext/gd/libgd/gd_topal.c int g = GETJSAMPLE (ptr[1]) >> C1_SHIFT; g 375 ext/gd/libgd/gd_topal.c int g = gdTrueColorGetGreen (*ptr) >> C1_SHIFT; g 386 ext/gd/libgd/gd_topal.c histp = &histogram[r][g][b]; g 1143 ext/gd/libgd/gd_topal.c int r, g, b; g 1148 ext/gd/libgd/gd_topal.c g = GETJSAMPLE (cinfo->colormap[1][icolor]); g 1153 ext/gd/libgd/gd_topal.c g = nim->green[icolor]; g 1160 ext/gd/libgd/gd_topal.c inc1 = (minc1 - g) * C1_SCALE; g 1315 ext/gd/libgd/gd_topal.c int r, g, b; g 1318 ext/gd/libgd/gd_topal.c g = GETJSAMPLE (*inptr++); g 1322 ext/gd/libgd/gd_topal.c g = gdTrueColorGetGreen (*inptr); g 1341 ext/gd/libgd/gd_topal.c c1 = g >> C1_SHIFT; g 90 ext/gd/libgd/gd_webp.c register uint8_t g = *(p++); g 92 ext/gd/libgd/gd_webp.c im->tpixels[y][x] = gdTrueColorAlpha(r, g, b, a); g 483 ext/hash/hash_sha.c php_hash_uint32 e = state[4], f = state[5], g = state[6], h = state[7]; g 498 ext/hash/hash_sha.c T1 = h + SHA256_F3(e) + SHA256_F0(e,f,g) + SHA256_K[i] + W[i]; g 500 ext/hash/hash_sha.c h = g; g = f; f = e; e = d + T1; g 510 ext/hash/hash_sha.c state[6] += g; g 793 ext/hash/hash_sha.c php_hash_uint64 e = state[4], f = state[5], g = state[6], h = state[7]; g 808 ext/hash/hash_sha.c T1 = h + SHA512_F3(e) + SHA512_F0(e,f,g) + SHA512_K[i] + W[i]; g 810 ext/hash/hash_sha.c h = g; g = f; f = e; e = d + T1; g 820 ext/hash/hash_sha.c state[6] += g; g 534 ext/mbstring/oniguruma/st.c register unsigned int h = 0, g; g 538 ext/mbstring/oniguruma/st.c if ( g = h & 0xF0000000 ) g 539 ext/mbstring/oniguruma/st.c h ^= g >> 24; g 540 ext/mbstring/oniguruma/st.c h &= ~g; g 55 ext/mbstring/php_mbregex.c #define MBREX(g) (MBSTRG(mb_regex_globals)->g) g 3614 ext/openssl/openssl.c OPENSSL_PKEY_SET_BN(Z_ARRVAL_P(data), dsa, g); g 3617 ext/openssl/openssl.c if (dsa->p && dsa->q && dsa->g) { g 3637 ext/openssl/openssl.c OPENSSL_PKEY_SET_BN(Z_ARRVAL_P(data), dh, g); g 3640 ext/openssl/openssl.c if (dh->p && dh->g && g 3944 ext/openssl/openssl.c OPENSSL_PKEY_GET_BN(dsa, g); g 3959 ext/openssl/openssl.c OPENSSL_PKEY_GET_BN(dh, g); g 976 ext/posix/posix.c int php_posix_group_to_array(struct group *g, zval *array_group) /* {{{ */ g 981 ext/posix/posix.c if (NULL == g) g 989 ext/posix/posix.c add_assoc_string(array_group, "name", g->gr_name); g 990 ext/posix/posix.c add_assoc_string(array_group, "passwd", g->gr_passwd); g 991 ext/posix/posix.c for (count=0; g->gr_mem[count] != NULL; count++) { g 992 ext/posix/posix.c add_next_index_string(&array_members, g->gr_mem[count]); g 995 ext/posix/posix.c add_assoc_long(array_group, "gid", g->gr_gid); g 1055 ext/posix/posix.c struct group *g; g 1073 ext/posix/posix.c g = &gbuf; g 1075 ext/posix/posix.c if (getgrnam_r(name, g, buf, buflen, &g) || g == NULL) { g 1081 ext/posix/posix.c if (NULL == (g = getgrnam(name))) { g 1088 ext/posix/posix.c if (!php_posix_group_to_array(g, return_value)) { g 1111 ext/posix/posix.c struct group *g; g 1131 ext/posix/posix.c g = &_g; g 1133 ext/posix/posix.c if (NULL == (g = getgrgid(gid))) { g 1140 ext/posix/posix.c if (!php_posix_group_to_array(g, return_value)) { g 3740 ext/standard/array.c struct bucketindex *g = (struct bucketindex *)q; g 3743 ext/standard/array.c *f = *g; g 3744 ext/standard/array.c *g = t; g 4791 ext/standard/array.c Bucket **g = (Bucket **)q; g 4794 ext/standard/array.c *f = *g; g 4795 ext/standard/array.c *g = t; g 117 ext/standard/crypt_sha256.c uint32_t g = ctx->H[6]; g 138 ext/standard/crypt_sha256.c uint32_t g_save = g; g 163 ext/standard/crypt_sha256.c uint32_t T1 = h + S1 (e) + Ch (e, f, g) + K[t] + W[t]; g 165 ext/standard/crypt_sha256.c h = g; g 166 ext/standard/crypt_sha256.c g = f; g 183 ext/standard/crypt_sha256.c g += g_save; g 197 ext/standard/crypt_sha256.c ctx->H[6] = g; g 141 ext/standard/crypt_sha512.c uint64_t g = ctx->H[6]; g 162 ext/standard/crypt_sha512.c uint64_t g_save = g; g 190 ext/standard/crypt_sha512.c uint64_t T1 = h + S1 (e) + Ch (e, f, g) + K[t] + W[t]; g 192 ext/standard/crypt_sha512.c h = g; g 193 ext/standard/crypt_sha512.c g = f; g 210 ext/standard/crypt_sha512.c g += g_save; g 224 ext/standard/crypt_sha512.c ctx->H[6] = g; g 1255 sapi/fpm/fpm/fpm_conf.c glob_t g; g 1265 sapi/fpm/fpm/fpm_conf.c g.gl_offs = 0; g 1266 sapi/fpm/fpm/fpm_conf.c if ((i = glob(inc, GLOB_ERR | GLOB_MARK, NULL, &g)) != 0) { g 1280 sapi/fpm/fpm/fpm_conf.c for (i = 0; i < g.gl_pathc; i++) { g 1281 sapi/fpm/fpm/fpm_conf.c int len = strlen(g.gl_pathv[i]); g 1283 sapi/fpm/fpm/fpm_conf.c if (g.gl_pathv[i][len - 1] == '/') continue; /* don't parse directories */ g 1284 sapi/fpm/fpm/fpm_conf.c if (0 > fpm_conf_load_ini_file(g.gl_pathv[i])) { g 1285 sapi/fpm/fpm/fpm_conf.c zlog(ZLOG_ERROR, "Unable to include %s from %s at line %d", g.gl_pathv[i], filename, ini_lineno); g 1291 sapi/fpm/fpm/fpm_conf.c globfree(&g);