HomeSort by relevance Sort by last modified time
    Searched defs:stm (Results 1 - 21 of 21) sorted by null

  /external/llvm/test/MC/ARM/
thumb-load-store-multiple.s 43 .global stm
44 .type stm,%function
45 stm: label
46 stm r0!, {r1, sp}
48 stm r0!, {r2, pc}
50 stm r0!, {sp, pc}
arm-load-store-multiple-deprecated.s 10 .global stm
11 .type stm,%function
12 stm: label
13 stm sp!, {r0, pc}
15 @ CHECK: stm sp!, {r0, pc}
17 stm r0!, {r0, sp}
19 @ CHECK: stm r0!, {r0, sp}
21 stm r1!, {r0, sp, pc}
23 @ CHECK: stm r1!, {r0, sp, pc}
25 stm r2!, {sp, pc
    [all...]
  /external/boringssl/src/crypto/asn1/
a_utctm.c 243 struct tm stm, ttm; local
246 if (!asn1_utctime_to_tm(&stm, s))
252 if (!OPENSSL_gmtime_diff(&day, &sec, &ttm, &stm))
  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteStatementTest.java 226 SQLiteStatement stm = mDatabase.compileStatement(sql); local
227 assertNull(stm.simpleQueryForBlobFileDescriptor());
246 SQLiteStatement stm = mDatabase.compileStatement(sql); local
247 ParcelFileDescriptor fd = stm.simpleQueryForBlobFileDescriptor();
255 SQLiteStatement stm = mDatabase.compileStatement(sql); local
256 stm.bindLong(1, 0);
257 ParcelFileDescriptor fd = stm.simpleQueryForBlobFileDescriptor();
265 SQLiteStatement stm = mDatabase.compileStatement(sql); local
269 fd = stm.simpleQueryForBlobFileDescriptor();
285 SQLiteStatement stm = mDatabase.compileStatement(sql) local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
loslib.c 198 struct tm tmr, *stm; local
200 stm = l_gmtime(&t, &tmr);
204 stm = l_localtime(&t, &tmr);
205 if (stm == NULL) /* invalid date? */
209 setfield(L, "sec", stm->tm_sec);
210 setfield(L, "min", stm->tm_min);
211 setfield(L, "hour", stm->tm_hour);
212 setfield(L, "day", stm->tm_mday);
213 setfield(L, "month", stm->tm_mon+1);
214 setfield(L, "year", stm->tm_year+1900);
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_perfmon.c 43 struct st_perf_monitor_object *stm = st_perf_monitor_object(m); local
75 stm->active_counters = CALLOC(num_active_counters,
76 sizeof(*stm->active_counters));
77 if (!stm->active_counters)
95 &stm->active_counters[stm->num_active_counters];
107 ++stm->num_active_counters;
113 stm->batch_query = pipe->create_batch_query(pipe, num_batch_counters,
115 stm->batch_result = CALLOC(num_batch_counters, sizeof(stm->batch_result->batch[0]))
163 struct st_perf_monitor_object *stm = st_perf_monitor_object(m); local
173 struct st_perf_monitor_object *stm = st_perf_monitor_object(m); local
205 struct st_perf_monitor_object *stm = st_perf_monitor_object(m); local
223 struct st_perf_monitor_object *stm = st_perf_monitor_object(m); local
239 struct st_perf_monitor_object *stm = st_perf_monitor_object(m); local
271 struct st_perf_monitor_object *stm = st_perf_monitor_object(m); local
    [all...]
  /external/skia/third_party/lua/src/
loslib.c 198 struct tm tmr, *stm; local
200 stm = l_gmtime(&t, &tmr);
204 stm = l_localtime(&t, &tmr);
205 if (stm == NULL) /* invalid date? */
209 setfield(L, "sec", stm->tm_sec);
210 setfield(L, "min", stm->tm_min);
211 setfield(L, "hour", stm->tm_hour);
212 setfield(L, "day", stm->tm_mday);
213 setfield(L, "month", stm->tm_mon+1);
214 setfield(L, "year", stm->tm_year+1900)
    [all...]
  /external/skia/tools/
using_skia_and_harfbuzz.cpp 82 std::ostringstream stm; local
83 stm << value;
84 return stm.str();
  /external/syslinux/com32/lua/src/
loslib.c 203 struct tm tmr, *stm; local
205 stm = l_gmtime(&t, &tmr);
209 stm = l_localtime(&t, &tmr);
210 if (stm == NULL) /* invalid date? */
214 setfield(L, "sec", stm->tm_sec);
215 setfield(L, "min", stm->tm_min);
216 setfield(L, "hour", stm->tm_hour);
217 setfield(L, "day", stm->tm_mday);
218 setfield(L, "month", stm->tm_mon+1);
219 setfield(L, "year", stm->tm_year+1900)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
zipimport.c 1067 struct tm stm; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
zipimport.c 1039 struct tm stm; local
1041 memset((void *) &stm, '\0', sizeof(stm));
1043 stm.tm_sec = (dostime & 0x1f) * 2;
1044 stm.tm_min = (dostime >> 5) & 0x3f;
1045 stm.tm_hour = (dostime >> 11) & 0x1f;
1046 stm.tm_mday = dosdate & 0x1f;
1047 stm.tm_mon = ((dosdate >> 5) & 0x0f) - 1;
1048 stm.tm_year = ((dosdate >> 9) & 0x7f) + 80;
1049 stm.tm_isdst = -1; /* wday/yday is ignored */
    [all...]
  /external/python/cpython2/Modules/
zipimport.c 1159 struct tm stm; local
    [all...]
  /external/v8/src/s390/
assembler-s390.cc 551 void Assembler::stm(Register r1, Register r2, const MemOperand& src) { function in class:v8::internal::Assembler
552 rs_form(STM, r1, r2, src.rb(), src.offset());
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapFactoryTest.java 874 ByteArrayOutputStream stm = new ByteArrayOutputStream(); local
    [all...]
  /external/vixl/src/aarch32/
assembler-aarch32.cc 10135 void Assembler::stm(Condition cond, function in class:vixl::aarch32::Assembler
    [all...]
assembler-aarch32.h 3233 void stm(Register rn, WriteBack write_back, RegisterList registers) { function in class:vixl::aarch32::Assembler
3236 void stm(Condition cond, function in class:vixl::aarch32::Assembler
3242 void stm(EncodingSize size, function in class:vixl::aarch32::Assembler
    [all...]
disasm-aarch32.cc 3005 void Disassembler::stm(Condition cond, function in class:vixl::aarch32::Disassembler
    [all...]
  /external/v8/src/inspector/build/closure-compiler/
closure-compiler.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.ui.workbench_3.6.2.M20110210-1200.jar 
  /prebuilts/tools/linux-x86_64/kythe/extractors/
javac_extractor.jar 
  /prebuilts/tools/linux-x86_64/kythe/indexers/
java_indexer.jar 

Completed in 2478 milliseconds