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

1 2 34 5 6 7 8 91011>>

  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/numerics/numarray/template.gslice.array/gslice.array.assign/
gslice_array.pass.cpp 32 std::size_t st[] = {19, 4, 1}; local
36 strides(st, sizeof(st)/sizeof(st[0])))]
38 strides(st, sizeof(st)/sizeof(st[0])))];
valarray.pass.cpp 30 std::size_t st[] = {19, 4, 1}; local
34 strides(st, sizeof(st)/sizeof(st[0])))] = v2;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/numerics/numarray/template.gslice.array/gslice.array.comp.assign/
addition.pass.cpp 30 std::size_t st[] = {19, 4, 1}; local
34 strides(st, sizeof(st)/sizeof(st[0])))] += v2;
and.pass.cpp 30 std::size_t st[] = {19, 4, 1}; local
34 strides(st, sizeof(st)/sizeof(st[0])))] &= v2;
divide.pass.cpp 30 std::size_t st[] = {19, 4, 1}; local
34 strides(st, sizeof(st)/sizeof(st[0])))] /= v2;
modulo.pass.cpp 30 std::size_t st[] = {19, 4, 1}; local
34 strides(st, sizeof(st)/sizeof(st[0])))] %= v2;
multiply.pass.cpp 30 std::size_t st[] = {19, 4, 1}; local
34 strides(st, sizeof(st)/sizeof(st[0])))] *= v2;
or.pass.cpp 30 std::size_t st[] = {19, 4, 1}; local
34 strides(st, sizeof(st)/sizeof(st[0])))] |= v2;
subtraction.pass.cpp 30 std::size_t st[] = {19, 4, 1}; local
34 strides(st, sizeof(st)/sizeof(st[0])))] -= v2;
xor.pass.cpp 30 std::size_t st[] = {19, 4, 1}; local
34 strides(st, sizeof(st)/sizeof(st[0])))] ^= v2;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/numerics/numarray/template.gslice.array/gslice.array.fill/
assign_value.pass.cpp 27 std::size_t st[] = {19, 4, 1}; local
31 strides(st, sizeof(st)/sizeof(st[0])))] = 51;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/numerics/numarray/template.valarray/valarray.assign/
gslice_array_assign.pass.cpp 27 std::size_t st[] = {19, 4, 1}; local
32 strides(st, sizeof(st)/sizeof(st[0])))];
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/numerics/numarray/template.valarray/valarray.cons/
gslice_array.pass.cpp 27 std::size_t st[] = {19, 4, 1}; local
31 strides(st, sizeof(st)/sizeof(st[0])))]);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/numerics/numarray/template.valarray/valarray.sub/
gslice_const.pass.cpp 30 std::size_t st[] = {19, 4, 1}; local
34 strides(st, sizeof(st)/sizeof(st[0])))] = v2;
gslice_non_const.pass.cpp 27 std::size_t st[] = {19, 4, 1}; local
31 strides(st, sizeof(st)/sizeof(st[0])))]);
  /system/core/adb/sysdeps/win32/
stat.cpp 55 struct adb_stat st; local
56 int result = wstat(path_wide.c_str(), &st);
58 if (!S_ISDIR(st.st_mode)) {
64 memcpy(s, &st, sizeof(st));
  /art/test/StackWalk2/
StackWalk2.java 31 System.logI("1st call"); // use v0 for PrintStream, v1 for "1st call"
55 StackWalk2 st = new StackWalk2(); local
56 st.f();
  /libcore/luni/src/test/java/libcore/java/sql/
OldStatementTest.java 32 Statement st = null; local
34 st = conn.createStatement();
35 st.addBatch("INSERT INTO zoo VALUES (3,'Tuzik','dog')");
36 st.addBatch("INSERT INTO zoo VALUES (4,'Mashka','cat')");
38 int[] updateCounts = st.executeBatch();
44 st.close();
50 st = conn.createStatement();
51 st.addBatch("");
52 st.executeBatch();
58 st.close()
78 Statement st = null; local
105 Statement st = null; local
164 Statement st = null; local
229 Statement st = null; local
252 Statement st = null; local
281 Statement st = null; local
300 Statement st = null; local
323 Statement st = null; local
345 Statement st = null; local
380 Statement st = null; local
400 Statement st = null; local
423 Statement st = null; local
455 Statement st = null; local
477 Statement st = null; local
497 Statement st = null; local
532 Statement st = null; local
569 Statement st = null; local
605 Statement st = null; local
655 Statement st = null; local
728 Statement st = null; local
786 Statement st = null; local
835 Statement st = null; local
883 Statement st = null; local
920 Statement st = null; local
961 Statement st = null; local
986 Statement st = null; local
999 Statement st = null; local
1012 Statement st = null; local
1024 Statement st = conn.createStatement(); local
1048 Statement st = null; local
1092 Statement st = null; local
1127 Statement st = null; local
1165 Statement st = null; local
1210 Statement st = null; local
1229 Statement st = null; local
1265 Statement st = null; local
    [all...]
  /bionic/libc/upstream-netbsd/lib/libc/gen/
utmp.c 62 struct stat st; local
66 if (fstat(fileno(ut), &st) == -1)
71 numentries = st.st_size / sizeof(utmp);
72 if ((off_t)(numentries * sizeof(utmp)) != st.st_size)
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
fgetwc.c 41 mbstate_t *st; local
59 st = &wcio->wcio_mbstate_in;
70 size = mbrtowc(&wc, &c, 1, st);
fputwc.c 43 mbstate_t *st; local
61 st = &wcio->wcio_mbstate_out;
63 size = wcrtomb(buf, wc, st);
  /bionic/tools/versioner/src/
Utils.h 38 struct stat st; local
39 if (stat(path.c_str(), &st) == 0 && S_ISDIR(st.st_mode)) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
symtablemodule.c 11 struct symtable *st; local
33 st = Py_SymtableString(str, filename, start);
34 if (st == NULL)
36 t = (PyObject *)st->st_top;
38 PyMem_Free((void *)st->st_future);
39 PySymtable_Free(st);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
statement.h 38 sqlite3_stmt* st; member in struct:__anon5781
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
symtablemodule.c 11 struct symtable *st; local
33 st = Py_SymtableString(str, filename, start);
34 if (st == NULL)
36 t = st->st_symbols;
38 PyMem_Free((void *)st->st_future);
39 PySymtable_Free(st);

Completed in 3922 milliseconds

1 2 34 5 6 7 8 91011>>