Home
last modified time | relevance | path

Searched refs:offs (Results 1 - 25 of 108) sorted by relevance

12345

/third_party/lzma/CPP/7zip/Common/
H A DRegisterArc.h44 #define REGISTER_ARC_V(n, e, ae, id, sigSize, sig, offs, flags, tf, crIn, crOut, isArc) \
45 static const CArcInfo g_ArcInfo = { flags, id, sigSize, offs, sig, n, e, ae, tf, crIn, crOut, isArc } ; \
47 #define REGISTER_ARC_R(n, e, ae, id, sigSize, sig, offs, flags, tf, crIn, crOut, isArc) \
48 REGISTER_ARC_V (n, e, ae, id, sigSize, sig, offs, flags, tf, crIn, crOut, isArc) \
53 #define REGISTER_ARC_I_CLS(cls, n, e, ae, id, sig, offs, flags, isArc) \
55 REGISTER_ARC_R(n, e, ae, id, Z7_ARRAY_SIZE(sig), sig, offs, flags, 0, CreateArc, NULL, isArc)
57 #define REGISTER_ARC_I_CLS_NO_SIG(cls, n, e, ae, id, offs, flags, isArc) \
59 REGISTER_ARC_R(n, e, ae, id, 0, NULL, offs, flags, 0, CreateArc, NULL, isArc)
61 #define REGISTER_ARC_I(n, e, ae, id, sig, offs, flags, isArc) \
62 REGISTER_ARC_I_CLS(CHandler(), n, e, ae, id, sig, offs, flag
[all...]
/third_party/FreeBSD/contrib/libexecinfo/
H A Dbacktrace.c49 static int rasprintf(char **buf, size_t *bufsiz, size_t offs, const char *fmt, ...) in rasprintf() argument
55 if (*buf && offs < *bufsiz) { in rasprintf()
60 len = vsnprintf(*buf + offs, *bufsiz - offs, fmt, ap); in rasprintf()
63 if (len < 0 || (size_t)len + 1 < *bufsiz - offs) in rasprintf()
67 nbufsiz = MAX(offs, *bufsiz) + 512; in rasprintf()
85 static ssize_t format_string(char **buf, size_t *bufsiz, size_t offs, const char *fmt, in format_string() argument
89 size_t o = offs; in format_string()
123 return o - offs; in format_string()
126 static ssize_t format_address(char **buf, size_t *bufsiz, size_t offs, in format_address() argument
154 size_t offs = len * sizeof(char *); backtrace_symbols_fmt() local
[all...]
/third_party/musl/third_party/openbsd/gnu/lib/libexecinfo/
H A Dbacktrace.c49 static int rasprintf(char **buf, size_t *bufsiz, size_t offs, const char *fmt, ...) in rasprintf() argument
55 if (*buf && offs < *bufsiz) { in rasprintf()
60 len = vsnprintf(*buf + offs, *bufsiz - offs, fmt, ap); in rasprintf()
63 if (len < 0 || (size_t)len + 1 < *bufsiz - offs) in rasprintf()
67 nbufsiz = MAX(offs, *bufsiz) + 512; in rasprintf()
85 static ssize_t format_string(char **buf, size_t *bufsiz, size_t offs, const char *fmt, in format_string() argument
89 size_t o = offs; in format_string()
123 return o - offs; in format_string()
126 static ssize_t format_address(char **buf, size_t *bufsiz, size_t offs, in format_address() argument
170 size_t offs = len * sizeof(char *); backtrace_symbols_fmt() local
[all...]
/third_party/node/deps/v8/src/debug/wasm/gdb-server/
H A Dpacket.cc41 for (uint32_t offs = 0; offs < len; offs++) { in AddBlock()
42 AddWord8(p[offs]); in AddBlock()
238 for (uint32_t offs = 0; offs < len; offs++) { in GetBlock()
239 res = GetWord8(&p[offs]); in GetBlock()
347 for (size_t offs = 0; offs < siz in GetPacketData()
[all...]
/third_party/vk-gl-cts/framework/delibs/decpp/
H A DdePoolArray.hpp143 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 *this; } in operator +=() argument
155 PoolArrayConstIterator<T, Alignment>& operator-= (deIntptr offs) { this->m_ndx -= offs; return *this; } 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; retur argument
191 operator -=(deIntptr offs) operator -=() argument
456 operator +(const PoolArrayConstIterator<T, Alignment>& iter, deIntptr offs) operator +() argument
462 operator +(deUintptr offs, const PoolArrayConstIterator<T, Alignment>& iter) operator +() argument
468 operator -(const PoolArrayConstIterator<T, Alignment>& iter, deIntptr offs) operator -() argument
503 operator +(const PoolArrayIterator<T, Alignment>& iter, deIntptr offs) operator +() argument
509 operator +(deUintptr offs, const PoolArrayIterator<T, Alignment>& iter) operator +() argument
515 operator -(const PoolArrayIterator<T, Alignment>& iter, deIntptr offs) operator -() argument
[all...]
/third_party/ffmpeg/libavcodec/
H A Dfraps.c147 uint32_t offs[4]; in decode_frame() local
205 offs[i] = AV_RL32(buf + 4 + i * 4); in decode_frame()
206 if (offs[i] >= buf_size - header_size || (i && offs[i] <= offs[i - 1] + 1024)) { in decode_frame()
211 offs[planes] = buf_size - header_size; in decode_frame()
213 av_fast_padded_malloc(&s->tmpbuf, &s->tmpbuf_size, offs[i + 1] - offs[i] - 1024); in decode_frame()
290 buf + offs[i], offs[ in decode_frame()
[all...]
H A Dfaxcompr.c258 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 in decode_group3_2d_line()
[all...]
H A Ddca_exss.c324 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...]
H A Divi.c82 int offs, int mv_x, int mv_y, int mv_x2, int mv_y2, in ivi_mc()
85 int ref_offs = offs + mv_y * band->pitch + mv_x; in ivi_mc()
91 av_assert0(offs >= 0 && ref_offs >= 0 && band->ref_buf); in ivi_mc()
92 av_assert0(buf_size - min_size >= offs); in ivi_mc()
97 mc(band->buf + offs, band->ref_buf + ref_offs, band->pitch, mc_type); in ivi_mc()
99 int ref_offs2 = offs + mv_y2 * band->pitch + mv_x2; in ivi_mc()
101 if (offs < 0 || ref_offs2 < 0 || !band->b_ref_buf) in ivi_mc()
107 mc(band->buf + offs, band->b_ref_buf + ref_offs2, in ivi_mc()
110 mc_avg(band->buf + offs, band->ref_buf + ref_offs, in ivi_mc()
491 uint32_t quant, int offs, in ivi_decode_coded_blocks()
81 ivi_mc(const IVIBandDesc *band, ivi_mc_func mc, ivi_mc_avg_func mc_avg, int offs, int mv_x, int mv_y, int mv_x2, int mv_y2, int mc_type, int mc_type2) ivi_mc() argument
485 ivi_decode_coded_blocks(GetBitContext *gb, const IVIBandDesc *band, ivi_mc_func mc, ivi_mc_avg_func mc_avg, int mv_x, int mv_y, int mv_x2, int mv_y2, int *prev_dc, int is_intra, int mc_type, int mc_type2, uint32_t quant, int offs, AVCodecContext *avctx) ivi_decode_coded_blocks() argument
752 int offs, mb_offset, row_offset, ret; ivi_process_empty_tile() local
[all...]
/third_party/elfutils/tests/
H A Delfcopy.c187 GElf_Off *offs = NULL; in copy_elf() local
197 offs = malloc (shnum * sizeof (GElf_Off)); in copy_elf()
198 if (offs == NULL) in copy_elf()
200 printf ("couldn't allocate memory for offs\n"); in copy_elf()
221 offs[last_off] = shdr.sh_offset; in copy_elf()
235 GElf_Word off = offs[last_off - 1]; in copy_elf()
236 offs[last_off - 1] = off + shdr.sh_size; in copy_elf()
237 offs[last_off] = off; in copy_elf()
243 offs[last_off] = shdr.sh_offset; in copy_elf()
290 shdr.sh_offset = offs[last_of in copy_elf()
[all...]
/third_party/musl/src/regex/
H A Dglob.c231 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/musl/src/network/
H A Ddn_comp.c7 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/node/deps/v8/third_party/zlib/
H A Dinftrees.c59 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/
H A Dinftrees.c54 unsigned short offs[MAXBITS+1]; /* offsets in table for each length */ in inflate_table() local
136 offs[1] = 0; in inflate_table()
138 offs[len + 1] = offs[len] + count[len]; in inflate_table()
142 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym; in inflate_table()
/third_party/skia/third_party/externals/zlib/
H A Dinftrees.c59 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/contrib/infback9/
H A Dinftree9.c54 unsigned short offs[MAXBITS+1]; /* offsets in table for each length */ in inflate_table9() local
130 offs[1] = 0; in inflate_table9()
132 offs[len + 1] = offs[len] + count[len]; in inflate_table9()
136 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym; in inflate_table9()
/third_party/zlib/
H A Dinftrees.c54 unsigned short offs[MAXBITS+1]; /* offsets in table for each length */ in inflate_table() local
136 offs[1] = 0; in inflate_table()
138 offs[len + 1] = offs[len] + count[len]; in inflate_table()
142 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym; in inflate_table()
/third_party/backends/backend/
H A Dplustek-usbcalfile.c732 usb_get_shading_part(u_short *buf, u_long offs, u_long src_len, int dst_len) in usb_get_shading_part() argument
743 p_src = buf + src_len * i + offs; in usb_get_shading_part()
764 u_long dim_w, dim_d, offs; in usb_FineShadingFromFile() local
777 offs = ((u_long)sp->Origin.x * xdpi) / 300; in usb_FineShadingFromFile()
787 DBG( _DBG_INFO2, "Offset = %lu\n", offs ); in usb_FineShadingFromFile()
789 usb_get_shading_part(a_wDarkShading, offs, dim_d, sp->Size.dwPhyPixels); in usb_FineShadingFromFile()
790 usb_get_shading_part(a_wWhiteShading, offs, dim_w, sp->Size.dwPhyPixels); in usb_FineShadingFromFile()
805 u_long offs; in usb_SaveCalSetShading() local
818 offs = ((u_long)sp->Origin.x * xdpi) / 300; in usb_SaveCalSetShading()
827 DBG( _DBG_INFO2, "Offset = %lu\n", offs ); in usb_SaveCalSetShading()
[all...]
/third_party/ntfs-3g/libntfs-3g/
H A Dcompress.c283 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()
859 " inode %lld offs 0x%llx\n", in ntfs_compressed_attr_pread()
919 " inode %lld offs 0x%llx\n", in ntfs_compressed_attr_pread()
982 s64 offs, u32 to_read, char *inbuf) in read_clusters()
1000 count -= offs; in read_clusters()
1001 xpos += offs; in read_clusters()
1024 s64 offs, s3 in write_clusters()
981 read_clusters(ntfs_volume *vol, const runlist_element *rl, s64 offs, u32 to_read, char *inbuf) read_clusters() argument
1023 write_clusters(ntfs_volume *vol, const runlist_element *rl, s64 offs, s32 to_write, const char *outbuf) write_clusters() argument
1068 ntfs_comp_set(ntfs_attr *na, runlist_element *rl, s64 offs, u32 insz, const char *inbuf) ntfs_comp_set() argument
1582 ntfs_read_append(ntfs_attr *na, const runlist_element *rl, s64 offs, u32 compsz, s32 pos, BOOL appending, char *outbuf, s64 to_write, const void *b) ntfs_read_append() argument
1626 ntfs_flush(ntfs_attr *na, runlist_element *rl, s64 offs, char *outbuf, s32 count, BOOL compress, BOOL appending, VCN *update_from) ntfs_flush() argument
1670 ntfs_compressed_pwrite(ntfs_attr *na, runlist_element *wrl, s64 wpos, s64 offs, s64 to_write, s64 rounded, const void *b, int compressed_part, VCN *update_from) ntfs_compressed_pwrite() argument
1873 ntfs_compressed_close(ntfs_attr *na, runlist_element *wrl, s64 offs, VCN *update_from) ntfs_compressed_close() argument
[all...]
H A Dea.c248 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/ffmpeg/libavcodec/x86/
H A Dmlpdsp_init.c77 #define MLPMUL(label, offset, offs, offc) \
79 "movslq "offset"+"offs"(%0), %%rax\n\t" \
102 #define MLPMUL(label, offset, offs, offc) \
104 "mov "offset"+"offs"(%0), %%eax\n\t" \
/third_party/lzma/C/
H A DPpmd.h114 #define Ppmd_GetPtr(p, offs) ((void *)((p)->Base + (offs)))
115 #define Ppmd_GetPtr_Type(p, offs, type) ((type *)Ppmd_GetPtr(p, offs))
/third_party/ffmpeg/libavformat/
H A Ddv.c87 int offs; in dv_extract_pack() local
93 if (c&1) offs = (80 * 6 + 80 * 16 * 0 + 3 + c*12000); in dv_extract_pack()
94 else offs = (80 * 6 + 80 * 16 * 3 + 3 + c*12000); in dv_extract_pack()
97 if (c&1) offs = (80 * 6 + 80 * 16 * 1 + 3 + c*12000); in dv_extract_pack()
98 else offs = (80 * 6 + 80 * 16 * 4 + 3 + c*12000); in dv_extract_pack()
101 if (c&1) offs = (80 * 3 + 8 + c*12000); in dv_extract_pack()
102 else offs = (80 * 5 + 48 + 5 + c*12000); in dv_extract_pack()
105 offs = (80*1 + 3 + 3); in dv_extract_pack()
110 if (frame[offs] == t) in dv_extract_pack()
114 return frame[offs] in dv_extract_pack()
[all...]
/third_party/ffmpeg/libavcodec/arm/
H A Dmpegaudiodsp_fixed_armv6.S26 .macro sum8 lo, hi, w, p, t1, t2, t3, t4, rsb=skip, offs=0
27 ldr \t1, [\w, #4*\offs]
31 ldr \t3, [\w, #4*64*\i+4*\offs]
35 ldr \t1, [\w, #4*64*(\i+1)+4*\offs]
40 ldr \t3, [\w, #4*64*7+4*\offs]
/third_party/libwebsockets/win32port/zlib/
H A Dinftrees.c59 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;

Completed in 15 milliseconds

12345