/third_party/python/Objects/ |
H A D | sliceobject.c | 109 /* start, stop, and step are python objects with None indicating no 114 PySlice_New(PyObject *start, PyObject *stop, PyObject *step) in PySlice_New() argument 122 if (stop == NULL) { in PySlice_New() 123 stop = Py_None; in PySlice_New() 144 Py_INCREF(stop); in PySlice_New() 145 obj->stop = stop; in PySlice_New() 172 Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step) in PySlice_GetIndices() 189 if (r->stop == Py_None) { in PySlice_GetIndices() 190 *stop in PySlice_GetIndices() 171 PySlice_GetIndices(PyObject *_r, Py_ssize_t length, Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step) PySlice_GetIndices() argument 203 PySlice_Unpack(PyObject *_r, Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step) PySlice_Unpack() argument 249 PySlice_AdjustIndices(Py_ssize_t length, Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t step) PySlice_AdjustIndices() argument 293 PySlice_GetIndicesEx(PyObject *_r, Py_ssize_t length, Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step, Py_ssize_t *slicelength) PySlice_GetIndicesEx() argument 306 PyObject *start, *stop, *step; slice_new() local 386 PyObject *start=NULL, *stop=NULL, *step=NULL; _PySlice_GetLongIndices() local 527 PyObject *start, *stop, *step; slice_indices() local [all...] |
H A D | rangeobject.c | 19 PyObject *stop; member 45 compute_range_length(PyObject *start, PyObject *stop, PyObject *step); 49 PyObject *stop, PyObject *step) in make_range_object() 53 length = compute_range_length(start, stop, step); in make_range_object() 63 obj->stop = stop; in make_range_object() 78 PyObject *start = NULL, *stop = NULL, *step = NULL; in range_from_array() local 90 stop = PyNumber_Index(args[1]); in range_from_array() 91 if (!stop) { in range_from_array() 98 Py_DECREF(stop); in range_from_array() 48 make_range_object(PyTypeObject *type, PyObject *start, PyObject *stop, PyObject *step) make_range_object() argument 180 compute_range_length(PyObject *start, PyObject *stop, PyObject *step) compute_range_length() argument 345 PyObject *start = NULL, *stop = NULL, *step = NULL; compute_slice() local 796 PyObject *start=NULL, *stop=NULL, *step=NULL; rangeiter_reduce() local 916 fast_range_iter(long start, long stop, long step, long len) fast_range_iter() argument 945 PyObject *product, *stop=NULL; longrangeiter_reduce() local [all...] |
/kernel/linux/linux-5.10/include/trace/events/ |
H A D | mmc.h | 52 __entry->stop_opcode = mrq->stop ? mrq->stop->opcode : 0; 53 __entry->stop_arg = mrq->stop ? mrq->stop->arg : 0; 54 __entry->stop_flags = mrq->stop ? mrq->stop->flags : 0; 55 __entry->stop_retries = mrq->stop ? mrq->stop->retries : 0; 136 __entry->stop_opcode = mrq->stop ? mrq->stop [all...] |
/kernel/linux/linux-6.6/include/trace/events/ |
H A D | mmc.h | 52 __entry->stop_opcode = mrq->stop ? mrq->stop->opcode : 0; 53 __entry->stop_arg = mrq->stop ? mrq->stop->arg : 0; 54 __entry->stop_flags = mrq->stop ? mrq->stop->flags : 0; 55 __entry->stop_retries = mrq->stop ? mrq->stop->retries : 0; 136 __entry->stop_opcode = mrq->stop ? mrq->stop [all...] |
/kernel/linux/linux-5.10/drivers/scsi/aic7xxx/aicasm/ |
H A D | aicasm_gram.y | 281 stop("Prefix multiply defined", 285 stop("Unable to record prefix", EX_SOFTWARE); 293 stop("Patch argument list multiply defined", 297 stop("Unable to record patch arg list", EX_SOFTWARE); 314 stop("Register multiply defined", EX_DATAERR); 393 stop("SCB or SRAM space exhausted", EX_DATAERR); 441 stop("Valid register modes range between 0 and 4.", 454 stop("Only \"const\" symbols allowed in " 459 stop("Valid register modes range between 0 and 4.", 536 stop("R [all...] |
H A D | aicasm_macro_gram.y | 92 stop("Too few arguments for macro invocation", 114 stop("Comma without preceding argument in arg list", 132 stop("Invalid current symbol for adding macro arg", 147 stop("Too many arguments for macro invocation", EX_DATAERR); 152 stop("Unable to replicate replacement text", EX_SOFTWARE); 160 stop(string, EX_DATAERR);
|
/kernel/linux/linux-6.6/drivers/scsi/aic7xxx/aicasm/ |
H A D | aicasm_gram.y | 280 stop("Prefix multiply defined", 284 stop("Unable to record prefix", EX_SOFTWARE); 292 stop("Patch argument list multiply defined", 296 stop("Unable to record patch arg list", EX_SOFTWARE); 313 stop("Register multiply defined", EX_DATAERR); 392 stop("SCB or SRAM space exhausted", EX_DATAERR); 440 stop("Valid register modes range between 0 and 4.", 453 stop("Only \"const\" symbols allowed in " 458 stop("Valid register modes range between 0 and 4.", 535 stop("R [all...] |
H A D | aicasm_macro_gram.y | 92 stop("Too few arguments for macro invocation", 114 stop("Comma without preceding argument in arg list", 132 stop("Invalid current symbol for adding macro arg", 147 stop("Too many arguments for macro invocation", EX_DATAERR); 152 stop("Unable to replicate replacement text", EX_SOFTWARE); 160 stop(string, EX_DATAERR);
|
/third_party/python/Include/ |
H A D | sliceobject.h | 17 A slice object containing start, stop, and step data members (the 24 PyObject *start, *stop, *step; /* not NULL */ member 33 PyAPI_FUNC(PyObject *) PySlice_New(PyObject* start, PyObject* stop, 36 PyAPI_FUNC(PyObject *) _PySlice_FromIndices(Py_ssize_t start, Py_ssize_t stop); 42 Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step); 45 Py_ssize_t *start, Py_ssize_t *stop, 50 #define PySlice_GetIndicesEx(slice, length, start, stop, step, slicelen) ( \ 51 PySlice_Unpack((slice), (start), (stop), (step)) < 0 ? \ 53 ((*(slicelen) = PySlice_AdjustIndices((length), (start), (stop), *(step))), \ 56 Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_ [all...] |
/third_party/jerryscript/jerry-debugger/ |
H A D | jerry_client.py | 39 self.stop = False 43 self.stop = False 48 def postcmd(self, stop, line): 49 return self.stop 55 self.stop = True 85 self.stop = True 120 self.stop = True 126 self.stop = True 128 print("Press enter to stop JavaScript execution.") 134 self.stop [all...] |
/third_party/python/Lib/multiprocessing/ |
H A D | heap.py | 132 # - map each block size to a list of `(Arena, start, stop)` blocks 134 # - map `(Arena, start)` tuple to the `(Arena, start, stop)` block 137 # - map `(Arena, stop)` tuple to the `(Arena, start, stop)` block 141 # Map arenas to their `(Arena, start, stop)` blocks in use 200 (arena, start, stop) = block 202 del self._stop_to_block[(arena, stop)] 207 (arena, start, stop) = block 217 next_block = self._start_to_block[(arena, stop)] 221 _, stop [all...] |
/third_party/python/Lib/test/ |
H A D | test_slice.py | 42 # Find lower and upper bounds for start and stop. 53 # Compute stop. 54 if slice.stop is None: 55 stop = lower if step < 0 else upper 57 stop = evaluate_slice_index(slice.stop) 58 stop = max(stop + length, lower) if stop < 0 else min(stop, uppe [all...] |
/kernel/linux/linux-5.10/arch/powerpc/lib/ |
H A D | pmem.c | 12 static inline void __clean_pmem_range(unsigned long start, unsigned long stop) in __clean_pmem_range() argument 17 unsigned long size = stop - (unsigned long)addr + (bytes - 1); in __clean_pmem_range() 24 static inline void __flush_pmem_range(unsigned long start, unsigned long stop) in __flush_pmem_range() argument 29 unsigned long size = stop - (unsigned long)addr + (bytes - 1); in __flush_pmem_range() 36 static inline void clean_pmem_range(unsigned long start, unsigned long stop) in clean_pmem_range() argument 39 return __clean_pmem_range(start, stop); in clean_pmem_range() 42 static inline void flush_pmem_range(unsigned long start, unsigned long stop) in flush_pmem_range() argument 45 return __flush_pmem_range(start, stop); in flush_pmem_range()
|
/kernel/linux/linux-6.6/arch/powerpc/lib/ |
H A D | pmem.c | 13 static inline void __clean_pmem_range(unsigned long start, unsigned long stop) in __clean_pmem_range() argument 18 unsigned long size = stop - (unsigned long)addr + (bytes - 1); in __clean_pmem_range() 25 static inline void __flush_pmem_range(unsigned long start, unsigned long stop) in __flush_pmem_range() argument 30 unsigned long size = stop - (unsigned long)addr + (bytes - 1); in __flush_pmem_range() 37 static inline void clean_pmem_range(unsigned long start, unsigned long stop) in clean_pmem_range() argument 40 return __clean_pmem_range(start, stop); in clean_pmem_range() 43 static inline void flush_pmem_range(unsigned long start, unsigned long stop) in flush_pmem_range() argument 46 return __flush_pmem_range(start, stop); in flush_pmem_range()
|
/third_party/lame/misc/ |
H A D | abx.c | 28 * cross fade at start/stop 554 void Message ( const char* s, size_t index, long freq, size_t start, size_t stop ) in Message() 558 unsigned long norm_stop = 100lu * stop / freq; in Message() 572 size_t calc_true_index ( size_t index, size_t start, size_t stop ) in calc_true_index() 574 if ( start >= stop ) in calc_true_index() 577 index += stop - start; in calc_true_index() 591 size_t stop = len; in testing() local 640 stop = len; in testing() 644 start = calc_true_index ( index, start, stop); in testing() 647 stop in testing() [all...] |
/third_party/libunwind/libunwind/tests/ |
H A D | Gperf-simple.c | 60 double stop, start; in measure_unwind() local 80 stop = gettime (); in measure_unwind() 86 *step = (stop - start) / (double) level; in measure_unwind() 153 double stop, start, get_cold, get_warm, init_cold, init_warm, delta; in measure_init() local 181 stop = gettime (); in measure_init() 182 delta = (stop - start) / N; in measure_init() 196 stop = gettime (); in measure_init() 197 delta = (stop - start) / N; in measure_init() 208 stop = gettime (); in measure_init() 209 delta = (stop in measure_init() [all...] |
H A D | Gperf-trace.c | 60 double stop, start; in measure_unwind() local 66 stop = gettime (); in measure_unwind() 72 *step = (stop - start) / (double) level; in measure_unwind() 139 double stop, start, get_cold, get_warm, init_cold, init_warm, delta; in measure_init() local 167 stop = gettime (); in measure_init() 168 delta = (stop - start) / N; in measure_init() 182 stop = gettime (); in measure_init() 183 delta = (stop - start) / N; in measure_init() 194 stop = gettime (); in measure_init() 195 delta = (stop in measure_init() [all...] |
/kernel/linux/linux-5.10/arch/powerpc/include/asm/ |
H A D | cacheflush.h | 29 void flush_icache_range(unsigned long start, unsigned long stop); 45 * @stop: the stop address (exclusive) 47 static inline void flush_dcache_range(unsigned long start, unsigned long stop) in flush_dcache_range() argument 52 unsigned long size = stop - (unsigned long)addr + (bytes - 1); in flush_dcache_range() 69 static inline void clean_dcache_range(unsigned long start, unsigned long stop) in clean_dcache_range() argument 74 unsigned long size = stop - (unsigned long)addr + (bytes - 1); in clean_dcache_range() 88 unsigned long stop) in invalidate_dcache_range() 93 unsigned long size = stop - (unsigned long)addr + (bytes - 1); in invalidate_dcache_range() 87 invalidate_dcache_range(unsigned long start, unsigned long stop) invalidate_dcache_range() argument
|
/kernel/linux/linux-6.6/arch/powerpc/include/asm/ |
H A D | cacheflush.h | 53 void flush_icache_range(unsigned long start, unsigned long stop); 68 * @stop: the stop address (exclusive) 70 static inline void flush_dcache_range(unsigned long start, unsigned long stop) in flush_dcache_range() argument 75 unsigned long size = stop - (unsigned long)addr + (bytes - 1); in flush_dcache_range() 92 static inline void clean_dcache_range(unsigned long start, unsigned long stop) in clean_dcache_range() argument 97 unsigned long size = stop - (unsigned long)addr + (bytes - 1); in clean_dcache_range() 111 unsigned long stop) in invalidate_dcache_range() 116 unsigned long size = stop - (unsigned long)addr + (bytes - 1); in invalidate_dcache_range() 110 invalidate_dcache_range(unsigned long start, unsigned long stop) invalidate_dcache_range() argument
|
/third_party/ltp/testcases/kernel/syscalls/preadv2/ |
H A D | preadv203.c | 57 static volatile int stop; variable 110 while (!stop) { in nowait_reader() 112 stop = 1; in nowait_reader() 159 while (!stop) { in writer_thread() 162 for (j = 0; j < CHUNKS && !stop; j++) { in writer_thread() 189 while (!stop) { in cache_dropper() 204 stop = 0; in verify_preadv2() 212 while (!stop && tst_remaining_runtime()) in verify_preadv2() 215 stop = 1; in verify_preadv2()
|
/third_party/python/Lib/email/ |
H A D | quoprimime.py | 192 stop = start + maxlinelen1 194 if line[stop - 2] == '=': 195 append(line[start:stop - 1]) 196 start = stop - 2 197 elif line[stop - 1] == '=': 198 append(line[start:stop]) 199 start = stop - 1 201 append(line[start:stop] + '=') 202 start = stop
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
H A D | IntervalMap.h | 27 // value. The interval bounds are accessible through the start() and stop() 51 // KeyT stop() const; 74 // const KeyT &stop() const; 553 // - Traits::stopLess(start(i), stop(i)) - Non-empty, sane intervals. 555 // - Traits::stopLess(stop(i), start(i + 1) - Sorted. 557 // - value(i) != value(i + 1) || !Traits::adjacent(stop(i), start(i + 1)) 566 const KeyT &stop(unsigned i) const { return this->first[i].second; } in stop() function in llvm::IntervalMapImpl::LeafNode 570 KeyT &stop(unsigned i) { return this->first[i].second; } in stop() function in llvm::IntervalMapImpl::LeafNode 577 /// @return First index with !stopLess(key[i].stop, x), or size. 581 assert((i == 0 || Traits::stopLess(stop( in findFrom() [all...] |
/third_party/protobuf/objectivec/ |
H A D | GPBArray.h | 136 * **stop**: A pointer to a boolean that when set stops the enumeration. 138 - (void)enumerateValuesWithBlock:(void (NS_NOESCAPE ^)(int32_t value, NSUInteger idx, BOOL *stop))block; 147 * **stop**: A pointer to a boolean that when set stops the enumeration. 150 usingBlock:(void (NS_NOESCAPE ^)(int32_t value, NSUInteger idx, BOOL *stop))block; 308 * **stop**: A pointer to a boolean that when set stops the enumeration. 310 - (void)enumerateValuesWithBlock:(void (NS_NOESCAPE ^)(uint32_t value, NSUInteger idx, BOOL *stop))block; 319 * **stop**: A pointer to a boolean that when set stops the enumeration. 322 usingBlock:(void (NS_NOESCAPE ^)(uint32_t value, NSUInteger idx, BOOL *stop))block; 480 * **stop**: A pointer to a boolean that when set stops the enumeration. 482 - (void)enumerateValuesWithBlock:(void (NS_NOESCAPE ^)(int64_t value, NSUInteger idx, BOOL *stop))bloc [all...] |
H A D | GPBDictionary.h | 110 * **stop**: A pointer to a boolean that when set stops the enumeration. 113 (void (NS_NOESCAPE ^)(uint32_t key, uint32_t value, BOOL *stop))block; 205 * **stop**: A pointer to a boolean that when set stops the enumeration. 208 (void (NS_NOESCAPE ^)(uint32_t key, int32_t value, BOOL *stop))block; 300 * **stop**: A pointer to a boolean that when set stops the enumeration. 303 (void (NS_NOESCAPE ^)(uint32_t key, uint64_t value, BOOL *stop))block; 395 * **stop**: A pointer to a boolean that when set stops the enumeration. 398 (void (NS_NOESCAPE ^)(uint32_t key, int64_t value, BOOL *stop))block; 490 * **stop**: A pointer to a boolean that when set stops the enumeration. 493 (void (NS_NOESCAPE ^)(uint32_t key, BOOL value, BOOL *stop))bloc [all...] |
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/prog_tests/ |
H A D | htab_reuse.c | 12 bool stop; member 25 while (i++ < ctx->loop && !ctx->stop) { in htab_lookup_fn() 42 while (i++ < ctx->loop && !ctx->stop) { in htab_update_fn() 76 ctx.stop = false; in test_htab_reuse() 82 ctx.stop = true; in test_htab_reuse() 89 ctx.stop = true; in test_htab_reuse()
|