Home
last modified time | relevance | path

Searched refs:noffset (Results 1 – 8 of 8) sorted by relevance

/third_party/f2fs-tools/fsck/
Dnode.c118 int offset[4], unsigned int noffset[4]) in get_node_path()
128 noffset[0] = 0; in get_node_path()
137 noffset[n]= 1; in get_node_path()
145 noffset[n] = 2; in get_node_path()
153 noffset[n] = 3; in get_node_path()
155 noffset[n] = 4 + offset[n - 1]; in get_node_path()
163 noffset[n] = 4 + dptrs_per_blk; in get_node_path()
165 noffset[n] = 5 + dptrs_per_blk + offset[n - 1]; in get_node_path()
173 noffset[n] = 5 + (dptrs_per_blk * 2); in get_node_path()
175 noffset[n] = 6 + (dptrs_per_blk * 2) + in get_node_path()
[all …]
/third_party/gstreamer/gstplugins_bad/gst/jpegformat/
Dgstjpegparse.c200 gint offset, noffset; in gst_jpeg_parse_get_image_length() local
229 noffset = in gst_jpeg_parse_get_image_length()
233 if ((resync = (noffset != offset))) { in gst_jpeg_parse_get_image_length()
239 while ((noffset >= 0) && ((value & 0xff) == 0xff)) { in gst_jpeg_parse_get_image_length()
240 noffset++; in gst_jpeg_parse_get_image_length()
241 noffset = in gst_jpeg_parse_get_image_length()
243 0x0000ff00, noffset, size - noffset, &value); in gst_jpeg_parse_get_image_length()
246 if (noffset < 0) { in gst_jpeg_parse_get_image_length()
252 offset = noffset; in gst_jpeg_parse_get_image_length()
291 noffset = offset + 2 + frame_len + eseglen; in gst_jpeg_parse_get_image_length()
[all …]
/third_party/gstreamer/gstplugins_good/ext/jpeg/
Dgstjpegdec.c302 gint offset = 0, noffset; in gst_jpeg_dec_parse() local
349 noffset = in gst_jpeg_dec_parse()
354 if ((resync = (noffset != offset))) { in gst_jpeg_dec_parse()
360 while ((noffset >= 0) && ((value & 0xff) == 0xff)) { in gst_jpeg_dec_parse()
361 noffset++; in gst_jpeg_dec_parse()
362 noffset = in gst_jpeg_dec_parse()
364 noffset, size - noffset, &value); in gst_jpeg_dec_parse()
367 if (noffset < 0) { in gst_jpeg_dec_parse()
373 offset = noffset; in gst_jpeg_dec_parse()
419 noffset = offset + 2 + frame_len + dec->parse_entropy_len; in gst_jpeg_dec_parse()
[all …]
/third_party/ltp/testcases/kernel/fs/doio/
Dgrowfiles.c1952 off_t noffset; in growfile() local
2031 if ((noffset = lseek(fd, grow_incr - 1, SEEK_END)) == -1) { in growfile()
2104 noffset = in growfile()
2108 noffset = in growfile()
2123 noffset = min_lseek; /* file will still grow */ in growfile()
2125 noffset = in growfile()
2130 noffset = in growfile()
2134 if ((Woffset = lseek(fd, noffset, SEEK_SET)) == -1) { in growfile()
2139 (long)noffset, strerror(errno)); in growfile()
/third_party/ffmpeg/libavcodec/
Diff.c835 unsigned noffset; in decode_short_horizontal_delta() local
841 noffset = (pos / planepitch) * pitch + (pos % planepitch) + k * planepitch; in decode_short_horizontal_delta()
842 bytestream2_seek_p(&pb, noffset, SEEK_SET); in decode_short_horizontal_delta()
852 noffset = (pos / planepitch) * pitch + (pos % planepitch) + k * planepitch; in decode_short_horizontal_delta()
853 bytestream2_seek_p(&pb, noffset, SEEK_SET); in decode_short_horizontal_delta()
1006 unsigned noffset = offset + (r * pitch) + d * planepitch; in decode_delta_j() local
1016 if (noffset >= dst_size) in decode_delta_j()
1018 ptr = dst + noffset; in decode_delta_j()
1025 noffset++; in decode_delta_j()
/third_party/mesa3d/src/mesa/main/
Dvarray.h36 int coffset, noffset, voffset; /* color, normal, vertex offsets */ member
Dvarray.c2599 layout->noffset = 4 * f; in _mesa_get_interleaved_layout()
2634 layout->noffset = 2 * f; in _mesa_get_interleaved_layout()
2643 layout->noffset = 6 * f; in _mesa_get_interleaved_layout()
2652 layout->noffset = 8 * f; in _mesa_get_interleaved_layout()
2710 _mesa_NormalPointer( GL_FLOAT, stride, (GLubyte *) pointer + layout.noffset ); in _mesa_InterleavedArrays()
Dglthread_varray.c699 stride, (GLubyte *) pointer + layout.noffset); in _mesa_glthread_InterleavedArrays()