HomeSort by relevance Sort by last modified time
    Searched defs:first (Results 76 - 100 of 3938) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/kmod/testsuite/
test-loaded.c 56 int first = 1; local
63 if (!first)
66 first = 0;
  /external/libcxx/test/std/containers/sequences/list/
iterators.pass.cpp 28 int first; member in struct:A
134 i->first = 3;
136 assert(j->first == 3);
  /external/libcxx/test/std/containers/sequences/vector/
iterators.pass.cpp 28 int first; member in struct:A
134 i->first = 3;
136 assert(j->first == 3);
  /external/libcxx/test/std/strings/basic.string/string.modifiers/string_replace/
iter_iter_pointer.pass.cpp 28 typename S::const_iterator first = s.begin() + pos1; local
30 typename S::size_type xlen = last - first;
31 s.replace(first, last, str);
iter_iter_size_char.pass.cpp 28 typename S::const_iterator first = s.begin() + pos1; local
30 typename S::size_type xlen = last - first;
31 s.replace(first, last, n2, c);
iter_iter_string.pass.cpp 27 typename S::const_iterator first = s.begin() + pos1; local
29 typename S::size_type xlen = last - first;
30 s.replace(first, last, str);
iter_iter_string_view.pass.cpp 27 typename S::const_iterator first = s.begin() + pos1; local
29 typename S::size_type xlen = last - first;
30 s.replace(first, last, sv);
  /external/libmojo/mojo/public/java/system/src/org/chromium/mojo/system/
Pair.java 11 * @param <F> Type of the first element.
16 public final F first; field in class:Pair
22 * @param first the first element of the pair.
25 public Pair(F first, S second) {
26 this.first = first;
46 return equals(first, p.first) && equals(second, p.second);
54 return (first == null ? 0 : first.hashCode()) ^ (second == null ? 0 : second.hashCode())
    [all...]
  /external/libvterm/src/
unicode.c 24 * a first attempt of defining such behavior based on simple rules
73 int first; member in struct:interval
136 if (ucs < table[0].first || ucs > table[max].last)
142 else if (ucs < table[mid].first)
  /external/libxkbcommon/xkbcommon/src/
keysym-utf.c 842 size_t first = 0; local
    [all...]
  /external/llvm/include/llvm/ExecutionEngine/
GenericValue.h 29 unsigned int first; member in struct:llvm::GenericValue::IntPair
46 GenericValue() : IntVal(1,0) {UIntPairVal.first = 0; UIntPairVal.second = 0;}
  /external/ltp/testcases/kernel/syscalls/fork/
fork09.c 59 static int first; variable
85 /* establish first free file */
87 first = SAFE_CREAT(cleanup, filname, 0660);
88 close(first);
90 tst_resm(TINFO, "first file descriptor is %d ", first);
97 for (nfiles = first; nfiles < OPEN_MAX; nfiles++) {
149 for (nf = first; nf < nfiles; nf++) {
  /external/ltp/testcases/kernel/syscalls/mlock/
mlock03.c 53 long first = -1, last = -1; local
73 first = (to - from) / KB;
98 tst_resm(TINFO, "starting stack size is %ld", first);
100 if (last < first)
  /external/ltp/testcases/kernel/syscalls/open/
open04.c 26 * First get the file descriptor table size which is set for a process.
41 static int fd, ifile, mypid, first; variable
73 close(first);
92 first = fd = open(fname, O_RDWR | O_CREAT, 0777);
93 if (first == -1)
94 tst_brkm(TBROK, cleanup, "Cannot open first file");
97 close(first);
101 buf = malloc(sizeof(int) * nfile - first);
105 for (ifile = first; ifile <= nfile; ifile++) {
115 buf[ifile - first] = fd
    [all...]
  /external/ltp/testcases/kernel/syscalls/signal/
signal04.c 37 * if the first return value matches the second return value
88 sighandler_t rval, first; local
105 /* First reset the signal to the default
117 first = rval;
138 * the first return value should equal the
141 if (rval == first) {
148 siglist[i], rval, first);
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_split_tmp.h 29 unsigned first, incr; local
43 draw_pt_split_prim(prim, &first, &incr);
45 count = draw_pt_trim_count(count, first, incr);
46 if (count < first)
54 assert(max_count_simple >= first + incr &&
55 max_count_loop >= first + incr &&
56 max_count_fan >= first + incr);
63 const unsigned rollback = first - incr;
73 * remaining = count - seg_start = first + N'' * incr.
90 draw_pt_trim_count(MIN2(max_count_simple, count), first, incr)
    [all...]
  /external/mesa3d/src/gallium/state_trackers/nine/
nine_debug.c 66 static boolean first = TRUE; local
70 if (first) {
71 first = FALSE;
  /external/mesa3d/src/mesa/math/
m_trans_tmp.h 37 const GLubyte *first = f; local
40 (void) first;
61 const GLubyte *first = f; local
64 (void) first;
84 const GLubyte *first = f; local
86 (void) first;
104 const GLubyte *first = f; local
106 (void) first;
122 const GLubyte *first = f; local
125 (void) first;
144 const GLubyte *first = f; local
166 const GLubyte *first = f; local
185 const GLubyte *first = f; local
    [all...]
  /external/mockito/src/test/java/org/mockitousage/stacktrace/
PointingStackTraceToActualInvocationTest.java 31 first(); method
37 private void first() { method in class:PointingStackTraceToActualInvocationTest
56 assertThat(e).hasMessageContaining("first(");
  /external/nist-sip/java/gov/nist/javax/sip/address/
NetObjectList.java 102 /** returns the first element
105 public GenericObject first() { method in class:NetObjectList
106 return (NetObject) super.first();
  /external/protobuf/ruby/lib/google/protobuf/
repeated_field.rb 81 def first(n=nil) method in class:Google.Protobuf.RepeatedField
  /external/python/cpython2/Modules/_sqlite/
cache.h 53 pysqlite_Node* first; member in struct:__anon32731
  /external/python/cpython2/Modules/cjkcodecs/
mappings_cn.h 4052 Py_UNICODE first, last; member in struct:_gb18030_to_unibmp_ranges
    [all...]
  /external/python/cpython3/Modules/_sqlite/
cache.h 53 pysqlite_Node* first; member in struct:__anon33353
  /external/python/cpython3/Modules/cjkcodecs/
mappings_cn.h 4052 Py_UCS4 first, last; member in struct:_gb18030_to_unibmp_ranges
    [all...]

Completed in 1759 milliseconds

1 2 34 5 6 7 8 91011>>