HomeSort by relevance Sort by last modified time
    Searched defs:mode (Results 251 - 275 of 3517) sorted by null

<<11121314151617181920>>

  /external/speex/include/speex/
speex_header.h 65 spx_int32_t mode; /**< Mode used (0 for narrowband, 1 for wideband) */ member in struct:SpeexHeader
  /external/squashfs-tools/squashfs-tools/
pseudo.h 28 unsigned int mode; member in struct:pseudo_dev
  /external/strace/
stat.h 39 unsigned long long mode; member in struct:strace_stat
  /external/swiftshader/third_party/LLVM/lib/Archive/
ArchiveInternals.h 50 char mode[8]; ///< file mode in ASCII octal member in class:llvm::ArchiveMemberHeader
63 memset(mode,' ',8);
  /external/syslinux/com32/mboot/
initvesa.c 32 * Query the VESA BIOS and select a 640x480x32 mode with local mapping
52 uint16_t mode, bestmode, *mode_ptr; local
91 /* Search for a suitable mode with a suitable color and memory model... */
100 while ((mode = *mode_ptr++) != 0xFFFF) {
101 mode &= 0x1FF; /* The rest are attributes of sorts */
105 rm.eax.w[0] = 0x4F01; /* Get SVGA mode information */
106 rm.ecx.w[0] = mode;
111 /* Must be a supported mode */
115 /* Must be an LFB color graphics mode supported by the hardware.
119 4 - graphics mode
    [all...]
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
mirror_pad_op.cc 52 MirrorPadMode mode; variable
53 OP_REQUIRES_OK(ctx, GetNodeAttr(def(), "mode", &mode));
54 OP_REQUIRES(ctx, mode == MirrorPadMode::REFLECT,
56 "Only REFLECT MirrorPad mode is currently supported"));
  /external/toybox/toys/other/
makedevs.c 21 <name> <type> <mode> <uid> <gid> <major> <minor> <start> <increment> <count>
57 unsigned int mode = 0755, major = 0, minor = 0, cnt = 0, incr = 0, local
71 sscanf(ptr, "%c %o %63s %63s %u %u %u %u %u", &type, &mode,
79 } else mode |= (mode_t[]){S_IFIFO, S_IFCHR, S_IFBLK, 0, 0}[i];
93 if (mkpathat(AT_FDCWD, ptr, mode, 3)) {
102 } else if (mknod(ptr, mode, dev_makedev(major, minor + i*incr))) {
107 if (chown(ptr, uid, gid) || chmod(ptr, mode))
  /external/v8/src/builtins/
builtins-error.cc 21 FrameSkipMode mode = SKIP_FIRST; local
28 mode = SKIP_UNTIL_SEEN;
35 args.atOrUndefined(isolate, 1), mode,
49 FrameSkipMode mode = caller->IsJSFunction() ? SKIP_UNTIL_SEEN : SKIP_FIRST; local
59 isolate->CaptureSimpleStackTrace(object, mode, caller);
  /external/valgrind/include/
pub_tool_libcfile.h 59 UInt mode; member in struct:vg_stat
74 extern SysRes VG_(mknod) ( const HChar* pathname, Int mode, UWord dev );
75 extern SysRes VG_(open) ( const HChar* pathname, Int flags, Int mode );
78 extern Int VG_(fd_open) (const HChar* pathname, Int flags, Int mode);
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/test/
iLBC_testLib.c 44 int len_int, mode; local
64 fprintf(stderr, "%s mode inputfile bytefile outputfile channelfile\n",
70 mode=atoi(argv[1]);
71 if (mode != 20 && mode != 30) {
72 fprintf(stderr,"Wrong mode %s, must be 20, or 30\n", argv[1]);
103 fprintf(stderr,"\n10ms split with raw mode: %2d ms\n", mode);
105 fprintf(stderr,"\nMode : %2d ms\n", mode);
125 WebRtcIlbcfix_EncoderInit(Enc_Inst, mode);
    [all...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerDrm.h 99 CryptoPlugin::Mode mode; member in struct:android::NuPlayerDrm::CryptoInfo
108 CryptoPlugin::Mode mode,
  /frameworks/base/core/tests/coretests/src/com/android/internal/widget/
ActionBarContainerTest.java 43 ActionMode mode = mActionBarContainer.startActionModeForChild( local
46 assertNull(mode);
51 mode = mActionBarContainer.startActionModeForChild(null, null);
53 assertNull(mode);
  /frameworks/base/libs/hwui/utils/
PaintUtils.h 50 SkBlendMode mode = paint->getBlendMode(); local
51 return mode == SkBlendMode::kSrcOver || mode == SkBlendMode::kSrc;
  /frameworks/base/services/core/java/com/android/server/am/
CompatModeDialog.java 82 int mode = mService.mCompatModePackages.computeCompatModeLocked(mAppInfo); local
83 mCompatEnabled.setChecked(mode == ActivityManager.COMPAT_MODE_ENABLED);
  /frameworks/base/services/core/java/com/android/server/net/
NetworkStatsAccess.java 177 final int mode = appOps.noteOp(AppOpsManager.OP_GET_USAGE_STATS, local
179 if (mode == AppOpsManager.MODE_DEFAULT) {
186 return (mode == AppOpsManager.MODE_ALLOWED);
  /frameworks/base/services/core/java/com/android/server/power/
PowerManagerShellCommand.java 44 case "set-mode":
57 int mode = -1; local
59 mode = Integer.parseInt(getNextArgRequired());
64 mInterface.setPowerSaveMode(mode == LOW_POWER_MODE_ON);
75 pw.println(" set-mode MODE");
76 pw.println(" sets the power mode of the device to MODE.");
77 pw.println(" 1 turns low power mode on and 0 turns low power mode off.")
    [all...]
  /frameworks/base/tests/JankBench/scripts/external/
statistics.py 35 mode Mode (most common value) of data.
98 'mean', 'mode',
451 def mode(data): function
454 ``mode`` assumes discrete data, and returns a single value. This is the
455 standard treatment of the mode as commonly taught in schools:
457 >>> mode([1, 1, 2, 3, 3, 3, 3, 4])
462 >>> mode(["red", "blue", "blue", "red", "green", "red", "red"])
465 If there is not exactly one most common value, ``mode`` will raise
474 'no unique mode; found %d equally common values' % len(table
    [all...]
  /frameworks/base/tools/aapt2/io/
FileStream.cpp 42 int mode = O_RDONLY | O_CLOEXEC | O_BINARY; local
43 fd_.reset(TEMP_FAILURE_RETRY(::android::base::utf8::open(path.c_str(), mode)));
113 int mode = O_WRONLY | O_CREAT | O_TRUNC | O_CLOEXEC | O_BINARY; local
114 owned_fd_.reset(TEMP_FAILURE_RETRY(::android::base::utf8::open(path.c_str(), mode, 0666)));
  /hardware/broadcom/libbt/src/
bt_vendor_brcm.c 110 ALOGW("** Warning - BT Vendor Lib is loaded in debug tuning mode!");
210 uint8_t *mode = (uint8_t *) param; local
211 retval = hw_lpm_enable(*mode);
  /packages/apps/Contacts/src/com/android/contacts/util/
PermissionsUtil.java 63 final int mode = appOpsManager.checkOpNoThrow(appOp, Process.myUid(), local
65 return mode == AppOpsManager.MODE_ALLOWED;
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
ControlPanelLayout.java 28 * the shutter button, thumbnail, front/back camera picker, and mode picker.
44 int mode, longSideSize, shortSideSize, specSize; local
50 mode = MeasureSpec.getMode(widthSpec);
55 mode = MeasureSpec.getMode(heightSpec);
61 if (widthSpecSize > 0 && heightSpecSize > 0 && mode == MeasureSpec.AT_MOST) {
76 if (mode == MeasureSpec.AT_MOST && measuredSize > specSize) {
  /packages/apps/Settings/src/com/android/settings/development/
DarkUIPreferenceController.java 63 int mode = mUiModeManager.getNightMode(); local
64 ((ListPreference) preference).setValue(modeToString(mode));
65 preference.setSummary(modeToDescription(mode));
68 private String modeToDescription(int mode) {
70 switch (mode) {
82 private String modeToString(int mode) {
83 switch (mode) {
95 private int modeToInt(String mode) {
96 switch (mode) {
GlobalSettingSwitchPreferenceController.java 67 final int mode = local
69 ((SwitchPreference) mPreference).setChecked(mode != mOff);
KeepActivitiesPreferenceController.java 68 final int mode = Settings.Global.getInt(mContext.getContentResolver(), local
70 ((SwitchPreference) mPreference).setChecked(mode != SETTING_VALUE_OFF);
SecureSettingSwitchPreferenceController.java 54 final int mode = Settings.Secure.getInt( local
56 ((SwitchPreference) mPreference).setChecked(mode != SETTING_VALUE_OFF);

Completed in 468 milliseconds

<<11121314151617181920>>