Searched refs:adjust (Results 1 - 7 of 7) sorted by relevance

/PHP_TRUNK/ext/gd/libgd/
H A Dgdkanji.c235 register int adjust = c2 < 159; local
237 register int cellOffset = adjust ? (31 + (c2 > 127)) : 126;
239 *p1 = ((c1 - rowOffset) << 1) - adjust;
/PHP_TRUNK/ext/standard/
H A Dformatted_print.c209 int adjust, char fmt,
222 if ((adjust & ADJ_PRECISION) == 0) {
205 php_sprintf_appenddouble(char **buffer, int *pos, int *size, double number, int width, char padding, int alignment, int precision, int adjust, char fmt, int always_sign TSRMLS_DC) argument
/PHP_TRUNK/main/
H A Dsnprintf.c99 /* Make a local copy and adjust rve to be in terms of s */
552 #define FIX_PRECISION( adjust, precision, s, s_len ) \
553 if ( adjust ) \
597 } adjust; local
633 adjust = RIGHT;
650 adjust = LEFT;
674 adjust = LEFT;
1158 if (adjust_width && adjust == RIGHT && min_width > s_len) {
1175 if (adjust_width && adjust == LEFT && min_width > s_len)
H A Dspprintf.c177 #define FIX_PRECISION(adjust, precision, s, s_len) do { \
178 if (adjust) \
208 } adjust; local
241 adjust = RIGHT;
258 adjust = LEFT;
282 adjust = LEFT;
765 if (adjust_width && adjust == RIGHT && min_width > s_len) {
779 if (adjust_width && adjust == LEFT && min_width > s_len)
/PHP_TRUNK/ext/pcre/pcrelib/
H A Dpcre_compile.c1379 call can adjust cd->end_pattern temporarily. (Checks for binary zero while
2799 adjust the amount by which the group is to be moved
2808 adjust_recurse(pcre_uchar *group, int adjust, BOOL utf, compile_data *cd, argument
2818 /* See if this recursion is on the forward reference list. If so, adjust the
2826 PUT(hc, 0, offset + adjust);
2831 /* Otherwise, adjust the recursion offset if it's after the start of this
2837 if (cd->start_code + offset >= group) PUT(ptr, 1, offset + adjust);
3768 When we hit a repeat whose minimum is zero, we may have to adjust these values
4346 EBCDIC, so we lazily just adjust the appropriate bit. */
4798 reference, and if so, adjust th
[all...]
H A Dpcre_refcount.c65 adjust value to add to the count
73 pcre_refcount(pcre *argument_re, int adjust) argument
76 pcre16_refcount(pcre16 *argument_re, int adjust)
79 pcre32_refcount(pcre32 *argument_re, int adjust)
86 re->ref_count = (-adjust > re->ref_count)? 0 :
87 (adjust + re->ref_count > 65535)? 65535 :
88 re->ref_count + adjust;
/PHP_TRUNK/ext/fileinfo/libmagic/
H A Dreadelf.c764 int adjust = 1; local
769 adjust = adjust
771 if (adjust)

Completed in 25 milliseconds