/third_party/vk-gl-cts/framework/delibs/decpp/ |
D | dePoolArray.hpp | 143 const T& operator[] (deUintptr offs) const throw() { return (*m_array)[this->m_ndx+offs]; } in operator []() 154 …PoolArrayConstIterator<T, Alignment>& operator+= (deIntptr offs) { this->m_ndx += offs; return *th… in operator +=() argument 155 …PoolArrayConstIterator<T, Alignment>& operator-= (deIntptr offs) { this->m_ndx -= offs; return *th… in operator -=() argument 179 T& operator[] (deUintptr offs) const throw() { return (*m_array)[this->m_ndx+offs]; } in operator []() 190 PoolArrayIterator<T, Alignment>& operator+= (deIntptr offs) { this->m_ndx += offs; return *this; } in operator +=() argument 191 PoolArrayIterator<T, Alignment>& operator-= (deIntptr offs) { this->m_ndx -= offs; return *this; } in operator -=() argument 456 …tIterator<T, Alignment> operator+ (const PoolArrayConstIterator<T, Alignment>& iter, deIntptr offs) in operator +() argument 458 return PoolArrayConstIterator<T, Alignment>(iter->getArray(), iter->getNdx()+offs); in operator +() 462 inline PoolArrayConstIterator<T, Alignment> operator+ (deUintptr offs, const PoolArrayConstIterator… in operator +() argument 464 return PoolArrayConstIterator<T, Alignment>(iter->getArray(), iter->getNdx()+offs); in operator +() [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | fraps.c | 150 uint32_t offs[4]; in decode_frame() local 208 offs[i] = AV_RL32(buf + 4 + i * 4); in decode_frame() 209 if (offs[i] >= buf_size - header_size || (i && offs[i] <= offs[i - 1] + 1024)) { in decode_frame() 214 offs[planes] = buf_size - header_size; in decode_frame() 216 av_fast_padded_malloc(&s->tmpbuf, &s->tmpbuf_size, offs[i + 1] - offs[i] - 1024); in decode_frame() 293 buf + offs[i], offs[i + 1] - offs[i], in decode_frame() 306 buf + offs[i], offs[i + 1] - offs[i], 0, 3)) < 0) { in decode_frame()
|
D | faxcompr.c | 258 unsigned int offs = 0, run = 0; in decode_group3_2d_line() local 260 while (offs < width) { in decode_group3_2d_line() 272 run = run_off - offs; in decode_group3_2d_line() 273 offs = run_off; in decode_group3_2d_line() 276 if (offs > width) { in decode_group3_2d_line() 303 offs += run; in decode_group3_2d_line() 304 if (offs > width || run > width) { in decode_group3_2d_line() 317 int pix_left = width - offs; in decode_group3_2d_line() 324 offs = width - pix_left; in decode_group3_2d_line() 334 run = run_off - offs + (cmode - 5); in decode_group3_2d_line() [all …]
|
D | dca_exss.c | 324 int offs = asset->asset_offset; in set_exss_offsets() local 328 asset->core_offset = offs; in set_exss_offsets() 331 offs += asset->core_size; in set_exss_offsets() 336 asset->xbr_offset = offs; in set_exss_offsets() 339 offs += asset->xbr_size; in set_exss_offsets() 344 asset->xxch_offset = offs; in set_exss_offsets() 347 offs += asset->xxch_size; in set_exss_offsets() 352 asset->x96_offset = offs; in set_exss_offsets() 355 offs += asset->x96_size; in set_exss_offsets() 360 asset->lbr_offset = offs; in set_exss_offsets() [all …]
|
/third_party/gstreamer/gstplugins_bad/gst/mpegtsdemux/ |
D | mpegtsbase.h | 235 #define MPEGTS_BIT_SET(field, offs) ((field)[(offs) >> 3] |= (1 << ((offs) & 0x7))) argument 236 #define MPEGTS_BIT_UNSET(field, offs) ((field)[(offs) >> 3] &= ~(1 << ((offs) & 0x7))) argument 237 #define MPEGTS_BIT_IS_SET(field, offs) ((field)[(offs) >> 3] & (1 << ((offs) & 0x7))) argument
|
D | mpegtspacketizer.h | 336 #define MPEGTS_BIT_SET(field, offs) ((field)[(offs) >> 3] |= (1 << ((offs) & 0x7))) argument 337 #define MPEGTS_BIT_UNSET(field, offs) ((field)[(offs) >> 3] &= ~(1 << ((offs) & 0x7))) argument 338 #define MPEGTS_BIT_IS_SET(field, offs) ((field)[(offs) >> 3] & (1 << ((offs) & 0x7))) argument
|
/third_party/glslang/Test/baseResults/ |
D | spv.specTexture.frag.out | 15 Name 19 "offs" 20 Decorate 19(offs) SpecId 1 35 19(offs): 18(int) SpecConstant 0 37 21: 20(ivec2) SpecConstantComposite 19(offs) 19(offs)
|
/third_party/gstreamer/gstplugins_good/gst/rtp/ |
D | gstrtpvrawdepay.c | 430 guint length, line, offs, plen; in gst_rtp_vraw_depay_process_packet() local 441 offs = ((headers[4] & 0x7f) << 8) | headers[5]; in gst_rtp_vraw_depay_process_packet() 457 if (offs > (width - xinc)) { in gst_rtp_vraw_depay_process_packet() 458 GST_WARNING_OBJECT (depayload, "skipping offset %d: out of range", offs); in gst_rtp_vraw_depay_process_packet() 463 if (offs + ((length / pgroup) * xinc) > width) { in gst_rtp_vraw_depay_process_packet() 464 plen = ((width - offs) * pgroup) / xinc; in gst_rtp_vraw_depay_process_packet() 466 length, offs, plen); in gst_rtp_vraw_depay_process_packet() 472 line, offs, payload_len); in gst_rtp_vraw_depay_process_packet() 482 offs /= xinc; in gst_rtp_vraw_depay_process_packet() 483 datap = p0 + (line * ystride) + (offs * pgroup); in gst_rtp_vraw_depay_process_packet() [all …]
|
D | gstrtpvrawpay.c | 473 guint offs, lin; in gst_rtp_vraw_pay_handle_buffer() local 478 offs = ((headers[4] & 0x7f) << 8) | headers[5]; in gst_rtp_vraw_pay_handle_buffer() 484 "writing length %u, line %u, offset %u, cont %d", length, lin, offs, in gst_rtp_vraw_pay_handle_buffer() 494 offs /= xinc; in gst_rtp_vraw_pay_handle_buffer() 495 memcpy (outdata, p0 + (lin * ystride) + (offs * pgroup), length); in gst_rtp_vraw_pay_handle_buffer() 503 datap = p0 + (lin * ystride) + (offs * 4); in gst_rtp_vraw_pay_handle_buffer() 519 yd1p = yp + (lin * ystride) + (offs); in gst_rtp_vraw_pay_handle_buffer() 521 uvoff = (lin / yinc * uvstride) + (offs / xinc); in gst_rtp_vraw_pay_handle_buffer() 541 ydp = yp + (lin * ystride) + offs; in gst_rtp_vraw_pay_handle_buffer() 542 uvoff = (lin / yinc * uvstride) + (offs / xinc); in gst_rtp_vraw_pay_handle_buffer()
|
/third_party/musl/src/network/ |
D | dn_comp.c | 7 static int getoffs(short *offs, const unsigned char *base, const unsigned char *s) in getoffs() argument 17 offs[i++] = s-base; in getoffs() 40 short offs[128]; in match() local 41 int noff = getoffs(offs, base, dn); in match() 45 o = offs[--noff]; in match()
|
/third_party/musl/src/regex/ |
D | glob.c | 231 size_t offs = (flags & GLOB_DOOFFS) ? g->gl_offs : 0; in glob() local 238 g->gl_offs = offs; in glob() 273 char **pathv = realloc(g->gl_pathv, (offs + g->gl_pathc + cnt + 1) * sizeof(char *)); in glob() 279 offs += g->gl_pathc; in glob() 281 g->gl_pathv = malloc((offs + cnt + 1) * sizeof(char *)); in glob() 286 for (i=0; i<offs; i++) in glob() 290 g->gl_pathv[offs + i] = tail->name; in glob() 291 g->gl_pathv[offs + i] = NULL; in glob() 295 qsort(g->gl_pathv+offs, cnt, sizeof(char *), sort); in glob()
|
/third_party/glslang/Test/ |
D | spv.specTexture.frag | 3 layout(constant_id = 1) const int offs = 0; 9 color_out = textureLodOffset(tex, vec2(0.0, 0.0), 0.0, ivec2(offs, offs));
|
/third_party/ntfs-3g/libntfs-3g/ |
D | compress.c | 283 int offs; /* offset to best match */ in ntfs_compress_block() local 342 offs = pctx->rel; in ntfs_compress_block() 348 q = (~offs << (16 - bp_cur)) + (j - i - 3); in ntfs_compress_block() 388 q = (~offs << (16 - bp_cur)) + in ntfs_compress_block() 982 s64 offs, u32 to_read, char *inbuf) in read_clusters() argument 1000 count -= offs; in read_clusters() 1001 xpos += offs; in read_clusters() 1024 s64 offs, s32 to_write, const char *outbuf) in write_clusters() argument 1041 count -= offs; in write_clusters() 1042 xpos += offs; in write_clusters() [all …]
|
D | ea.c | 248 size_t offs; in ntfs_set_ntfs_ea() local 258 offs = 0; in ntfs_set_ntfs_ea() 263 while (ok && (offs < size)) { in ntfs_set_ntfs_ea() 264 p_ea = (const EA_ATTR*)&value[offs]; in ntfs_set_ntfs_ea() 265 nextoffs = offs + le32_to_cpu(p_ea->next_entry_offset); in ntfs_set_ntfs_ea() 267 ok = (nextoffs > offs) in ntfs_set_ntfs_ea() 272 && ((offs + offsetof(EA_ATTR,name) in ntfs_set_ntfs_ea() 276 && ((offs + offsetof(EA_ATTR,name) in ntfs_set_ntfs_ea() 293 offs = nextoffs; in ntfs_set_ntfs_ea()
|
/third_party/flutter/skia/third_party/externals/zlib/ |
D | inftrees.c | 59 unsigned short offs[MAXBITS+1]; /* offsets in table for each length */ local 141 offs[1] = 0; 143 offs[len + 1] = offs[len] + count[len]; 147 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym;
|
/third_party/skia/third_party/externals/zlib/ |
D | inftrees.c | 59 unsigned short offs[MAXBITS+1]; /* offsets in table for each length */ local 141 offs[1] = 0; 143 offs[len + 1] = offs[len] + count[len]; 147 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym;
|
/third_party/boost/libs/beast/test/extern/zlib-1.2.11/ |
D | inftrees.c | 59 unsigned short offs[MAXBITS+1]; /* offsets in table for each length */ local 141 offs[1] = 0; 143 offs[len + 1] = offs[len] + count[len]; 147 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym;
|
/third_party/zlib/ |
D | inftrees.c | 55 unsigned short offs[MAXBITS+1]; /* offsets in table for each length */ in inflate_table() local 137 offs[1] = 0; in inflate_table() 139 offs[len + 1] = offs[len] + count[len]; in inflate_table() 143 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym; in inflate_table()
|
/third_party/boost/tools/boost_install/test/iostreams/zlib-1.2.11/ |
D | inftrees.c | 59 unsigned short offs[MAXBITS+1]; /* offsets in table for each length */ local 141 offs[1] = 0; 143 offs[len + 1] = offs[len] + count[len]; 147 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym;
|
/third_party/node/deps/zlib/ |
D | inftrees.c | 59 unsigned short offs[MAXBITS+1]; /* offsets in table for each length */ local 141 offs[1] = 0; 143 offs[len + 1] = offs[len] + count[len]; 147 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym;
|
/third_party/boost/libs/beast/test/extern/zlib-1.2.11/contrib/infback9/ |
D | inftree9.c | 59 unsigned short offs[MAXBITS+1]; /* offsets in table for each length */ local 135 offs[1] = 0; 137 offs[len + 1] = offs[len] + count[len]; 141 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym;
|
/third_party/boost/tools/boost_install/test/iostreams/zlib-1.2.11/contrib/infback9/ |
D | inftree9.c | 59 unsigned short offs[MAXBITS+1]; /* offsets in table for each length */ local 135 offs[1] = 0; 137 offs[len + 1] = offs[len] + count[len]; 141 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym;
|
/third_party/zlib/contrib/infback9/ |
D | inftree9.c | 59 unsigned short offs[MAXBITS+1]; /* offsets in table for each length */ local 135 offs[1] = 0; 137 offs[len + 1] = offs[len] + count[len]; 141 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym;
|
/third_party/libwebsockets/win32port/zlib/ |
D | inftrees.c | 59 unsigned short offs[MAXBITS+1]; /* offsets in table for each length */ local 141 offs[1] = 0; 143 offs[len + 1] = offs[len] + count[len]; 147 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym;
|
/third_party/ffmpeg/libavformat/ |
D | dv.c | 76 int offs; in dv_extract_pack() local 82 if (c&1) offs = (80 * 6 + 80 * 16 * 0 + 3 + c*12000); in dv_extract_pack() 83 else offs = (80 * 6 + 80 * 16 * 3 + 3 + c*12000); in dv_extract_pack() 86 if (c&1) offs = (80 * 6 + 80 * 16 * 1 + 3 + c*12000); in dv_extract_pack() 87 else offs = (80 * 6 + 80 * 16 * 4 + 3 + c*12000); in dv_extract_pack() 90 if (c&1) offs = (80 * 3 + 8 + c*12000); in dv_extract_pack() 91 else offs = (80 * 5 + 48 + 5 + c*12000); in dv_extract_pack() 94 offs = (80*1 + 3 + 3); in dv_extract_pack() 99 if (frame[offs] == t) in dv_extract_pack() 103 return frame[offs] == t ? &frame[offs] : NULL; in dv_extract_pack()
|