HomeSort by relevance Sort by last modified time
    Searched refs:modes (Results 201 - 225 of 348) sorted by null

1 2 3 4 5 6 7 891011>>

  /libcore/support/src/test/java/libcore/java/security/
StandardNames.java 114 Set<String> modes = CIPHER_MODES.get(algorithm); local
115 if (modes == null) {
116 modes = new HashSet<String>();
117 CIPHER_MODES.put(algorithm, modes);
119 modes.addAll(Arrays.asList(newModes));
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/x11/
native_dri2.c 653 const __GLcontextModes *modes; local
656 modes = x11_screen_get_glx_configs(dri2dpy->xscr);
657 if (!modes)
659 num_modes = x11_context_modes_count(modes);
669 if (dri2_display_convert_config(&dri2dpy->base, modes, nconf)) {
679 modes = modes->next;
  /external/mesa3d/src/gallium/state_trackers/egl/x11/
native_dri2.c 653 const __GLcontextModes *modes; local
656 modes = x11_screen_get_glx_configs(dri2dpy->xscr);
657 if (!modes)
659 num_modes = x11_context_modes_count(modes);
669 if (dri2_display_convert_config(&dri2dpy->base, modes, nconf)) {
679 modes = modes->next;
  /frameworks/av/media/libstagefright/wifi-display/source/
WifiDisplaySource.cpp 764 static void GetAudioModes(const char *s, const char *prefix, uint32_t *modes) {
765 *modes = 0;
772 if (sscanf(&s[prefixLen + 1], "%08x %02x", modes, &latency) != 2) {
773 *modes = 0;
899 uint32_t modes; local
900 GetAudioModes(value.c_str(), "AAC", &modes);
902 bool supportsAAC = (modes & 1) != 0; // AAC 2ch 48kHz
904 GetAudioModes(value.c_str(), "LPCM", &modes);
906 bool supportsPCM = (modes & 2) != 0; // LPCM 2ch 48kHz
    [all...]
  /external/chromium_org/chrome/browser/chromeos/policy/
device_cloud_policy_manager_chromeos_unittest.cc 271 DeviceCloudPolicyManagerChromeOS::AllowedDeviceModes modes; local
272 modes[DEVICE_MODE_ENTERPRISE] = true;
274 "auth token", is_auto_enrollment_, modes,
  /external/chromium_org/third_party/libwebp/enc/
analysis.c 225 // susceptibility and set best modes for this macroblock.
228 // Number of modes to inspect for alpha_ evaluation. For high-quality settings
229 // (method >= FAST_ANALYSIS_METHOD) we don't need to test all the possible modes
264 uint8_t modes[16]; local
289 modes[it->i4_] = mode;
300 VP8SetIntra4Mode(it, modes);
375 // final except for fast-encode settings. We can also pick some intra4 modes
  /external/webp/src/enc/
analysis.c 225 // susceptibility and set best modes for this macroblock.
228 // Number of modes to inspect for alpha_ evaluation. For high-quality settings
229 // (method >= FAST_ANALYSIS_METHOD) we don't need to test all the possible modes
264 uint8_t modes[16]; local
289 modes[it->i4_] = mode;
300 VP8SetIntra4Mode(it, modes);
375 // final except for fast-encode settings. We can also pick some intra4 modes
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/fov/
PhotoCaptureActivity.java 454 List<String> modes = camera.getParameters().getSupportedFocusModes(); local
455 if (modes != null) {
456 if (modes.contains(Camera.Parameters.FOCUS_MODE_INFINITY)) {
460 if (modes.contains(Camera.Parameters.FOCUS_MODE_FIXED)) {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
CFBBlockCipher.java 1 package org.bouncycastle.crypto.modes;
CTSBlockCipher.java 1 package org.bouncycastle.crypto.modes;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/gcm/
GCMUtil.java 1 package org.bouncycastle.crypto.modes.gcm;
  /external/chromium_org/third_party/mesa/src/src/glx/
pixel.c 78 ** Copy bitmap data from clients packed memory applying unpacking modes as the
79 ** data is transfered into the destImage buffer. Return in modes the
80 ** set of pixel modes that are to be done by the server.
159 ** Extract array from user's data applying all pixel store modes.
166 const GLvoid * userdata, GLubyte * newimage, GLubyte * modes)
255 /* Setup store modes that describe what we just did */
256 if (modes) {
258 (void) memcpy(modes, __glXDefaultPixelStore + 4, 20);
261 (void) memcpy(modes, __glXDefaultPixelStore + 0, 36);
268 ** into the clients memory using the pixel store PACK modes
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/modes/
modes_lcl.h 8 #include <openssl/modes.h>
  /external/libvorbis/lib/
synthesis.c 154 int v=ci->modes;
info.c 166 for(i=0;i<ci->modes;i++)
270 /* all of the real encoding details are here. The modes, books,
326 ci->modes=oggpack_read(opb,6)+1;
327 if(ci->modes<=0)goto err_out;
328 for(i=0;i<ci->modes;i++){
532 /* modes */
533 oggpack_write(opb,ci->modes-1,6);
534 for(i=0;i<ci->modes;i++){
613 /* third header packet (modes/codebooks) ****************************/
  /external/mesa3d/src/glx/
pixel.c 78 ** Copy bitmap data from clients packed memory applying unpacking modes as the
79 ** data is transfered into the destImage buffer. Return in modes the
80 ** set of pixel modes that are to be done by the server.
159 ** Extract array from user's data applying all pixel store modes.
166 const GLvoid * userdata, GLubyte * newimage, GLubyte * modes)
255 /* Setup store modes that describe what we just did */
256 if (modes) {
258 (void) memcpy(modes, __glXDefaultPixelStore + 4, 20);
261 (void) memcpy(modes, __glXDefaultPixelStore + 0, 36);
268 ** into the clients memory using the pixel store PACK modes
    [all...]
  /external/openssl/crypto/modes/
modes_lcl.h 8 #include <openssl/modes.h>
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
JCEStreamCipher.java 48 import org.bouncycastle.crypto.modes.CFBBlockCipher;
49 import org.bouncycastle.crypto.modes.OFBBlockCipher;
  /external/chromium_org/third_party/mesa/src/src/egl/main/
eglapi.h 84 typedef EGLBoolean (*ChooseModeMESA_t)(_EGLDriver *drv, _EGLDisplay *dpy, _EGLScreen *screen, const EGLint *attrib_list, EGLModeMESA *modes, EGLint modes_size, EGLint *num_modes);
85 typedef EGLBoolean (*GetModesMESA_t)(_EGLDriver *drv, _EGLDisplay *dpy, _EGLScreen *screen, EGLModeMESA *modes, EGLint mode_size, EGLint *num_mode);
  /external/mesa3d/src/egl/main/
eglapi.h 84 typedef EGLBoolean (*ChooseModeMESA_t)(_EGLDriver *drv, _EGLDisplay *dpy, _EGLScreen *screen, const EGLint *attrib_list, EGLModeMESA *modes, EGLint modes_size, EGLint *num_modes);
85 typedef EGLBoolean (*GetModesMESA_t)(_EGLDriver *drv, _EGLDisplay *dpy, _EGLScreen *screen, EGLModeMESA *modes, EGLint mode_size, EGLint *num_mode);
  /ndk/build/core/
setup-abi.mk 47 # everything when you switch between these two modes. For projects
  /ndk/tests/build/build-mode/jni/
Android.mk 6 # To check for thumb/arm build modes, either with the .arm extension
  /external/blktrace/btt/
output.c 367 long long *lp = mp->modes;
409 median, nmodes > 0 ? m.modes[0] : 0, m.most_seeks);
414 fprintf(ofp, " %lld", m.modes[i]);
424 nmodes > 0 ? m.modes[0] : 0, m.most_seeks);
426 fprintf(xavgs_ofp, " %lld", m.modes[i]);
434 free(m.modes);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_pyio.py 63 modes are:
82 Python distinguishes between files opened in binary and text modes,
146 modes, it returns a BufferedWriter, and in read/write mode, it returns
164 modes = set(mode)
165 if modes - set("arwb+tU") or len(mode) > len(modes):
167 reading = "r" in modes
168 writing = "w" in modes
169 appending = "a" in modes
170 updating = "+" in modes
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_pyio.py 63 modes are:
82 Python distinguishes between files opened in binary and text modes,
146 modes, it returns a BufferedWriter, and in read/write mode, it returns
164 modes = set(mode)
165 if modes - set("arwb+tU") or len(mode) > len(modes):
167 reading = "r" in modes
168 writing = "w" in modes
169 appending = "a" in modes
170 updating = "+" in modes
    [all...]

Completed in 1387 milliseconds

1 2 3 4 5 6 7 891011>>