/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
querymatrix.c | 116 } modes[] = { local 134 for (i = 0; i < sizeof(modes)/sizeof(modes[0]); i++) { 135 if (modes[i].currentMode == currentMode) { 136 desiredMatrix = modes[i].desiredMatrix;
|
/external/mesa3d/src/mesa/main/ |
querymatrix.c | 116 } modes[] = { local 134 for (i = 0; i < sizeof(modes)/sizeof(modes[0]); i++) { 135 if (modes[i].currentMode == currentMode) { 136 desiredMatrix = modes[i].desiredMatrix;
|
/external/qemu/distrib/sdl-1.2.15/src/video/photon/ |
SDL_ph_modes.c | 29 /* The current list of available video modes */ 79 if (PgGetVideoModeInfo(mode_list.modes[i], &mode_info) < 0) 81 SDL_SetError("ph_ListModes(): PgGetVideoModeInfo() function failed on mode: 0x%X.\n", mode_list.modes[i]); 135 if (PgGetVideoModeInfo(mode_list.modes[i], &mode_info) < 0) 143 return mode_list.modes[i]; 151 closestmode=mode_list.modes[i]; 162 return (i == mode_list.num_modes) ? 0 : mode_list.modes[i]; 176 SDL_qsort(mode_list.modes, mode_list.num_modes, sizeof(unsigned short), compare_modes_by_res); 180 if (PgGetVideoModeInfo(mode_list.modes[i], &mode_info) < 0) 196 return mode_list.modes[closest] [all...] |
/external/chromium_org/third_party/mesa/src/src/glx/ |
vertarr.c | 137 static const modes[14][4] = { local 184 offsets[i] = (modes[idx][i].count != 0) ? size : -1; 185 size += modes[idx][i].size; 194 __indirect_glTexCoordPointer(modes[idx][0].count, GL_FLOAT, 199 __indirect_glColorPointer(modes[idx][1].count, modes[idx][1].type, 209 __indirect_glVertexPointer(modes[idx][3].count, GL_FLOAT,
|
dri_common.h | 51 struct glx_config * modes,
|
/external/chromium_org/third_party/skia/src/effects/ |
SkMergeImageFilter.cpp | 29 void SkMergeImageFilter::initModes(const SkXfermode::Mode modes[]) { 30 if (modes) { 34 fModes[i] = SkToU8(modes[i]); 44 SkXfermode::Mode modes[] = { mode, mode }; local 45 this->initModes(modes); 52 const SkXfermode::Mode modes[]) : INHERITED(count, filters) { 53 this->initModes(modes);
|
/external/chromium_org/v8/tools/testrunner/network/ |
perfdata.py | 107 modes = self.stores[arch] 108 for mode in modes: 109 store = modes[mode] 117 modes = self.stores[arch] 118 if not mode in modes: 119 modes[mode] = PerfDataStore(self.datadir, arch, mode) 120 return modes[mode]
|
/external/mesa3d/src/glx/ |
vertarr.c | 137 static const modes[14][4] = { local 184 offsets[i] = (modes[idx][i].count != 0) ? size : -1; 185 size += modes[idx][i].size; 194 __indirect_glTexCoordPointer(modes[idx][0].count, GL_FLOAT, 199 __indirect_glColorPointer(modes[idx][1].count, modes[idx][1].type, 209 __indirect_glVertexPointer(modes[idx][3].count, GL_FLOAT,
|
dri_common.h | 51 struct glx_config * modes,
|
/external/skia/src/effects/ |
SkMergeImageFilter.cpp | 29 void SkMergeImageFilter::initModes(const SkXfermode::Mode modes[]) { 30 if (modes) { 34 fModes[i] = SkToU8(modes[i]); 44 SkXfermode::Mode modes[] = { mode, mode }; local 45 this->initModes(modes); 52 const SkXfermode::Mode modes[]) : INHERITED(count, filters) { 53 this->initModes(modes);
|
/external/qemu/distrib/sdl-1.2.15/src/video/x11/ |
SDL_x11modes.c | 123 SDL_NAME(XF86VidModeModeInfo) **modes; 129 SDL_NAME(XF86VidModeGetAllModeLines)(SDL_Display,SDL_Screen,&nmodes,&modes) ) { 131 if ( (modes[i]->hdisplay == width) && 132 (modes[i]->vdisplay == height) ) { 136 if ( modes[i]->hdisplay >= width && 137 modes[i]->vdisplay >= height ) { 139 (modes[i]->hdisplay < modes[best]->hdisplay && 140 modes[i]->vdisplay <= modes[best]->vdisplay) | [all...] |
/external/jmonkeyengine/engine/src/desktop/com/jme3/app/ |
SettingsDialog.java | 76 // Array of supported display modes 77 private DisplayMode[] modes = null; field in class:SettingsDialog 158 modes = device.getDisplayModes(); 159 Arrays.sort(modes, new DisplayModeSorter()); 455 * <code>setUpChooser</code> retrieves all available display modes and 459 * @return the combo box of display modes. 462 String[] res = getResolutions(modes); 485 String modes[] = {"NULL", "JOGL-OpenGL1", "LWJGL-OpenGL2", "LWJGL-OpenGL3", "LWJGL-OpenGL3.1"}; local 486 JComboBox nameBox = new JComboBox(modes); 511 String[] depths = getDepths(resolution, modes); [all...] |
/external/chromium_org/chrome/browser/ |
fullscreen_win.cc | 96 DWORD modes = 0; 97 ::GetConsoleDisplayMode(&modes); 100 return (modes & (CONSOLE_FULLSCREEN | CONSOLE_FULLSCREEN_HARDWARE)) != 0;
|
/external/chromium_org/third_party/skia/include/effects/ |
SkMergeImageFilter.h | 20 const SkXfermode::Mode modes[] = NULL); 37 // of the modes (unless the count is so large we can't fit).
|
/external/libppp/src/ |
defs.c | 97 } modes[] = { variable in typeref:struct:__anon22809 114 for (m = 0; modes[m].mode; m++) 115 if (modes[m].mode == mode) 116 return modes[m].name; 128 for (m = 0; modes[m].mode; m++) 129 if (!strncasecmp(name, modes[m].name, len)) { 130 if (modes[m].name[len] == '\0') 131 return modes[m].mode; 137 return got == -1 ? 0 : modes[got].mode;
|
/external/skia/include/effects/ |
SkMergeImageFilter.h | 20 const SkXfermode::Mode modes[] = NULL); 37 // of the modes (unless the count is so large we can't fit).
|
/external/chromium_org/third_party/opus/src/ |
celt_headers.mk | 22 celt/modes.h \
|
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/ |
CipherPBEThread.java | 30 CipherPBEThread(String name, int[] keys, String[] modes, String[] paddings) { 31 super(name, keys, modes, paddings);
|
CipherRSAThread.java | 26 CipherRSAThread(String name, int[] keys, String[] modes, String[] paddings) { 27 super(name, keys, modes, paddings);
|
CipherWrapThread.java | 26 CipherWrapThread(String name, int[] keys, String[] modes, String[] paddings) { 27 super(name, keys, modes, paddings);
|
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/ |
SDL_sysvideo.cc | 243 /* Allocate the new list of modes, and fill in the new mode */ 262 display_mode *modes; local 288 /* Get the video modes we can switch to in fullscreen mode */ 289 bscreen.GetModeList(&modes, &nmodes); 290 SDL_qsort(modes, nmodes, sizeof *modes, CompareModes); 292 bpp = ColorSpaceToBitsPerPixel(modes[i].space); 294 if ( modes[i].space == saved_mode.space ) { 296 modes[i].virtual_width, 297 modes[i].virtual_height) 327 SDL_Rect **modes; local 351 SDL_Rect **modes; local [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/Xext/Xxf86dga/ |
XF86DGA2.c | 295 SDL_NAME(XDGAMode) *modes = NULL; 315 modes = (SDL_NAME(XDGAMode)*)Xmalloc((rep.number * sizeof(SDL_NAME(XDGAMode))) + size); 316 offset = (char*)(&modes[rep.number]); /* start of text */ 319 if(modes) { 323 modes[i].num = info.num; 324 modes[i].verticalRefresh = 326 modes[i].flags = info.flags; 327 modes[i].imageWidth = info.image_width; 328 modes[i].imageHeight = info.image_height; 329 modes[i].pixmapWidth = info.pixmap_width [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/dga/ |
SDL_dgavideo.c | 200 /* Allocate the new list of modes, and fill in the new mode */ 336 SDL_NAME(XDGAMode) *modes; 412 /* Query for the list of available video modes */ 413 modes = SDL_NAME(XDGAQueryModes)(DGA_Display, DGA_Screen, &num_modes); 414 SDL_qsort(modes, num_modes, sizeof *modes, cmpmodes); 416 if ( ((modes[i].visualClass == PseudoColor) || 417 (modes[i].visualClass == DirectColor) || 418 (modes[i].visualClass == TrueColor)) && 419 !(modes[i].flags & (XDGAInterlaced|XDGADoublescan)) ) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_gdbm.py | 46 # Test the flag parameter open() by trying all supported flag modes. 49 modes = all - set('fsu') 50 for mode in sorted(modes): 56 for mode in modes:
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_gdbm.py | 46 # Test the flag parameter open() by trying all supported flag modes. 49 modes = all - set('fsu') 50 for mode in sorted(modes): 56 for mode in modes:
|