HomeSort by relevance Sort by last modified time
    Searched refs:fb (Results 26 - 50 of 132) sorted by null

12 3 4 5 6

  /frameworks/compile/libbcc/runtime/lib/
floattidf.c 78 double_bits fb; local
79 fb.u.s.high = ((su_int)s & 0x80000000) | /* sign */
82 fb.u.s.low = (su_int)a; /* mantissa-low */
83 return fb.f;
floattixf.c 80 long_double_bits fb; local
81 fb.u.high.s.low = ((su_int)s & 0x8000) | /* sign */
83 fb.u.low.all = (du_int)a; /* mantissa */
84 return fb.f;
floatuntidf.c 76 double_bits fb; local
77 fb.u.s.high = ((e + 1023) << 20) | /* exponent */
79 fb.u.s.low = (su_int)a; /* mantissa-low */
80 return fb.f;
floatuntixf.c 78 long_double_bits fb; local
79 fb.u.high.s.low = (e + 16383); /* exponent */
80 fb.u.low.all = (du_int)a; /* mantissa */
81 return fb.f;
floatdisf.c 74 float_bits fb; local
75 fb.u = ((su_int)s & 0x80000000) | /* sign */
78 return fb.f;
floattisf.c 78 float_bits fb; local
79 fb.u = ((su_int)s & 0x80000000) | /* sign */
82 return fb.f;
floatuntisf.c 76 float_bits fb; local
77 fb.u = ((e + 127) << 23) | /* exponent */
79 return fb.f;
floatdidf.c 100 double_bits fb; local
101 fb.u.high = ((su_int)s & 0x80000000) | /* sign */
104 fb.u.low = (su_int)a; /* mantissa-low */
105 return fb.f;
floatundidf.c 101 double_bits fb; local
102 fb.u.high = ((e + 1023) << 20) | /* exponent */
104 fb.u.low = (su_int)a; /* mantissa-low */
105 return fb.f;
  /libcore/luni/src/test/java/libcore/java/nio/
OldAndroidNIOTest.java 67 FloatBuffer fb = FloatBuffer.wrap(floatArray); local
68 floatBufferTest(fb);
379 FloatBuffer fb = bb.asFloatBuffer(); local
381 checkBuffer(fb);
382 assertEquals(1, fb.capacity());
383 assertEquals(0xA4A3A2A1, Float.floatToRawIntBits(fb.get()));
386 fb = bb.asFloatBuffer();
388 checkBuffer(fb);
389 assertEquals(1, fb.capacity());
390 assertEquals(0xA1A2A3A4, Float.floatToRawIntBits(fb.get()))
    [all...]
  /external/webkit/Source/WebKit/win/Interfaces/
IWebSerializedJSValuePrivate.idl 38 uuid(F695AF5F-35FE-44fb-9EC6-23ABCAC8C515),
  /system/core/libpixelflinger/codeflinger/
