Home
last modified time | relevance | path

Searched refs:start (Results 1 – 25 of 655) sorted by relevance

12345678910>>...27

/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/dlg/
Drelabel.c62 int relabel(nfa_node* start,int level) in relabel() argument
64 int relabel(start,level) in relabel()
66 nfa_node *start;
71 partition(start,level);
72 label_with_classes(start);
82 void partition(nfa_node* start,int level) in partition() argument
84 void partition(start,level) in partition()
85 nfa_node *start; /* beginning of nfa graph */ in partition()
112 intersect_nfa_labels(start,&current_class);
140 void intersect_nfa_labels(nfa_node* start,set* maximal_class) in intersect_nfa_labels() argument
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dsliceobject.c61 PySlice_New(PyObject *start, PyObject *stop, PyObject *step) in PySlice_New() argument
70 if (start == NULL) start = Py_None; in PySlice_New()
71 Py_INCREF(start); in PySlice_New()
76 obj->start = start; in PySlice_New()
85 PyObject *start, *end, *slice; in _PySlice_FromIndices() local
86 start = PyInt_FromSsize_t(istart); in _PySlice_FromIndices()
87 if (!start) in _PySlice_FromIndices()
91 Py_DECREF(start); in _PySlice_FromIndices()
95 slice = PySlice_New(start, end, NULL); in _PySlice_FromIndices()
96 Py_DECREF(start); in _PySlice_FromIndices()
[all …]
Drangeobject.c7 long start; member
50 return r->start; in get_stop_for_range()
57 last = (long)(r->start + (unsigned long)(r->len - 1) * r->step); in get_stop_for_range()
100 obj->start = ilow; in range_new()
124 return PyInt_FromLong((long)(r->start + (unsigned long)i * r->step)); in range_item()
138 if (r->start == 0 && r->step == 1) in range_repr()
144 r->start, in range_repr()
149 r->start, in range_repr()
160 r->start, in range_reduce()
232 long start; member
[all …]
Dbytearrayobject.c438 Py_ssize_t start, stop, step, slicelength, cur, i; in bytearray_subscript() local
441 &start, &stop, &step, &slicelength) < 0) { in bytearray_subscript()
448 return PyByteArray_FromStringAndSize(self->ob_bytes + start, in bytearray_subscript()
459 for (cur = start, i = 0; i < slicelength; in bytearray_subscript()
590 Py_ssize_t start, stop, step, slicelen, needed; in bytearray_ass_subscript() local
609 start = i; in bytearray_ass_subscript()
625 &start, &stop, &step, &slicelen) < 0) { in bytearray_ass_subscript()
660 if ((step < 0 && start < stop) || in bytearray_ass_subscript()
661 (step > 0 && start > stop)) in bytearray_ass_subscript()
662 stop = start; in bytearray_ass_subscript()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dsliceobject.c61 PySlice_New(PyObject *start, PyObject *stop, PyObject *step) in PySlice_New() argument
70 if (start == NULL) start = Py_None; in PySlice_New()
71 Py_INCREF(start); in PySlice_New()
76 obj->start = start; in PySlice_New()
85 PyObject *start, *end, *slice; in _PySlice_FromIndices() local
86 start = PyInt_FromSsize_t(istart); in _PySlice_FromIndices()
87 if (!start) in _PySlice_FromIndices()
91 Py_DECREF(start); in _PySlice_FromIndices()
95 slice = PySlice_New(start, end, NULL); in _PySlice_FromIndices()
96 Py_DECREF(start); in _PySlice_FromIndices()
[all …]
Drangeobject.c7 long start; member
76 obj->start = ilow; in range_new()
99 return PyInt_FromLong((long)(r->start + (unsigned long)i * r->step)); in range_item()
113 if (r->start == 0 && r->step == 1) in range_repr()
115 r->start + r->len * r->step); in range_repr()
119 r->start, in range_repr()
120 r->start + r->len * r->step); in range_repr()
124 r->start, in range_repr()
125 r->start + r->len * r->step, in range_repr()
135 r->start, in range_reduce()
[all …]
Dbytearrayobject.c438 Py_ssize_t start, stop, step, slicelength, cur, i; in bytearray_subscript() local
441 &start, &stop, &step, &slicelength) < 0) { in bytearray_subscript()
448 return PyByteArray_FromStringAndSize(self->ob_bytes + start, in bytearray_subscript()
459 for (cur = start, i = 0; i < slicelength; in bytearray_subscript()
590 Py_ssize_t start, stop, step, slicelen, needed; in bytearray_ass_subscript() local
609 start = i; in bytearray_ass_subscript()
625 &start, &stop, &step, &slicelen) < 0) { in bytearray_ass_subscript()
654 if ((step < 0 && start < stop) || in bytearray_ass_subscript()
655 (step > 0 && start > stop)) in bytearray_ass_subscript()
656 stop = start; in bytearray_ass_subscript()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/stringlib/
Dfind.h51 #define ADJUST_INDICES(start, end, len) \ argument
59 if (start < 0) { \
60 start += len; \
61 if (start < 0) \
62 start = 0; \
68 Py_ssize_t start, Py_ssize_t end) in stringlib_find_slice() argument
70 ADJUST_INDICES(start, end, str_len); in stringlib_find_slice()
71 return stringlib_find(str + start, end - start, sub, sub_len, start); in stringlib_find_slice()
77 Py_ssize_t start, Py_ssize_t end) in stringlib_rfind_slice() argument
79 ADJUST_INDICES(start, end, str_len); in stringlib_rfind_slice()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/stringlib/
Dfind.h51 #define ADJUST_INDICES(start, end, len) \ argument
59 if (start < 0) { \
60 start += len; \
61 if (start < 0) \
62 start = 0; \
68 Py_ssize_t start, Py_ssize_t end) in stringlib_find_slice() argument
70 ADJUST_INDICES(start, end, str_len); in stringlib_find_slice()
71 return stringlib_find(str + start, end - start, sub, sub_len, start); in stringlib_find_slice()
77 Py_ssize_t start, Py_ssize_t end) in stringlib_rfind_slice() argument
79 ADJUST_INDICES(start, end, str_len); in stringlib_rfind_slice()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
DUserString.py39 def __getslice__(self, start, end): argument
40 start = max(start, 0); end = max(end, 0)
41 return self.__class__(self.data[start:end])
65 def count(self, sub, start=0, end=sys.maxint): argument
66 return self.data.count(sub, start, end)
83 def endswith(self, suffix, start=0, end=sys.maxint): argument
84 return self.data.endswith(suffix, start, end)
87 def find(self, sub, start=0, end=sys.maxint): argument
88 return self.data.find(sub, start, end)
89 def index(self, sub, start=0, end=sys.maxint): argument
[all …]
Dmultifile.py50 self.start = self.fp.tell()
56 return self.fp.tell() - self.start
71 self.fp.seek(pos + self.start)
130 self.start = self.fp.tell()
138 self.posstack.append(self.start)
139 self.start = self.fp.tell()
147 abslastpos = self.lastpos + self.start
151 self.start = self.posstack.pop()
153 self.lastpos = abslastpos - self.start
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_xrange.py13 def pyrange(start, stop, step): argument
14 if (start - stop) // step < 0:
17 stop += (start - stop) % step
18 while start != stop:
19 yield start
20 start += step
22 def pyrange_reversed(start, stop, step): argument
23 stop += (start - stop) % step
24 return pyrange(stop - step, start - step, -step)
113 test_ranges = [(start, end, step)
[all …]
Dtime_hashlib.py16 start = time.time()
21 print ('%2.2f' % (end-start)), "seconds", iterations, "x", len(longStr), "bytes", name
24 start = time.time()
29 print ('%2.2f' % (end-start)), "seconds", '[20000 creations]'
32 start = time.time()
37 print ('%2.2f' % (end-start)), "seconds", '[20000 "" digests]'
/device/google/contexthub/firmware/lib/libc/
Dcrt.c24 callVect *start = (callVect *)from_addr; in callVectors() local
27 const int32_t count = step > 0 ? end - start : start - end; in callVectors()
30 if (&start[step * count] != end) in callVectors()
33 for (; start != end; start += step) { in callVectors()
34 callVect vec = *start; in callVectors()
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
DBufFileInput.cpp38 start( 0 ), in BufFileInput()
53 int c = buf[start]; in nextChar()
57 start++; start %= size; in nextChar()
68 buf[start] = EOF; in nextChar()
85 buf[ (start+len) % size ] = c; in lookahead()
94 if( s[i] != buf[ (start+i) % size ] ) return 0; in lookahead()
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
DBufFileInput.cpp38 start( 0 ), in BufFileInput()
53 int c = buf[start]; in nextChar()
57 start++; start %= size; in nextChar()
68 buf[start] = EOF; in nextChar()
85 buf[ (start+len) % size ] = c; in lookahead()
94 if( s[i] != buf[ (start+i) % size ] ) return 0; in lookahead()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Parser/
Dparsetok.c22 PyParser_ParseString(const char *s, grammar *g, int start, perrdetail *err_ret) in PyParser_ParseString() argument
24 return PyParser_ParseStringFlagsFilename(s, NULL, g, start, err_ret, 0); in PyParser_ParseString()
28 PyParser_ParseStringFlags(const char *s, grammar *g, int start, in PyParser_ParseStringFlags() argument
32 g, start, err_ret, flags); in PyParser_ParseStringFlags()
37 grammar *g, int start, in PyParser_ParseStringFlagsFilename() argument
41 return PyParser_ParseStringFlagsFilenameEx(s, filename, g, start, in PyParser_ParseStringFlagsFilename()
47 grammar *g, int start, in PyParser_ParseStringFlagsFilenameEx() argument
54 if ((tok = PyTokenizer_FromString(s, start == file_input)) == NULL) { in PyParser_ParseStringFlagsFilenameEx()
66 return parsetok(tok, g, start, err_ret, flags); in PyParser_ParseStringFlagsFilenameEx()
72 PyParser_ParseFile(FILE *fp, const char *filename, grammar *g, int start, in PyParser_ParseFile() argument
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
Dparsetok.c31 PyParser_ParseString(const char *s, grammar *g, int start, perrdetail *err_ret) in PyParser_ParseString() argument
33 return PyParser_ParseStringFlagsFilename(s, NULL, g, start, err_ret, 0); in PyParser_ParseString()
37 PyParser_ParseStringFlags(const char *s, grammar *g, int start, in PyParser_ParseStringFlags() argument
41 g, start, err_ret, flags); in PyParser_ParseStringFlags()
46 grammar *g, int start, in PyParser_ParseStringFlagsFilename() argument
50 return PyParser_ParseStringFlagsFilenameEx(s, filename, g, start, in PyParser_ParseStringFlagsFilename()
56 grammar *g, int start, in PyParser_ParseStringFlagsFilenameEx() argument
63 if ((tok = PyTokenizer_FromString(s, start == file_input)) == NULL) { in PyParser_ParseStringFlagsFilenameEx()
75 return parsetok(tok, g, start, err_ret, flags); in PyParser_ParseStringFlagsFilenameEx()
81 PyParser_ParseFile(FILE *fp, const char *filename, grammar *g, int start, in PyParser_ParseFile() argument
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dsliceobject.h24 PyObject *start, *stop, *step; /* not NULL */ member
32 PyAPI_FUNC(PyObject *) PySlice_New(PyObject* start, PyObject* stop,
34 PyAPI_FUNC(PyObject *) _PySlice_FromIndices(Py_ssize_t start, Py_ssize_t stop);
36 Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step);
38 Py_ssize_t *start, Py_ssize_t *stop,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dsliceobject.h24 PyObject *start, *stop, *step; /* not NULL */ member
32 PyAPI_FUNC(PyObject *) PySlice_New(PyObject* start, PyObject* stop,
34 PyAPI_FUNC(PyObject *) _PySlice_FromIndices(Py_ssize_t start, Py_ssize_t stop);
36 Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step);
38 Py_ssize_t *start, Py_ssize_t *stop,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/
Dbtm_matcher.py45 match_nodes = self.add(linear, start=self.root)
49 def add(self, pattern, start): argument
54 return [start]
62 end_nodes = self.add(alternative, start=start)
69 if pattern[0] not in start.transition_table:
72 start.transition_table[pattern[0]] = next_node
75 next_node = start.transition_table[pattern[0]]
78 end_nodes = self.add(pattern[1:], start=next_node)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/classes/
DRange.py28 start, stop, step = handleargs(a)
29 value = start
47 self.start, self.stop, self.step = handleargs(a)
48 self.len = max(0, (self.stop - self.start) // self.step)
52 return 'range(%r, %r, %r)' % (self.start, self.stop, self.step)
61 return self.start + self.step * i
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/
DC.g144 …self.StoreFunctionDefinition($function_definition.start.line, $function_definition.start.charPosit…
155 $function_definition::DeclLine = $declarator.start.line
156 $function_definition::DeclOffset = $declarator.start.charPositionInLine
158 $function_definition::LBLine = $a.start.line
159 $function_definition::LBOffset = $a.start.charPositionInLine
161 $function_definition::LBLine = $b.start.line
162 $function_definition::LBOffset = $b.start.charPositionInLine
178 …self.StoreVariableDeclaration($s.start.line, $s.start.charPositionInLine, $t.start.line, $t.start.…
218 …self.StoreStructUnionDefinition($s.start.line, $s.start.charPositionInLine, $s.stop.line, $s.stop.…
223 …self.StoreEnumerationDefinition($e.start.line, $e.start.charPositionInLine, $e.stop.line, $e.stop.…
[all …]
/device/generic/trusty/
Dinit.qemu_trusty.rc45 # start essential services
47 start goldfish-logcat
48 # start goldfish-setup
56 #start it later
59 start adbd
60 start goldfish-logcat
61 start qemu_trusty-net
63 on property:qemu.adbd=start
65 start adbd
66 start goldfish-logcat
[all …]
/device/generic/qemu/
Dinit.ranchu.rc48 # start essential services
50 start goldfish-logcat
51 # start goldfish-setup
59 #start it later
62 start adbd
63 start goldfish-logcat
65 on property:qemu.adbd=start
67 start adbd
68 start goldfish-logcat
94 on property:qemu.logcat=start
[all …]

12345678910>>...27