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

  /external/linux-kselftest/tools/testing/selftests/rcutorture/formal/srcu-cbmc/tests/store_buffering/
test.c 55 pthread_t tu; local
58 if (pthread_create(&tu, NULL, thread_update, NULL))
62 if (pthread_join(tu, NULL))
  /external/wpa_supplicant_8/src/p2p/
p2p_dev_disc.c 262 * Peer is expected to be awake for at least 100 TU; try to
312 unsigned int tu; local
315 p2p_dbg(p2p, "Received GO Discoverability Request - remain awake for 100 TU");
321 /* Remain awake 100 TU on operating channel */
323 tu = 100;
324 if (p2p->cfg->start_listen(p2p->cfg->cb_ctx, rx_freq, 1024 * tu / 1000,
p2p.c 255 unsigned int r, tu; local
276 tu = (r % ((p2p->max_disc_int - p2p->min_disc_int) + 1) +
278 if (p2p->max_disc_tu >= 0 && tu > (unsigned int) p2p->max_disc_tu)
279 tu = p2p->max_disc_tu;
280 if (!dev_disc && tu < 100)
281 tu = 100; /* Need to wait in non-device discovery use cases */
282 if (p2p->cfg->max_listen && 1024 * tu / 1000 > p2p->cfg->max_listen)
283 tu = p2p->cfg->max_listen * 1000 / 1024;
285 if (tu == 0) {
286 p2p_dbg(p2p, "Skip listen state since duration was 0 TU");
    [all...]
  /external/clang/test/Sema/
transparent-union.c 7 } TU __attribute__((transparent_union));
9 void f(TU); // expected-note{{passing argument to parameter here}}
17 TU tu_ip = ip; // expected-error{{incompatible type}}
18 TU tu; local
19 tu.ip = ip;
25 void fip(TU);
28 void ffp(TU);
31 void flp(TU);
34 void fvp(TU); // expected-note{{previous declaration is here}
    [all...]
  /external/u-boot/fs/yaffs2/
yaffs_tagscompat.c 84 union yaffs_tags_union *tu = (union yaffs_tags_union *)tags_ptr; local
88 spare_ptr->tb0 = tu->as_bytes[0];
89 spare_ptr->tb1 = tu->as_bytes[1];
90 spare_ptr->tb2 = tu->as_bytes[2];
91 spare_ptr->tb3 = tu->as_bytes[3];
92 spare_ptr->tb4 = tu->as_bytes[4];
93 spare_ptr->tb5 = tu->as_bytes[5];
94 spare_ptr->tb6 = tu->as_bytes[6];
95 spare_ptr->tb7 = tu->as_bytes[7];
102 union yaffs_tags_union *tu = (union yaffs_tags_union *)tags_ptr local
    [all...]
  /art/runtime/base/
timing_logger.cc 209 TimeUnit tu = GetAppropriateTimeUnit(longest_split); local
210 uint64_t divisor = GetNsToTimeUnitDivisor(tu);
227 os << FormatDuration(exclusive_time, tu, kFractionalDigits);
230 os << "/" << FormatDuration(total_time, tu, kFractionalDigits);
  /development/vndk/tools/header-checker/src/repr/protobuf/
ir_reader.cpp 43 abi_dump::TranslationUnit tu; local
47 if (!google::protobuf::TextFormat::Parse(&text_is, &tu)) {
51 ReadFunctions(tu);
52 ReadGlobalVariables(tu);
54 ReadEnumTypes(tu);
55 ReadRecordTypes(tu);
56 ReadFunctionTypes(tu);
57 ReadArrayTypes(tu);
58 ReadPointerTypes(tu);
59 ReadQualifiedTypes(tu);
    [all...]
  /external/wpa_supplicant_8/src/ap/
ieee802_11_shared.c 28 u32 timeout, tu; local
36 tu = (passed.sec * 1000000 + passed.usec) / 1024;
37 if (hapd->conf->assoc_sa_query_max_timeout > tu)
38 timeout = hapd->conf->assoc_sa_query_max_timeout - tu;
sta_info.c 1089 u32 tu; local
1093 tu = (passed.sec * 1000000 + passed.usec) / 1024;
1094 if (hapd->conf->assoc_sa_query_max_timeout < tu) {
    [all...]
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTPrint3D.h 74 VERTTYPE tu, tv; member in struct:SPVRTPrint3DAPIVertex
  /external/wpa_supplicant_8/wpa_supplicant/
sme.c 2298 u32 tu; local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
UCharacterTest.java 2571 UnicodeSet tu = new UnicodeSet("[:vo=Tu:]"); local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
UCharacterTest.java 2568 UnicodeSet tu = new UnicodeSet("[:vo=Tu:]"); local
    [all...]
  /external/webp/src/dsp/
dec_sse2.c 827 uint8_t* const tu = u - 4; local
    [all...]
  /external/clang/tools/libclang/
CIndex.cpp 98 if (TU)
99 clang_disposeTranslationUnit(TU);
250 ASTUnit *Unit = cxtu::getASTUnit(TU);
299 ASTUnit *Unit = cxtu::getASTUnit(TU);
362 if (Visit(MakeCXCursor(D, TU, Range), /*CheckedRegionOfInterest=*/true))
382 if (Visit(MakeCXCursor(D, TU, Range), /*CheckedRegionOfInterest=*/true))
453 if (Visit(MakeMacroExpansionCursor(ME, TU)))
460 if (Visit(MakeMacroDefinitionCursor(MD, TU)))
467 if (Visit(MakeInclusionDirectiveCursor(ID, TU)))
515 CXTranslationUnit TU = getCursorTU(Cursor)
3391 CXTranslationUnit tu = static_cast<CXTranslationUnit>(CT.data[1]); local
    [all...]

Completed in 697 milliseconds