HomeSort by relevance Sort by last modified time
    Searched refs:start (Results 76 - 100 of 18938) sorted by null

1 2 34 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/ppc/
e500mc64_nop.s 3 start: label
e5500_nop.s 3 start: label
e6500_nop.s 3 start: label
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/sh/sh64/
lineno.s 3 start: label
  /external/autotest/frontend/client/src/autotest/common/
UnmodifiableSublistView.java 8 protected int start, size; field in class:UnmodifiableSublistView
10 public UnmodifiableSublistView(List<T> list, int start, int size) {
11 assert start >= 0; local
13 assert start + size <= list.size();
16 this.start = start;
24 return backingList.get(arg0 + start);
  /bootable/recovery/edify/
yydefs.h 22 int start, end; member in struct:__anon1512
28 (Current).start = YYRHSLOC(Rhs, 1).start; \
31 (Current).start = YYRHSLOC(Rhs, 0).start; \
  /external/autotest/client/tests/monotonic_time/src/
cpuset.c 39 int start, end; local
41 start = end = (int)strtol(s, &next, 0);
57 if (start < 0 || start >= CPU_SETSIZE) {
58 ERROR(0, "bad cpu number '%d' in cpu set", start);
67 if (end < start) {
68 ERROR(0, "bad range '%d-%d' in cpu set", start, end);
72 for (cpu = start; cpu <= end; ++cpu)
87 int start, int end)
91 if (start == end
113 int start = -1; local
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/dlg/
relabel.c 62 int relabel(nfa_node* start,int level)
64 int relabel(start,level)
66 nfa_node *start;
71 partition(start,level);
72 label_with_classes(start);
82 void partition(nfa_node* start,int level)
84 void partition(start,level)
85 nfa_node *start; /* beginning of nfa graph */
112 intersect_nfa_labels(start,&current_class);
140 void intersect_nfa_labels(nfa_node* start,set* maximal_class)
    [all...]
  /external/syslinux/com32/lib/syslinux/
zonelist.c 61 sp->start = 0;
65 ep->start = 0; /* Wrap around... */
77 addr_t start, addr_t len,
93 last = start + len - 1;
97 while (mp = *mpp, start > mp->start && mp->type != SMT_END) {
102 if (start < mp->start || mp->type == SMT_END) {
104 /* Splice in a new start token */
109 range->start = start
369 addr_t start, end; local
    [all...]
  /art/test/911-get-stack-trace/src/art/
Recurse.java 20 public static int foo(int x, int start, int max, ControlData data) {
21 bar(x, start, max, data);
25 private static long bar(int x, int start, int max, ControlData data) {
26 baz(x, start, max, data);
30 private static Object baz(int x, int start, int max, ControlData data) {
32 printOrWait(start, max, data);
34 foo(x - 1, start, max, data);
39 private static void printOrWait(int start, int max, ControlData data) {
41 PrintThread.print(Thread.currentThread(), start, max); local
  /external/replicaisland/src/com/replica/replicaisland/
Lerp.java 21 public static float lerp(float start, float target, float duration, float timeSinceStart)
23 float value = start;
26 final float range = target - start;
28 value = start + (range * percent);
37 public static float ease(float start, float target, float duration, float timeSinceStart)
39 float value = start;
42 final float range = target - start;
46 value = start + ((range / 2.0f) * percent * percent * percent);
51 value = start + ((range / 2.0f) *
  /cts/tests/tests/os/src/android/os/cts/
SystemClockTest.java 26 long start = SystemClock.currentThreadTimeMillis(); local
29 assertFalse(end - 100 >= start);
35 long start = SystemClock.elapsedRealtime(); local
38 assertTrue(end - 100 >= start);
44 long start = SystemClock.currentThreadTimeMillis(); local
45 boolean actual = SystemClock.setCurrentTimeMillis(start + 10000);
53 long start = SystemClock.currentThreadTimeMillis(); local
56 assertFalse(end - 100 >= start);
58 start = SystemClock.elapsedRealtime();
61 assertTrue(end - 100 >= start);
72 long start = SystemClock.uptimeMillis(); local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
ReplaceableString.java 66 public String substring(int start, int limit) {
67 return buf.substring(start, limit);
116 * &lt;= start &lt;= limit</code>.
118 * <code>start &lt;= limit &lt;= length()</code>.
120 * @param dstStart the start offset in the destination array.
132 * @param start the beginning index, inclusive; <code>0 &lt;= start
134 * @param limit the ending index, exclusive; <code>start &lt;= limit
136 * @param text new text to replace characters <code>start</code> to
140 public void replace(int start, int limit, String text)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
ReplaceableString.java 70 public String substring(int start, int limit) {
71 return buf.substring(start, limit);
123 * &lt;= start &lt;= limit</code>.
125 * <code>start &lt;= limit &lt;= length()</code>.
127 * @param dstStart the start offset in the destination array.
140 * @param start the beginning index, inclusive; <code>0 &lt;= start
142 * @param limit the ending index, exclusive; <code>start &lt;= limit
144 * @param text new text to replace characters <code>start</code> to
149 public void replace(int start, int limit, String text)
    [all...]
  /external/icu/icu4c/source/common/
cwchar.cpp 26 wchar_t *start=dst; local
34 return start;
38 wchar_t *start=dst; local
43 return start;
47 const wchar_t *start=src; local
51 return src-start;
  /external/python/cpython2/Objects/
sliceobject.c 56 start, stop, and step are python objects with None indicating no
61 PySlice_New(PyObject *start, PyObject *stop, PyObject *step)
70 if (start == NULL) start = Py_None;
71 Py_INCREF(start);
76 obj->start = start;
86 PyObject *start, *end, *slice; local
87 start = PyInt_FromSsize_t(istart);
88 if (!start)
195 PyObject *start, *stop, *step; local
257 Py_ssize_t ilen, start, stop, step, slicelength; local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/util/
RangeDateRule.java 50 public void add(Date start, DateRule rule) {
52 // System.out.println("Add: " + start.toString());
53 ranges.add(new Range(start, rule));
61 public Date firstAfter(Date start) {
63 int index = startIndex(start);
75 result = r.rule.firstBetween(start, e.start);
77 result = r.rule.firstAfter(start);
86 public Date firstBetween(Date start, Date end) {
88 return firstAfter(start);
162 public Date start; field in class:Range
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
RangeDateRule.java 52 public void add(Date start, DateRule rule) {
54 // System.out.println("Add: " + start.toString());
55 ranges.add(new Range(start, rule));
64 public Date firstAfter(Date start) {
66 int index = startIndex(start);
78 result = r.rule.firstBetween(start, e.start);
80 result = r.rule.firstAfter(start);
90 public Date firstBetween(Date start, Date end) {
92 return firstAfter(start);
168 public Date start; field in class:Range
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
sliceobject.c 56 start, stop, and step are python objects with None indicating no
61 PySlice_New(PyObject *start, PyObject *stop, PyObject *step)
70 if (start == NULL) start = Py_None;
71 Py_INCREF(start);
76 obj->start = start;
85 PyObject *start, *end, *slice; local
86 start = PyInt_FromSsize_t(istart);
87 if (!start)
194 PyObject *start, *stop, *step; local
255 Py_ssize_t ilen, start, stop, step, slicelength; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
sliceobject.c 56 start, stop, and step are python objects with None indicating no
61 PySlice_New(PyObject *start, PyObject *stop, PyObject *step)
70 if (start == NULL) start = Py_None;
71 Py_INCREF(start);
76 obj->start = start;
85 PyObject *start, *end, *slice; local
86 start = PyInt_FromSsize_t(istart);
87 if (!start)
194 PyObject *start, *stop, *step; local
254 Py_ssize_t ilen, start, stop, step, slicelength; local
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeRuleReturnScope.java 33 * the start property is a tree nodes not Token object
39 public Object start; field in class:TreeRuleReturnScope
40 public Object getStart() { return start; }
  /external/curl/docs/cmdline-opts/
false-start.d 1 Long: false-start
2 Help: Enable TLS False Start
6 Tells curl to use false start during the TLS handshake. False start is a mode
7 where a TLS client will start sending application data before verifying the
  /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/selinux/sandbox/
sandbox.init 4 # Default-Start: 3 4 5
6 # Required-Start:
28 start() {
55 start && success || failure
58 start)
59 start && success || failure
73 echo $"Usage: $0 {start|stop|status|restart}"
  /external/v8/src/ia32/
cpu-ia32.cc 19 void CpuFeatures::FlushICache(void* start, size_t size) {
35 unsigned res = VALGRIND_DISCARD_TRANSLATIONS(start, size);

Completed in 522 milliseconds

1 2 34 5 6 7 8 91011>>