Searched defs:skip (Results 1 - 25 of 34) sorted by relevance

12

/vbox/src/VBox/Devices/PC/ipxe/src/crypto/
H A Darc4.c109 * @v skip Number of bytes of keystream to skip
114 void arc4_skip ( const void *key, size_t keylen, size_t skip, argument
119 arc4_xor ( &ctx, NULL, NULL, skip );
/vbox/src/VBox/Devices/PC/ipxe/src/interface/bofm/
H A Dbofm.c240 int skip; local
255 /* Determine whether or not we should skip normal POST
262 skip = BOFM_SKIP_INIT;
266 skip = 0;
293 bofmrc = ( BOFM_SUCCESS | skip );
331 bofmrc = ( BOFM_SUCCESS | skip );
/vbox/src/libs/zlib-1.2.6/contrib/puff/
H A Dpufftest.c14 of input to skip before inflating (e.g. to skip a zlib or gzip header), and
91 unsigned skip = 0; local
105 skip = (unsigned)atoi(arg + 1);
128 if (skip >= len) {
129 fprintf(stderr, "skip request of %d leaves no input\n", skip);
134 /* test inflate data with offset skip */
135 len -= skip;
137 ret = puff(NIL, &destlen, source + skip,
[all...]
/vbox/src/VBox/Devices/Network/slirp/bsd/amd64/
H A Din_cksum.c199 in_cksum_skip(struct mbuf *m, int len, int skip) argument
208 len -= skip;
209 for (; skip && m; m = m->m_next) {
210 if (m->m_len > skip) {
211 mlen = m->m_len - skip;
212 addr = mtod(m, caddr_t) + skip;
215 skip -= m->m_len;
/vbox/src/VBox/Devices/Network/slirp/bsd/i386/
H A Din_cksum.c207 in_cksum_skip(struct mbuf *m, int len, int skip) argument
216 len -= skip;
217 for (; skip && m; m = m->m_next) {
218 if (m->m_len > skip) {
219 mlen = m->m_len - skip;
220 addr = mtod(m, caddr_t) + skip;
223 skip -= m->m_len;
269 in_cksum_skip(m, len, skip)
272 int skip;
280 len -= skip;
[all...]
/vbox/src/libs/zlib-1.2.6/examples/
H A Dgzjoin.c155 /* skip bytes in file */
156 local void bskip(bin *in, unsigned skip) argument
162 /* easy case -- skip bytes in buffer */
163 if (skip <= in->left) {
164 in->left -= skip;
165 in->next += skip;
169 /* skip what's in buffer, discard buffer contents */
170 skip -= in->left;
174 if (skip > CHUNK) {
177 left = skip
[all...]
H A Dzran.c247 int ret, skip; local
285 /* skip uncompressed bytes until offset reached, then satisfy request */
288 skip = 1; /* while skipping to offset */
291 if (offset == 0 && skip) { /* at offset now */
294 skip = 0; /* only do this once */
296 if (offset > WINSIZE) { /* skip WINSIZE bytes */
301 else if (offset != 0) { /* last skip */
335 } while (skip);
338 ret = skip ? 0 : len - strm.avail_out;
H A Dgzappend.c199 /* skip over n bytes of in */
200 local void skip(file *in, unsigned n) function
232 /* skip over gzip header */
242 skip(in, 6);
246 skip(in, n);
250 if (flags & 2) skip(in, 2);
275 /* skip gzip header */
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/libWine/
H A Dsortkey.c182 int skip = 0; local
188 skip = 1;
194 skip = 1;
196 if (skip) continue;
253 int skip = 0; local
259 skip = 1;
265 skip = 1;
267 if (skip) continue;
302 int skip = 0; local
308 skip
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/h/
H A DDLexerBase.cpp157 skip() function in class:DLGLexerBase
241 skip();
/vbox/src/VBox/Devices/EFI/Firmware/VBoxPkg/VBoxFsDxe/
H A Dfsw_iso9660.c259 int skip; local
337 skip = 0;
349 skip = sp->skip;
492 // skip . and ..
548 // skip . and ..
623 sp_off = (fsw_u8 *)&sp[1] - (fsw_u8 *)dirrec + sp->skip;
H A Dfsw_iso9660.h179 fsw_u8 skip; member in struct:fsw_rock_ridge_susp_sp
/vbox/src/libs/xpcom18a4/xpcom/base/
H A DnsStackFrameUnix.cpp106 int skip = 2; local
109 if (--skip <= 0) {
H A DnsStackFrameWin.cpp288 int skip = 2; local
320 if (skip-- > 0)
/vbox/src/libs/zlib-1.2.6/
H A Dgzguts.h172 z_off64_t skip; /* amount to skip (already rewound if backwards) */ member in struct:__anon17372
/vbox/src/libs/zlib-1.2.6/contrib/minizip/
H A Dminiunz.c363 int skip=0; local
403 skip = 1;
409 if ((skip==0) && (err==UNZ_OK))
/vbox/src/libs/libpng-1.2.8/
H A Dpngpread.c500 png_push_crc_skip(png_structp png_ptr, png_uint_32 skip) argument
503 png_ptr->skip_length = skip;
873 if (png_ptr->pass == 2) /* skip top 4 generated rows */
914 if (png_ptr->pass == 4) /* skip top two generated rows */
952 if (png_ptr->pass == 6) /* skip top generated row */
1419 lang++; /* skip comp_type, always zero */
1423 lang_key++; /* skip NUL separator */
1460 png_uint_32 skip=0; local
1489 skip = length - (png_uint_32)65535L;
1518 skip
[all...]
H A Dpngrutil.c96 /* Optionally skip data and then check the CRC. Depending on whether we
101 png_crc_finish(png_structp png_ptr, png_uint_32 skip) argument
106 for (i = (png_size_t)skip; i > istop; i -= istop)
987 png_uint_32 skip = 0; local
1016 skip = length - (png_uint_32)65535L;
1025 if (png_crc_finish(png_ptr, skip))
1104 png_uint_32 skip = 0; local
1122 skip = length - (png_uint_32)65535L;
1131 if (png_crc_finish(png_ptr, skip))
1733 ep = buffer + 1; /* skip uni
1860 png_uint_32 skip = 0; local
2144 png_uint_32 skip = 0; local
[all...]
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/wine/
H A Dtest.h130 #define skip skip_(__FILE__, __LINE__) macro
/vbox/src/VBox/Additions/x11/x11include/libdrm-2.4.13/
H A Dsavage_drm.h186 unsigned short skip; /* vertex format (skip flags) */ member in struct:drm_savage_cmd_header::__anon3666
193 unsigned short skip; member in struct:drm_savage_cmd_header::__anon3667
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/wine/
H A Dtest.h128 #define skip skip_(__FILE__, __LINE__) macro
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/antlr/
H A Dfset2.c2054 void MR_backTraceDumpItem(FILE *f,int skip,Node *n) argument
2056 void MR_backTraceDumpItem(f,skip,n)
2058 int skip;
2069 itemCount++; if (skip) goto EXIT;
2078 itemCount++; if (skip) goto EXIT;
2092 itemCount++; if (skip) goto EXIT;
2100 itemCount++; if (skip) goto EXIT;
2104 itemCount++; if (skip) goto EXIT;
2109 itemCount++; if (skip) goto EXIT;
2117 itemCount++; if (skip) got
[all...]
/vbox/src/VBox/Main/src-client/
H A DVideoRec.cpp159 * @param aPixels how many pixels to skip
161 void skip(unsigned aPixels) function in class:ColorConvBGRA32Iter
212 * @param aPixels how many pixels to skip
214 void skip(unsigned aPixels) function in class:ColorConvBGR24Iter
267 * @param aPixels how many pixels to skip
269 void skip(unsigned aPixels) function in class:ColorConvBGR565Iter
300 iter2.skip(aWidth);
346 iter1.skip(aWidth);
347 iter2.skip(aWidth);
/vbox/src/VBox/Main/src-server/
H A DNATNetworkImpl.cpp862 bool skip = false; local
869 skip = true;
875 if (skip)
894 if (!skip)
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/misc/
H A Dprnetdb.c229 return; /* skip if not AF_INET or AF_INET6 */
357 return; /* skip if not AF_INET or AF_INET6 */
467 PRIntn skip = align - ((ptrdiff_t)buf & (align - 1)); local
468 if (buflen < skip) {
471 buf += skip;
472 buflen -= skip;

Completed in 2830 milliseconds

12