HomeSort by relevance Sort by last modified time
    Searched defs:start (Results 426 - 450 of 10073) sorted by null

<<11121314151617181920>>

  /external/llvm/utils/
bisect 10 parser.add_argument('--start', type=int, default=0)
16 start = args.start variable
20 print("Start: %d" % start)
24 while start != end and start != end-1:
25 count = start + (end - start)/2
26 print("Visiting Count: %d with (Start, End) = (%d,%d)" % (count, start, end)
32 start = count variable
    [all...]
  /external/ltp/lib/
get_path.c 56 const char *start = path; local
64 end = strchr(start, ':');
67 snprintf(buf, MIN(buf_len, (size_t) (end - start + 1)),
68 "%s", start);
70 snprintf(buf, buf_len, "%s", start);
98 start = end + 1;
  /external/ltp/testcases/kernel/controllers/cpuctl_fj/
cpuctl_fj_cpu-hog.c 36 volatile int start = 0; variable
41 start = !start;
64 while (start) {
  /external/ltp/testcases/kernel/controllers/freezer/
timed_forkbomb.c 31 struct timeval start, now; local
62 if (gettimeofday(&start, NULL))
80 } while ((now.tv_sec - start.tv_sec) <= duration);
  /external/ltp/testcases/kernel/syscalls/futex/
futex_wait_bitset.h 24 struct timespec start, to, end; local
32 clock_gettime(clk_id, &start);
33 to = tst_timespec_add_us(start, wait_us);
60 tst_timespec_diff_us(end, start), wait_us);
67 tst_timespec_diff_us(end, start), wait_us);
72 tst_timespec_diff_us(end, start), wait_us);
  /external/mesa3d/src/compiler/nir/
nir_worklist.h 54 unsigned start; member in struct:__anon29340
  /external/mesa3d/src/gallium/auxiliary/util/
u_range.h 42 unsigned start; /* inclusive */ member in struct:util_range
53 range->start = ~0;
59 util_range_add(struct util_range *range, unsigned start, unsigned end)
61 if (start < range->start || end > range->end) {
63 range->start = MIN2(start, range->start);
70 util_ranges_intersect(struct util_range *range, unsigned start, unsigned end)
72 return MAX2(start, range->start) < MIN2(end, range->end)
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_query.h 45 uint64_t start[LP_MAX_THREADS]; /* start count value for each thread */ member in struct:llvmpipe_query
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_heap.h 41 * The pattern to free the whole heap is to start with the first node and then
52 unsigned start; member in struct:nouveau_heap
59 nouveau_heap_init(struct nouveau_heap **heap, unsigned start,
  /external/mesa3d/src/mesa/drivers/dri/i965/
gen8_sol_state.c 70 uint32_t start = xfb_obj->Offset[i]; local
71 assert(start % 4 == 0);
72 uint32_t end = ALIGN(start + xfb_obj->Size[i], 4);
74 intel_bufferobj_buffer(brw, bufferobj, start, end - start);
83 OUT_RELOC64(bo, I915_GEM_DOMAIN_RENDER, I915_GEM_DOMAIN_RENDER, start);
  /external/mockito/src/test/java/org/concurrentmockito/
ThreadsShareAMockTest.java 35 listeners[i].start(); method
ThreadsShareGenerouslyStubbedMockTest.java 56 listeners[i].start(); method
  /external/owasp/sanitizer/src/main/org/owasp/html/
HtmlToken.java 35 final int start; field in class:HtmlToken
39 static HtmlToken instance(int start, int end, HtmlTokenType type) {
40 return new HtmlToken(start, end, type);
44 int n = end - start;
46 return context.regionMatches(start, match, 0, n);
49 private HtmlToken(int start, int end, HtmlTokenType type) {
50 this.start = start;
  /external/pdfium/third_party/libopenjpeg20/
bio.h 57 /** pointer to the start of the buffer */
58 OPJ_BYTE *start; member in struct:opj_bio
  /external/python/cpython2/Demo/turtle/
tdemo_planet_and_moon.py 33 def start(self): member in class:GravSys
107 gs.start()
  /external/python/cpython2/Lib/hotshot/
__init__.py 22 self.start = p.start
34 def start(self): member in class:Profile
35 """Start the profiler."""
36 self._prof.start()
  /external/python/cpython2/Modules/
symtablemodule.c 17 int start; local
23 start = Py_file_input;
25 start = Py_eval_input;
27 start = Py_single_input;
33 st = Py_SymtableString(str, filename, start);
  /external/python/cpython3/Include/
sliceobject.h 17 A slice object containing start, stop, and step data members (the
24 PyObject *start, *stop, *step; /* not NULL */ member in struct:__anon33190
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);
44 Py_ssize_t *start, Py_ssize_t *stop,
48 #define PySlice_GetIndicesEx(slice, length, start, stop, step, slicelen) ( \
49 PySlice_Unpack((slice), (start), (stop), (step)) < 0 ? \
51 ((*(slicelen) = PySlice_AdjustIndices((length), (start), (stop), *(step))), \
54 Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step)
    [all...]
  /external/python/cpython3/Lib/turtledemo/
forest.py 55 def start(t,x,y): function
67 start(pen, 20, -208)
73 start(pen, -135, -130)
79 start(pen, 190, -90)
planet_and_moon.py 32 def start(self): member in class:GravSys
106 gs.start()
  /external/selinux/libselinux/src/
selinux_check_securetty_context.c 12 char *start, *end = NULL; local
28 start = line;
29 while (*start && isspace(*start))
30 start++;
31 if (!(*start))
34 end = start;
39 if (!strcmp(type, start)) {
  /external/skia/src/core/
SkTaskGroup2D.cpp 10 void SkTaskGroup2D::start() { function in class:SkTaskGroup2D
  /external/skia/tests/
RecordPatternTest.cpp 109 int start, begin, end; local
111 start = record.count();
116 end = start;
118 REPORTER_ASSERT(r, begin == start);
121 start = record.count();
126 REPORTER_ASSERT(r, !pattern.match(&record, start));
127 end = start;
130 start = record.count();
135 REPORTER_ASSERT(r, pattern.match(&record, start) == record.count());
136 end = start;
    [all...]
  /external/skqp/src/core/
SkTaskGroup2D.cpp 10 void SkTaskGroup2D::start() { function in class:SkTaskGroup2D
  /external/skqp/tests/
RecordPatternTest.cpp 109 int start, begin, end; local
111 start = record.count();
116 end = start;
118 REPORTER_ASSERT(r, begin == start);
121 start = record.count();
126 REPORTER_ASSERT(r, !pattern.match(&record, start));
127 end = start;
130 start = record.count();
135 REPORTER_ASSERT(r, pattern.match(&record, start) == record.count());
136 end = start;
    [all...]

Completed in 904 milliseconds

<<11121314151617181920>>