Searched defs:skip (Results 1 - 24 of 24) sorted by last modified time

/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
H A DDLexerBase.cpp156 skip() function in class:DLGLexerBase
228 skip();
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
H A Dregcomp.c3921 /* set skip map for Boyer-Moor search */
3924 UChar skip[], int** int_skip)
3930 for (i = 0; i < ONIG_CHAR_TABLE_SIZE; i++) skip[i] = (UChar)len;
3933 skip[s[i]] = (UChar)(len - 1 - i);
3923 set_bm_skip(UChar* s, UChar* end, OnigEncoding enc ARG_UNUSED, UChar skip[], int** int_skip) argument
H A Dregexec.c2349 fprintf(stderr, "NULL_CHECK_END: skip id:%d, s:%d\n",
2353 /* empty loop founded, skip next instruction */
2384 fprintf(stderr, "NULL_CHECK_END_MEMST: skip id:%d, s:%d\n",
2410 fprintf(stderr, "NULL_CHECK_END_MEMST_PUSH: skip id:%d, s:%d\n",
2894 int skip, tlen1; local
2917 skip = reg->map[*se];
2921 } while ((s - t) < skip && s < end);
2932 skip = reg->int_map[*se];
2936 } while ((s - t) < skip && s < end);
2983 int** skip)
2982 set_bm_backward_skip(UChar* s, UChar* end, OnigEncoding enc ARG_UNUSED, int** skip) argument
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Modules/
H A D_sre.c560 /* repeated dot wildcard. skip to the end of the target
622 returns the number of SRE_CODE objects to skip if successful, 0
635 /* <length> <skip> <prefix data> <overlap data> */
845 /* <INFO> <1=skip> <2=flags> <3=min> ... */
951 /* <IN> <skip> <set> */
1000 /* <BRANCH> <0=skip> code <JUMP> ... <NULL> */
1039 /* <REPEAT_ONE> <skip> <1=min> <2=max> item <SUCCESS> tail */
1072 /* tail starts with a literal. skip positions where
1122 /* <MIN_REPEAT_ONE> <skip> <1=min> <2=max> item <SUCCESS> tail */
1181 /* <REPEAT> <skip> <
2885 SRE_CODE skip; local
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
H A Dgzguts.h185 z_off64_t skip; /* amount to skip (already rewound if backwards) */ member in struct:__anon2839
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
H A Dfileobject.c258 /* skip trailing spaces */
2271 /* Used by file_iternext. The returned string will start with 'skip'
2277 readahead_get_line_skip(PyFileObject *f, Py_ssize_t skip, Py_ssize_t bufsize) argument
2291 PyString_FromStringAndSize(NULL, skip);
2297 PyString_FromStringAndSize(NULL, skip + len);
2300 memcpy(PyString_AS_STRING(s) + skip, f->f_bufptr, len);
2308 assert(len <= PY_SSIZE_T_MAX - skip);
2309 s = readahead_get_line_skip(f, skip + len, bufsize + (bufsize>>2));
2314 memcpy(PyString_AS_STRING(s) + skip, bufptr, len);
2720 ** is no readahead but in stead a flag is used to skip
[all...]
H A Dtypeobject.c1519 goto skip; /* continue outer loop */
1535 skip: ;
6496 int skip = su->obj_type == NULL; local
6498 if (!skip) {
6501 skip = (PyString_Check(name) &&
6506 if (!skip) {
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/stringlib/
H A Dfastsearch.h42 Py_ssize_t skip, count = 0; local
76 skip = mlast - 1;
87 skip = mlast - i - 1;
93 /* note: using mlast in the skip path slows things down on x86 */
113 i = i + skip;
115 /* skip: check if next character is part of pattern */
130 skip = i - 1;
146 i = i - skip;
148 /* skip: check if previous character is part of pattern */
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/
H A D_sre.c561 /* repeated dot wildcard. skip to the end of the target
624 returns the number of SRE_CODE objects to skip if successful, 0
637 /* <length> <skip> <prefix data> <overlap data> */
851 /* <INFO> <1=skip> <2=flags> <3=min> ... */
958 /* <IN> <skip> <set> */
1007 /* <BRANCH> <0=skip> code <JUMP> ... <NULL> */
1046 /* <REPEAT_ONE> <skip> <1=min> <2=max> item <SUCCESS> tail */
1079 /* tail starts with a literal. skip positions where
1129 /* <MIN_REPEAT_ONE> <skip> <1=min> <2=max> item <SUCCESS> tail */
1188 /* <REPEAT> <skip> <
2970 SRE_CODE skip; local
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/zlib/
H A Dgzguts.h191 z_off64_t skip; /* amount to skip (already rewound if backwards) */ member in struct:__anon2894
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
H A Dcompile.c1417 /* if there was a docstring, we need to skip the first statement */
2621 basicblock *start, *anchor, *skip, *if_cleanup; local
2625 skip = compiler_new_block(c);
2629 if (start == NULL || skip == NULL || if_cleanup == NULL ||
2659 compiler_use_next_block(c, skip);
2701 basicblock *start, *anchor, *skip, *if_cleanup; local
2705 skip = compiler_new_block(c);
2709 if (start == NULL || skip == NULL || if_cleanup == NULL ||
2769 compiler_use_next_block(c, skip);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A Dchunk.py42 Extra methods are: skip() (called by close, skips to the end of the chunk),
88 self.skip()
143 def skip(self): member in class:Chunk
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/
H A D__init__.py49 'defaultTestLoader', 'SkipTest', 'skip', 'skipIf', 'skipUnless',
59 from .case import (TestCase, FunctionTestCase, SkipTest, skip, skipIf, namespace
H A Dcase.py26 Raise this exception in a test to skip it.
28 Usually you can use TestResult.skip() or one of the skipping decorators
53 def skip(reason): function
55 Unconditionally skip a test.
74 return skip(reason)
82 return skip(reason)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A D_sre.c560 /* repeated dot wildcard. skip to the end of the target
622 returns the number of SRE_CODE objects to skip if successful, 0
635 /* <length> <skip> <prefix data> <overlap data> */
845 /* <INFO> <1=skip> <2=flags> <3=min> ... */
951 /* <IN> <skip> <set> */
1000 /* <BRANCH> <0=skip> code <JUMP> ... <NULL> */
1039 /* <REPEAT_ONE> <skip> <1=min> <2=max> item <SUCCESS> tail */
1072 /* tail starts with a literal. skip positions where
1122 /* <MIN_REPEAT_ONE> <skip> <1=min> <2=max> item <SUCCESS> tail */
1181 /* <REPEAT> <skip> <
2885 SRE_CODE skip; local
[all...]
H A Dbz2module.c376 /* Save as LF and set flag to skip next LF. */
464 Util_ReadAheadGetLineSkip(BZ2FileObject *f, int skip, int bufsize) argument
478 PyString_FromStringAndSize(NULL, skip);
484 PyString_FromStringAndSize(NULL, skip+len);
487 memcpy(PyString_AS_STRING(s)+skip, f->f_bufptr, len);
495 s = Util_ReadAheadGetLineSkip(f, skip+len,
501 memcpy(PyString_AS_STRING(s)+skip, bufptr, len);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
H A Dfileobject.c258 /* skip trailing spaces */
2203 /* Used by file_iternext. The returned string will start with 'skip'
2209 readahead_get_line_skip(PyFileObject *f, int skip, int bufsize) argument
2223 PyString_FromStringAndSize(NULL, skip);
2229 PyString_FromStringAndSize(NULL, skip+len);
2232 memcpy(PyString_AS_STRING(s)+skip, f->f_bufptr, len);
2240 assert(skip+len < INT_MAX);
2242 f, (int)(skip+len), bufsize + (bufsize>>2) );
2247 memcpy(PyString_AS_STRING(s)+skip, bufptr, len);
2653 ** is no readahead but in stead a flag is used to skip
[all...]
H A Dtypeobject.c1501 goto skip; /* continue outer loop */
1517 skip: ;
6460 int skip = su->obj_type == NULL; local
6462 if (!skip) {
6465 skip = (PyString_Check(name) &&
6470 if (!skip) {
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/stringlib/
H A Dfastsearch.h42 Py_ssize_t skip, count = 0; local
76 skip = mlast - 1;
87 skip = mlast - i - 1;
93 /* note: using mlast in the skip path slows things down on x86 */
113 i = i + skip;
115 /* skip: check if next character is part of pattern */
130 skip = i - 1;
146 i = i - skip;
148 /* skip: check if previous character is part of pattern */
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
H A Dspark.py344 def skip(self, (lhs, rhs), pos=0): member in class:GenericParser
362 kitems.append((rule, self.skip(rule, pos+1)))
400 ppos = self.skip(prule)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
H A Dcompile.c1394 /* if there was a docstring, we need to skip the first statement */
2601 basicblock *start, *anchor, *skip, *if_cleanup; local
2605 skip = compiler_new_block(c);
2609 if (start == NULL || skip == NULL || if_cleanup == NULL ||
2639 compiler_use_next_block(c, skip);
2681 basicblock *start, *anchor, *skip, *if_cleanup; local
2685 skip = compiler_new_block(c);
2689 if (start == NULL || skip == NULL || if_cleanup == NULL ||
2749 compiler_use_next_block(c, skip);
/device/linaro/bootloader/edk2/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...]
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
H A DDLexerBase.cpp157 skip() function in class:DLGLexerBase
241 skip();
/device/google/marlin/dataservices/datatop/src/
H A Ddatatop_interface.h70 .skip = 0
114 char skip; member in struct:dtop_data_point

Completed in 337 milliseconds