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

  /external/wpa_supplicant_8/src/p2p/
p2p_dev_disc.c 284 * Peer is expected to be awake for at least 100 TU; try to
338 unsigned int tu; local
343 "100 TU");
349 /* Remain awake 100 TU on operating channel */
351 tu = 100;
352 if (p2p->cfg->start_listen(p2p->cfg->cb_ctx, rx_freq, 1024 * tu / 1000,
p2p.c 259 unsigned int r, tu; local
276 tu = (r % ((p2p->max_disc_int - p2p->min_disc_int) + 1) +
281 p2p->pending_listen_usec = 1024 * tu;
287 if (p2p->cfg->start_listen(p2p->cfg->cb_ctx, freq, 1024 * tu / 1000,
    [all...]
  /external/wpa_supplicant_8/src/ap/
ieee802_11_shared.c 26 u32 timeout, tu; local
34 tu = (passed.sec * 1000000 + passed.usec) / 1024;
35 if (hapd->conf->assoc_sa_query_max_timeout > tu)
36 timeout = hapd->conf->assoc_sa_query_max_timeout - tu;
sta_info.c 698 u32 tu; local
702 tu = (passed.sec * 1000000 + passed.usec) / 1024;
703 if (hapd->conf->assoc_sa_query_max_timeout < tu) {
  /frameworks/base/core/jni/android/opengl/
poly_clip.cpp 66 float t, tu, tv; local
72 tu = sign*COORD(u, index) - u->sw*k;
73 for (v= &p->vert[0], i=p->n; i>0; i--, u=v, tu=tv, v++) {
77 if ((tu <= 0.0f) ^ (tv <= 0.0f)) {
79 t = tu/(tu-tv);
  /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/wpa_supplicant_8/wpa_supplicant/
sme.c 617 u32 tu; local
621 tu = (passed.sec * 1000000 + passed.usec) / 1024;
622 if (sa_query_max_timeout < tu) {
  /external/yaffs2/yaffs2/utils/
mkyaffsimage.c 189 yaffs_TagsUnion *tu = (yaffs_TagsUnion *)tagsPtr; local
193 sparePtr->tagByte0 = tu->asBytes[0];
194 sparePtr->tagByte1 = tu->asBytes[1];
195 sparePtr->tagByte2 = tu->asBytes[2];
196 sparePtr->tagByte3 = tu->asBytes[3];
197 sparePtr->tagByte4 = tu->asBytes[4];
198 sparePtr->tagByte5 = tu->asBytes[5];
199 sparePtr->tagByte6 = tu->asBytes[6];
200 sparePtr->tagByte7 = tu->asBytes[7];
  /external/yaffs2/yaffs2/
yaffs_tagscompat.c 123 yaffs_TagsUnion *tu = (yaffs_TagsUnion *) tagsPtr; local
127 sparePtr->tagByte0 = tu->asBytes[0];
128 sparePtr->tagByte1 = tu->asBytes[1];
129 sparePtr->tagByte2 = tu->asBytes[2];
130 sparePtr->tagByte3 = tu->asBytes[3];
131 sparePtr->tagByte4 = tu->asBytes[4];
132 sparePtr->tagByte5 = tu->asBytes[5];
133 sparePtr->tagByte6 = tu->asBytes[6];
134 sparePtr->tagByte7 = tu->asBytes[7];
140 yaffs_TagsUnion *tu = (yaffs_TagsUnion *) tagsPtr local
    [all...]
  /external/webp/src/dec/
dsp_sse2.c 813 uint8_t* const tu = u - 4; local
    [all...]
  /external/quake/quake/src/QW/dxsdk/sdk/inc/
d3drmdef.h 265 D3DVALUE tu, tv; member in struct:_D3DRMVERTEX
d3dtypes.h 220 D3DVALUE tu; /* Texture coordinates */ member in union:_D3DTLVERTEX::__anon11670
255 D3DVALUE tu; /* Texture coordinates */ member in union:_D3DLVERTEX::__anon11677
294 D3DVALUE tu; /* Texture coordinates */ member in union:_D3DVERTEX::__anon11685
  /external/quake/quake/src/WinQuake/dxsdk/SDK/INC/
D3DRMDEF.H 265 D3DVALUE tu, tv; member in struct:_D3DRMVERTEX
D3DTYPES.H 220 D3DVALUE tu; /* Texture coordinates */ member in union:_D3DTLVERTEX::__anon11853
255 D3DVALUE tu; /* Texture coordinates */ member in union:_D3DLVERTEX::__anon11860
294 D3DVALUE tu; /* Texture coordinates */ member in union:_D3DVERTEX::__anon11868
  /external/wpa_supplicant_6/wpa_supplicant/
mlme.c 1092 u32 tu, ms; local
1093 tu = WPA_GET_LE32(elems.timeout_int + 1);
1094 ms = tu * 1024 / 1000;
1096 "temporarily; comeback duration %u TU "
1097 "(%u ms)", tu, ms);
    [all...]
  /external/clang/tools/libclang/
CIndex.cpp 56 CXTranslationUnit cxtu::MakeCXTranslationUnit(CIndexer *CIdx, ASTUnit *TU) {
57 if (!TU)
61 D->TUData = TU;
68 if (TU)
69 clang_disposeTranslationUnit(TU);
214 ASTUnit *Unit = static_cast<ASTUnit *>(TU->TUData);
260 ASTUnit *Unit = static_cast<ASTUnit *>(TU->TUData);
323 if (Visit(MakeCXCursor(D, TU, Range), /*CheckedRegionOfInterest=*/true))
343 Visit(MakeCXCursor(D, TU, Range), /*CheckedRegionOfInterest=*/true);
409 if (Visit(MakeMacroExpansionCursor(ME, TU)))
471 CXTranslationUnit tu = getCursorTU(Cursor); local
    [all...]

Completed in 762 milliseconds