/external/kernel-headers/original/linux/ |
percpu_counter.h | 29 static inline void percpu_counter_init(struct percpu_counter *fbc, s64 amount) 31 spin_lock_init(&fbc->lock); 32 fbc->count = amount; 33 fbc->counters = alloc_percpu(s32); 36 static inline void percpu_counter_destroy(struct percpu_counter *fbc) 38 free_percpu(fbc->counters); 41 void percpu_counter_mod(struct percpu_counter *fbc, s32 amount); 42 s64 percpu_counter_sum(struct percpu_counter *fbc); 44 static inline s64 percpu_counter_read(struct percpu_counter *fbc) 46 return fbc->count [all...] |
/external/chromium_org/third_party/mesa/src/src/glx/tests/ |
create_context_unittest.cpp | 129 struct glx_config fbc; member in class:glXCreateContextAttribARB_test 143 memset(&this->fbc, 0, sizeof(this->fbc)); 144 this->fbc.fbconfigID = 0xbeefcafe; 166 glXCreateContextAttribsARB(NULL, (GLXFBConfig) &this->fbc, 0, 188 glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0, 202 glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0, 210 glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0, 218 glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0, 227 glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0 [all...] |
/external/mesa3d/src/glx/tests/ |
create_context_unittest.cpp | 129 struct glx_config fbc; member in class:glXCreateContextAttribARB_test 143 memset(&this->fbc, 0, sizeof(this->fbc)); 144 this->fbc.fbconfigID = 0xbeefcafe; 166 glXCreateContextAttribsARB(NULL, (GLXFBConfig) &this->fbc, 0, 188 glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0, 202 glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0, 210 glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0, 218 glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0, 227 glXCreateContextAttribsARB(this->dpy, (GLXFBConfig) &this->fbc, 0 [all...] |
/external/chromium_org/third_party/skia/src/gpu/gl/unix/ |
SkNativeGLContext_unix.cpp | 88 GLXFBConfig *fbc = glXChooseFBConfig(fDisplay, DefaultScreen(fDisplay), local 90 if (!fbc) { 103 XVisualInfo *vi = glXGetVisualFromFBConfig(fDisplay, fbc[i]); 106 glXGetFBConfigAttrib(fDisplay, fbc[i], GLX_SAMPLE_BUFFERS, &samp_buf); 107 glXGetFBConfigAttrib(fDisplay, fbc[i], GLX_SAMPLES, &samples); 119 GLXFBConfig bestFbc = fbc[best_fbc]; 122 XFree(fbc);
|
/external/skia/src/gpu/gl/unix/ |
SkNativeGLContext_unix.cpp | 88 GLXFBConfig *fbc = glXChooseFBConfig(fDisplay, DefaultScreen(fDisplay), local 90 if (!fbc) { 103 XVisualInfo *vi = glXGetVisualFromFBConfig(fDisplay, fbc[i]); 106 glXGetFBConfigAttrib(fDisplay, fbc[i], GLX_SAMPLE_BUFFERS, &samp_buf); 107 glXGetFBConfigAttrib(fDisplay, fbc[i], GLX_SAMPLES, &samples); 119 GLXFBConfig bestFbc = fbc[best_fbc]; 122 XFree(fbc);
|
/external/qemu/hw/ |
goldfish_fb.c | 184 const FbConfig* fbc = &fb_configs[nn]; local 185 if (pf->bits_per_pixel == fbc->bits && 186 pf->bytes_per_pixel == fbc->bytes && 187 pf->rmask == fbc->rmask && 188 pf->gmask == fbc->gmask && 189 pf->bmask == fbc->bmask && 190 pf->amask == fbc->amask) { 192 s->pixel_format = fbc->pixel_format;
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.pde.core_3.6.1.v20100902_r361.jar | |