Searched refs:th (Results 1 - 7 of 7) sorted by relevance
/frameworks/base/core/tests/coretests/src/android/app/activity/ |
H A D | LaunchpadTabActivity.java | 36 TabHost th = getTabHost(); 37 TabHost.TabSpec ts = th.newTabSpec("1"); 40 th.addTab(ts);
|
/frameworks/base/libs/usb/tests/AccessoryChat/accessorychat/ |
H A D | accessorychat.c | 90 pthread_t th; local 139 pthread_create(&th, NULL, read_thread, (void *)ep1->bEndpointAddress); 140 pthread_create(&th, NULL, write_thread, (void *)ep2->bEndpointAddress); 142 pthread_create(&th, NULL, read_thread, (void *)ep2->bEndpointAddress); 143 pthread_create(&th, NULL, write_thread, (void *)ep1->bEndpointAddress);
|
/frameworks/base/services/surfaceflinger/ |
H A D | LayerBlur.cpp | 194 GLuint th = 1 << (31 - clz(h)); local 196 if (th < GLuint(h)) th <<= 1; 197 glTexImage2D(GL_TEXTURE_2D, 0, mReadFormat, tw, th, 0, 202 mHeightScale =-1.0f / th; 203 mYOffset = th-h;
|
H A D | SurfaceFlinger.cpp | 1632 GLint th = (2 << (31 - clz(hw_h))); 1634 tw, th, 0, GL_RGB, GL_UNSIGNED_BYTE, 0); 1636 v = GLfloat(hw_h) / th;
|
/frameworks/base/cmds/bootanimation/ |
H A D | BootAnimation.cpp | 162 int th = 1 << (31 - __builtin_clz(h)); local 164 if (th < h) th <<= 1; 168 if (tw != w || th != h) { 169 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, tw, th, 0, GL_RGBA, 174 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, tw, th, 0, GL_RGBA, 180 if (tw != w || th != h) { 181 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, tw, th, 0, GL_RGB, 186 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, tw, th, 0, GL_RGB,
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
H A D | StatusBarIconView.java | 188 final int th = r.bottom - r.top; 195 int dh = r.top + th + r.bottom; 199 mNumberY = h-r.bottom-((dh-r.top-th-r.bottom)/2);
|
/frameworks/base/opengl/libagl/ |
H A D | texture.cpp | 809 const GLuint th = textureObject->surface.height; local 810 if ((uint32_t(s0+x+w) > tw) || (uint32_t(t0+y+h) > th)) {
|
Completed in 252 milliseconds