/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/ |
H A D | arc4.h | 19 void arc4_skip ( const void *key, size_t keylen, size_t skip,
|
/vbox/src/libs/zlib-1.2.6/contrib/puff/ |
H A D | pufftest.c | 14 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/i386/ |
H A D | in_cksum.c | 207 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 D | gzjoin.c | 155 /* 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 D | zran.c | 247 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 D | gzappend.c | 199 /* 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/Devices/EFI/Firmware/MdePkg/Library/BaseLib/Ia32/ |
H A D | LongJump.c | 39 pop eax ; skip return address
|
H A D | LongJump.S | 33 pop %eax # skip return address
|
H A D | LongJump.asm | 35 pop eax ; skip return address
|
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/libWine/ |
H A D | sortkey.c | 182 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/Network/slirp/bsd/amd64/ |
H A D | in_cksum.c | 199 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/amd64/include/ |
H A D | in_cksum.h | 81 u_short in_cksum_skip(struct mbuf *m, int len, int skip);
|
/vbox/src/VBox/Devices/PC/ipxe/src/crypto/ |
H A D | arc4.c | 109 * @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 D | bofm.c | 240 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/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/h/ |
H A D | DLexer.h | 71 skip: 172 /* MR1 */ (add_erase==1 ? "skip()" : 180 case 1: goto skip;
|
H A D | DLexerBase.cpp | 157 skip() function in class:DLGLexerBase 241 skip();
|
H A D | dlgauto.h | 355 skip: 459 case 1: goto skip;
|
/vbox/src/VBox/Additions/x11/x11include/libdrm-2.4.13/ |
H A D | savage_drm.h | 186 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/Devices/Network/slirp/bsd/i386/include/ |
H A D | in_cksum.h | 142 u_short in_cksum_skip(struct mbuf *m, int len, int skip);
|
/vbox/src/libs/zlib-1.2.6/ |
H A D | gzwrite.c | 203 if (gz_zero(state, state->skip) == -1) 264 if (gz_zero(state, state->skip) == -1) 327 if (gz_zero(state, state->skip) == -1) 406 if (gz_zero(state, state->skip) == -1) 474 if (gz_zero(state, state->skip) == -1) 509 if (gz_zero(state, state->skip) == -1) 544 if (gz_zero(state, state->skip) == -1)
|
H A D | gzguts.h | 172 z_off64_t skip; /* amount to skip (already rewound if backwards) */ member in struct:__anon17372
|
/vbox/src/VBox/Devices/EFI/Firmware/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/X64/ |
H A D | AsmFuncs.asm | 293 ;; skip restore of dr6. We cleared dr6 during the context save. 327 add rsp, 8 ; skip for Cr1 338 add rsp, 8 ; skip rbp 339 add rsp, 8 ; skip rsp 360 add rsp, 16 ; skip rcx and error code
|
/vbox/src/VBox/Main/src-client/ |
H A D | VideoRec.cpp | 159 * @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/Devices/EFI/Firmware/VBoxPkg/VBoxFsDxe/ |
H A D | fsw_iso9660.h | 179 fsw_u8 skip; member in struct:fsw_rock_ridge_susp_sp
|
/vbox/src/libs/xpcom18a4/xpcom/base/ |
H A D | nsStackFrameUnix.cpp | 106 int skip = 2; local 109 if (--skip <= 0) {
|