Searched refs:positions (Results 1 - 8 of 8) sorted by relevance

/freebsd-current/usr.bin/cut/
H A Dcut.c57 static char * positions; variable
162 * set a byte in the positions array to indicate if a field or
195 for (pos = positions + start; start++ <= stop; *pos++ = 1);
212 memset(positions + 1, '1', autostart);
221 /* Grow the positions array to at least the specified size. */
228 if ((positions = realloc(positions, npos)) == NULL)
230 memset((char *)positions + oldnpos, 0, npos - oldnpos);
242 pos = positions + 1;
264 * Cut based on byte positions, takin
[all...]
/freebsd-current/lib/libc/amd64/string/
H A Dstrcmp.S234 shl %cl, %r8w # adjust NUL mask to positions in RDI/RDX
335 shl %cl, %r8w # adjust NUL mask to positions in RDI/RDX
H A Dstrncmp.S337 shl %cl, %r8d # adjust NUL mask to positions in RDI/RBX
456 shl %cl, %r8d # adjust NUL mask to positions in RSI/RBX
/freebsd-current/contrib/bsddialog/lib/
H A Dbarbox.c470 int currvalue, retval, bigchange, positions; local
484 positions = max - min + 1;
499 b.perc = ((float)(currvalue - min)*100) / (positions-1);
/freebsd-current/contrib/libarchive/libarchive/
H A Darchive_read_support_format_7zip.c187 uint64_t *positions; member in struct:_7z_pack_info
1873 free(pi->positions);
1912 pi->positions = calloc((size_t)pi->numPackStreams, sizeof(uint64_t));
1913 if (pi->sizes == NULL || pi->positions == NULL)
2410 if (si->pi.positions == NULL || si->pi.sizes == NULL)
2413 * Calculate packed stream positions.
2417 si->pi.positions[i] = packPos;
3361 pack_offset = zip->si.pi.positions[zip->pack_stream_index];
/freebsd-current/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dzstd_opt.c366 /** ZSTD_insertBt1() : add one or multiple positions to tree.
368 * @return : nb of positions added */
475 { U32 positions = 0; local
476 if (bestLength > 384) positions = MIN(192, (U32)(bestLength - 384)); /* speed optimization */
478 return MAX(positions, matchEndIdx - (current + 8));
585 & (((U32)((dictLimit-1) - repIndex) >= 3) ) /* intentional overflow : do not test positions overlapping 2 memory segments */)
591 & ((U32)((dictLimit-1) - repIndex) >= 3) ) /* intentional overflow : do not test positions overlapping 2 memory segments */
890 /* check further positions */
941 continue; /* skip unpromising positions; about ~+6% speed, -0.01 ratio */
987 while (last_pos < pos) { opt[last_pos+1].price = ZSTD_MAX_PRICE; last_pos++; } /* fill empty positions */
[all...]
/freebsd-current/sys/contrib/zstd/lib/compress/
H A Dzstd_opt.c407 /** ZSTD_insertBt1() : add one or multiple positions to tree.
410 * @return : nb of positions added */
438 * we only need positions that will be in the window at the end of the tree update.
522 { U32 positions = 0; local
523 if (bestLength > 384) positions = MIN(192, (U32)(bestLength - 384)); /* speed optimization */
525 return MAX(positions, matchEndIdx - (curr + 8));
632 & (((U32)((dictLimit-1) - repIndex) >= 3) ) /* intentional overflow : do not test positions overlapping 2 memory segments */)
638 & ((U32)((dictLimit-1) - repIndex) >= 3) ) /* intentional overflow : do not test positions overlapping 2 memory segments */
1141 /* check further positions */
1192 continue; /* skip unpromising positions; abou
[all...]
/freebsd-current/stand/lua/
H A Ddrawer.lua529 -- it determines the positions of other elements

Completed in 143 milliseconds