Searched refs:blength (Results 1 - 11 of 11) sorted by relevance

/macosx-10.9.5/rsync-42/rsync/
H A Dmatch.c137 (long)s->blength, (double)len);
140 k = (int32)MIN(len, (OFF_T)s->blength);
155 rprintf(FINFO, "hash search s->blength=%ld len=%.0f count=%.0f\n",
156 (long)s->blength, (double)len, (double)s->count);
181 l = (int32)MIN((OFF_T)s->blength, len-offset);
247 k = (int32)MIN((OFF_T)s->blength, len-offset);
282 if (backup >= s->blength+CHUNK_SIZE && end-offset > CHUNK_SIZE)
283 matched(f, s, buf, offset - s->blength, -2);
H A Dgenerator.c426 int32 blength; local
430 blength = block_size;
432 blength = BLOCK_SIZE;
439 blength = MAX_BLOCK_SIZE;
441 blength = 0;
443 blength |= c;
444 if (len < (int64)blength * blength)
445 blength &= ~c;
448 blength
[all...]
H A Dsender.c85 (double)s->count, (long)s->blength, (long)s->remainder);
89 s->flength = (OFF_T)s->count * s->blength;
91 s->flength -= s->blength - s->remainder;
111 s->sums[i].len = s->blength;
388 int32 read_size = MAX(s->blength * 3, MAX_MAP_SIZE);
389 mbuf = map_file(fd, st.st_size, read_size, s->blength);
H A Dreceiver.c153 int32 read_size = MAX(sum.blength * 2, 16*1024);
154 mapbuf = map_file(fd_r, size_r, read_size, sum.blength);
166 sum.flength = (OFF_T)sum.count * sum.blength;
168 sum.flength -= sum.blength - sum.remainder;
212 offset2 = i * (OFF_T)sum.blength;
213 len = sum.blength;
H A Dio.c943 sum->blength = read_int(f);
944 if (sum->blength < 0 || sum->blength > MAX_BLOCK_SIZE) {
946 (long)sum->blength, who_am_i());
956 if (sum->remainder < 0 || sum->remainder > sum->blength) {
974 write_int(f, sum->blength);
H A Drsync.h586 int32 blength; /**< block_length */ member in struct:sum_struct
/macosx-10.9.5/apache-786.1/httpd/srclib/apr-util/dbd/
H A Dapr_dbd_mysql.c147 apr_size_t blength = e->length; /* bytes remaining in file past offset */ local
161 blength -= blength > bind->buffer_length ? bind->buffer_length : blength;
162 *len = e->length - blength;
175 if (blength > 0) {
180 b->length = blength;
H A Dapr_dbd_oracle.c251 apr_size_t blength = e->length; /* bytes remaining in file past offset */ local
278 blength -= length;
289 if (blength > 0) {
294 b->length = blength;
/macosx-10.9.5/apr-30/apr-util/apr-util/dbd/
H A Dapr_dbd_mysql.c147 apr_size_t blength = e->length; /* bytes remaining in file past offset */ local
161 blength -= blength > bind->buffer_length ? bind->buffer_length : blength;
162 *len = e->length - blength;
175 if (blength > 0) {
180 b->length = blength;
H A Dapr_dbd_oracle.c251 apr_size_t blength = e->length; /* bytes remaining in file past offset */ local
278 blength -= length;
289 if (blength > 0) {
294 b->length = blength;
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A DdecNumber.c6274 const Unit *b, Int blength, Int exp) {
6283 if (alength>blength) return 1;
6284 if (alength<blength) return -1;
6297 if (alength>blength+(Int)D2U(exp)) return 1;
6298 if (alength+1<blength+(Int)D2U(exp)) return -1;
6302 /* to be the larger of alength and padded blength, +2 */
6303 need=blength+D2U(exp); /* maximum real length of B */
6316 accunits=decUnitAddSub(a, alength, b, blength, expunits, acc,
6378 const Unit *b, Int blength, Int bshift,
6391 if (alength<1 || blength<
6273 decUnitCompare(const Unit *a, Int alength, const Unit *b, Int blength, Int exp) argument
6377 decUnitAddSub(const Unit *a, Int alength, const Unit *b, Int blength, Int bshift, Unit *c, Int m) argument
[all...]

Completed in 324 milliseconds