HomeSort by: relevance | last modified time | path
    Searched defs:positions (Results 1 - 6 of 6) sorted by relevancy

  /src/external/bsd/openldap/dist/libraries/liblunicode/ucdata/
ucpgba.h 83 unsigned long *positions; /* List of original positions in source. */ member in struct:_ucrun_t
  /src/usr.bin/cut/
cut.c 152 static char *positions = NULL; variable
163 if (positions == NULL) {
165 positions = ecalloc(numpositions, sizeof(*positions));
169 * Set a byte in the positions array to indicate if a field or
201 positions = erealloc(positions, newsize);
202 (void)memset(positions + numpositions, 0,
208 for (pos = positions + start; start++ <= stop; pos++)
218 (void)memset(positions + 1, '1', autostart)
    [all...]
  /src/bin/ksh/
c_sh.c 114 int positions, new_val; local
121 positions = 0;
125 case 'a': positions |= 0111; break;
126 case 'u': positions |= 0100; break;
127 case 'g': positions |= 0010; break;
128 case 'o': positions |= 0001; break;
130 if (!positions)
131 positions = 0111; /* default is a */
153 new_val = (new_val & 07) * positions;
160 | (new_umask & ~(positions * 07))
    [all...]
  /src/external/bsd/zstd/dist/lib/compress/
zstd_opt.c 436 /** ZSTD_insertBt1() : add one or multiple positions to tree.
439 * @return : nb of positions added */
469 * we only need positions that will be in the window at the end of the tree update.
553 { U32 positions = 0; local
554 if (bestLength > 384) positions = MIN(192, (U32)(bestLength - 384)); /* speed optimization */
556 return MAX(positions, matchEndIdx - (curr + 8));
667 & (((U32)((dictLimit-1) - repIndex) >= 3) ) /* intentional overflow : do not test positions overlapping 2 memory segments */)
673 & ((U32)((dictLimit-1) - repIndex) >= 3) ) /* intentional overflow : do not test positions overlapping 2 memory segments */
1196 /* check further positions */
1268 continue; /* skip unpromising positions; about ~+6% speed, -0.01 ratio *
    [all...]
  /src/sys/fs/udf/
udf_subr.c 871 uint32_t positions[4]; local
927 positions[0] = track_start+256;
928 positions[1] = track_end-256;
929 positions[2] = track_end;
930 positions[3] = track_start+512; /* [UDF 2.60/6.11.2] */
937 positions[anch]));
938 error = udf_read_anchor(ump, positions[anch], anchorsp);
  /src/external/bsd/libarchive/dist/libarchive/
archive_read_support_format_7zip.c 210 uint64_t *positions; member in struct:_7z_pack_info
2129 free(pi->positions);
2168 pi->positions = calloc((size_t)pi->numPackStreams, sizeof(uint64_t));
2169 if (pi->sizes == NULL || pi->positions == NULL)
2671 if (si->pi.positions == NULL || si->pi.sizes == NULL)
2674 * Calculate packed stream positions.
2678 si->pi.positions[i] = packPos;
3613 pack_offset = zip->si.pi.positions[zip->pack_stream_index];

Completed in 57 milliseconds