blending.cpp 85 // fb: extracted dst
119 // see if we need to extract 'component' from the destination (fb)
120 integer_t fb; local
122 fb.setTo(scratches.obtain(), 32);
123 extract(fb, pixel, component);
126 // expand fb -or- fragment to the larger of the two
127 if (fb.size() < temp.size()) {
128 // for now we expand 'fb' to min(fragment, 8)
130 expand(fb, fb, new_size)
    [all...]
  /development/tools/emulator/opengl/host/libs/libOpenglRender/
WindowSurface.cpp 61 FrameBuffer *fb = FrameBuffer::getFB(); local
62 const FrameBufferCaps &caps = fb->getCaps();
159 FrameBuffer *fb = FrameBuffer::getFB(); local
160 if (!s_egl.eglMakeCurrent(fb->getDisplay(), m_eglSurface,
168 s_egl.eglMakeCurrent(fb->getDisplay(), prevDrawSurf,
182 FrameBuffer *fb = FrameBuffer::getFB(); local
193 s_egl.eglMakeCurrent(fb->getDisplay(), EGL_NO_SURFACE,
201 s_egl.eglDestroySurface(fb->getDisplay(), m_eglSurface);
205 const FrameBufferCaps &caps = fb->getCaps();
217 m_eglSurface = s_egl.eglCreatePbufferSurface(fb->getDisplay()
    [all...]
FBConfig.h 32 static InitConfigStatus initConfigList(FrameBuffer *fb);
37 static int chooseConfig(FrameBuffer *fb, EGLint * attribs, uint32_t * configs, uint32_t configs_size);
ColorBuffer.cpp 29 FrameBuffer *fb = FrameBuffer::getFB(); local
50 if (!fb->bind_locked()) {
94 if (fb->getCaps().has_eglimage_texture_2d) {
95 cb->m_eglImage = s_egl.eglCreateImageKHR(fb->getDisplay(),
101 cb->m_blitEGLImage = s_egl.eglCreateImageKHR(fb->getDisplay(),
108 fb->unbind_locked();
135 FrameBuffer *fb = FrameBuffer::getFB(); local
136 fb->bind_locked();
139 s_egl.eglDestroyImageKHR(fb->getDisplay(), m_eglImage);
144 fb->unbind_locked()
149 FrameBuffer *fb = FrameBuffer::getFB(); local
195 FrameBuffer *fb = FrameBuffer::getFB(); local
    [all...]
render_api.cpp 249 FrameBuffer *fb = FrameBuffer::getFB(); local
250 if (fb) {
251 fb->setDisplayRotation(zRot);
266 FrameBuffer *fb = FrameBuffer::getFB(); local
267 if (fb) {
268 fb->repost();
  /external/clang/test/Analysis/
CGColorSpace.c 14 void fb() { function
  /system/extras/tests/framebuffer/
Android.mk 10 LOCAL_MODULE:= test-fb-refresh
20 LOCAL_MODULE = test-fb-simple
fb_test.c 28 #include <linux/fb.h>
52 static int get_framebuffer(struct simple_fb *fb, unsigned bpp)
96 fb->width = vi.xres;
97 fb->height = vi.yres;
98 fb->stride = fi.line_length / bytes_per_pixel;
99 fb->data = bits;
100 fb->bpp = vi.bits_per_pixel;
102 fb++;
104 fb->width = vi.xres;
105 fb->height = vi.yres
    [all...]
  /external/qemu/android/protocol/
fb-updates-impl.c 23 #include "android/protocol/fb-updates.h"
24 #include "android/protocol/fb-updates-impl.h"
39 QFrameBuffer* fb; member in struct:FrameBufferImpl
75 * fb - Framebuffer where to update the rectangle.
82 _update_rect(QFrameBuffer* fb, uint16_t x, uint16_t y, uint16_t w, uint16_t h,
85 if (fb != NULL) {
89 uint8_t* dst = (uint8_t*)fb->pixels + y * fb->pitch + x *
90 fb->bytes_per_pixel;
94 dst += fb->pitch
    [all...]
  /frameworks/base/cmds/screenshot/
screenshot.c 8 #include <linux/fb.h>
19 int fb; local
27 fb = fileno(fb_in);
28 if(fb < 0) {
32 fb_in = fdopen(fb, "r");
34 if(ioctl(fb, FBIOGET_VSCREENINFO, &vinfo) < 0) {
38 fcntl(fb, F_SETFD, FD_CLOEXEC);
  /bootable/recovery/minui/
graphics.c 28 #include <linux/fb.h>
67 static int get_framebuffer(GGLSurface *fb)
132 fb->version = sizeof(*fb);
133 fb->width = vi.xres;
134 fb->height = vi.yres;
135 fb->stride = fi.line_length/PIXEL_SIZE;
136 fb->data = bits;
137 fb->format = PIXEL_FORMAT;
138 memset(fb->data, 0, vi.yres * fi.line_length)
    [all...]
  /frameworks/base/libs/ui/
FramebufferNativeWindow.cpp 116 LOGE_IF(err, "fb buffer %d allocation failed w=%d, h=%d, err=%s",
181 framebuffer_device_t* fb = getSelf(window)->fbDev; local
182 return fb->setSwapInterval(fb, interval);
208 framebuffer_device_t* fb = self->fbDev; local
256 framebuffer_device_t* fb = self->fbDev; local
263 int res = fb->post(fb, handle);
278 framebuffer_device_t* fb = self->fbDev; local
281 *value = fb->width
    [all...]
  /frameworks/base/cmds/screencap/
screencap.cpp 22 #include <linux/fb.h>
142 int fb = open(fbpath, O_RDONLY); local
143 if (fb >= 0) {
145 if (ioctl(fb, FBIOGET_VSCREENINFO, &vinfo) == 0) {
153 mapbase = mmap(0, mapsize, PROT_READ, MAP_PRIVATE, fb, 0);
159 close(fb);
  /external/llvm/
copy-diff.py 18 fb = open(b, 'rb')
22 buff_b = fb.read(BUFFER_SIZE)
34 fb.close()

Completed in 223 milliseconds

12 3 4 5 6