Searched refs:mode (Results 1 - 25 of 4192) sorted by relevance

1234567891011>>

/external/valgrind/none/tests/s390x/
H A Drounding-5.c8 Rounding mode is provided via FPC. */
26 set_rounding_mode(unsigned mode) argument
28 printf("setting FPC rounding mode to %s\n", rtext(mode));
29 register unsigned r asm("1") = mode;
33 void cefbr(unsigned mode) argument
35 set_rounding_mode(mode);
43 void cegbr(unsigned mode) argument
45 set_rounding_mode(mode);
53 void cdgbr(unsigned mode) argument
66 int mode; local
[all...]
H A Dsrnmt.stdout.exp1 initial rounding mode = 0
2 rounding mode = 3
3 rounding mode = 2
4 rounding mode = 1
5 rounding mode = 0
6 rounding mode = 7
7 rounding mode = 6
8 rounding mode = 5
9 rounding mode = 4
H A Dsrnm.stdout.exp1 initial rounding mode = 0
2 rounding mode = 3
3 rounding mode = 2
4 rounding mode = 1
5 rounding mode = 0
6 rounding mode = 3
7 rounding mode = 2
8 rounding mode = 3
H A Dsrnmb.stdout.exp1 initial rounding mode = 0
2 rounding mode = 3
3 rounding mode = 2
4 rounding mode = 1
5 rounding mode = 0
6 rounding mode = 1
7 rounding mode = 0
/external/clang/test/CodeGen/
H A Dpr13168.c5 void PR_OpenFile(int mode) { argument
6 _open64(0, mode);
/external/strace/
H A Dprintmode.c41 print_symbolic_mode_t(const unsigned int mode) argument
45 if (mode & S_IFMT) {
46 ifmt = xlookup(modetypes, mode & S_IFMT);
48 tprintf("%#03o", mode);
58 (mode & S_ISUID) ? "S_ISUID|" : "",
59 (mode & S_ISGID) ? "S_ISGID|" : "",
60 (mode & S_ISVTX) ? "S_ISVTX|" : "",
61 mode & ~(S_IFMT|S_ISUID|S_ISGID|S_ISVTX));
65 print_numeric_umode_t(const unsigned short mode) argument
67 tprintf("%#03ho", mode);
71 print_numeric_long_umask(const unsigned long mode) argument
[all...]
/external/autotest/server/cros/ap_configurators/
H A Dnetgear1000_ap_configurator.py15 def set_mode(self, mode):
16 # The mode popup changes based on the security mode. Set to no
19 self.add_item_to_command_list(self._set_mode, (mode, ), 1, 800)
22 def _set_mode(self, mode):
23 if mode == ap_spec.MODE_G:
24 mode = 'Up to 54 Mbps'
25 elif mode == ap_spec.MODE_N:
26 mode = 'Up to 150 Mbps'
28 raise RuntimeError('Unsupported mode passe
[all...]
H A Dnetgear4500_ap_configurator.py16 def _set_mode(self, mode, band=None):
17 if mode == ap_spec.MODE_G or mode == ap_spec.MODE_A:
18 mode = 'Up to 54 Mbps'
19 elif mode == ap_spec.MODE_N:
20 mode = 'Up to 450 Mbps'
22 raise RuntimeError('Unsupported mode passed.')
27 self.select_item_from_popup_by_xpath(mode, xpath)
/external/ipsec-tools/src/racoon/contrib/
H A Dsp.pl6 $mode = 'transport';
8 $mode = $ARGV[2];
12 if ($mode eq 'transport') {
13 print STDERR "install esp transport mode: $src -> $dst\n";
16 } elsif ($mode eq 'delete') {
/external/libpng/tests/
H A Dpngvalid-gamma-alpha-mode2 exec ./pngvalid --strict --gamma-alpha-mode
H A Dpngvalid-gamma-expand16-alpha-mode2 exec ./pngvalid --strict --gamma-alpha-mode --expand16
/external/libmojo/base/android/
H A Dfifo_utils.cc14 bool CreateFIFO(const FilePath& path, int mode) { argument
16 return mkfifo(path.value().c_str(), mode) == 0 &&
17 chmod(path.value().c_str(), mode) == 0;
20 bool RedirectStream(FILE* stream, const FilePath& path, const char* mode) { argument
21 return freopen(path.value().c_str(), mode, stream) != NULL;
/external/python/cpython2/Lib/
H A Dtty.py19 """Put terminal into a raw mode."""
20 mode = tcgetattr(fd)
21 mode[IFLAG] = mode[IFLAG] & ~(BRKINT | ICRNL | INPCK | ISTRIP | IXON)
22 mode[OFLAG] = mode[OFLAG] & ~(OPOST)
23 mode[CFLAG] = mode[CFLAG] & ~(CSIZE | PARENB)
24 mode[CFLAG] = mode[CFLA
[all...]
H A Dstat.py19 # Extract bits from the mode
21 def S_IMODE(mode):
22 return mode & 07777
24 def S_IFMT(mode):
25 return mode & 0170000
40 def S_ISDIR(mode):
41 return S_IFMT(mode) == S_IFDIR
43 def S_ISCHR(mode):
44 return S_IFMT(mode) == S_IFCHR
46 def S_ISBLK(mode)
[all...]
/external/ltp/include/lapi/
H A Dmkdirat.h27 int mkdirat(int dirfd, const char *dirname, int mode) argument
29 return ltp_syscall(__NR_mkdirat, dirfd, dirname, mode);
/external/ltp/testcases/kernel/fs/doio/include/
H A Ddatabin.h9 * (void) databingen(mode, buffer, bsize, offset)
10 * int mode;
17 * of data of the form indicated by 'mode'.
40 void databingen( int mode, char *buffer, int bsize, int offset );
42 int databinchk( int mode, char *buffer, int bsize, int offset, char **errmsg);
/external/clang/test/SemaCXX/
H A Dattr-mode-tmpl.cpp9 // Check that non-vector 'mode' attribute is OK with enumeration types.
10 typedef T __attribute__((mode(QI))) T1;
11 typedef T T2 __attribute__((mode(HI)));
12 typedef T __attribute__((mode(V8SI))) T3; // expected-error{{mode 'V8SI' is not supported for enumeration types}}
13 // expected-warning@-1{{specifying vector types with the 'mode' attribute is deprecated}}
15 typedef enum __attribute__((mode(HI))) { A4, B4 } T4;
16 typedef enum { A5, B5 } __attribute__((mode(SI))) T5;
17 typedef enum __attribute__((mode(V2SI))) { A6, B6 } T6; // expected-error{{mode 'V2S
[all...]
/external/clang/test/Sema/
H A Dattr-mode-vector-types.c4 typedef int __attribute__((mode(byte))) __attribute__((vector_size(256))) vec_t1;
5 typedef int __attribute__((mode(QI))) __attribute__((vector_size(256))) vec_t2;
6 typedef int __attribute__((mode(SI))) __attribute__((vector_size(256))) vec_t3;
7 typedef int __attribute__((mode(DI))) __attribute__((vector_size(256)))vec_t4;
8 typedef float __attribute__((mode(SF))) __attribute__((vector_size(256))) vec_t5;
9 typedef float __attribute__((mode(DF))) __attribute__((vector_size(256))) vec_t6;
10 typedef float __attribute__((mode(XF))) __attribute__((vector_size(256))) vec_t7;
12 typedef int v8qi __attribute__ ((mode(QI))) __attribute__ ((vector_size(8)));
13 typedef int v8qi __attribute__ ((mode(V8QI)));
14 // expected-warning@-1{{specifying vector types with the 'mode' attribut
[all...]
H A Dattr-mode-enums.c3 // Test checks that 'mode' attribute is handled correctly with enums, i. e. code
4 // 1. "typedef enum { A } __attribute__((mode(HI))) T;" is accepted,
5 // 2. "enum X __attribute__((mode(QI))) var;" forms a complete integer type.
6 // 3. "enum { A } __attribute__((mode(V4SI))) var;" is not accepted (vector mode).
11 // Vector mode are not allowed with enums.
12 typedef enum { E1 } __attribute__((mode(V4QI))) RejectedType1; // expected-error{{mode 'V4QI' is not supported for enumeration types}}
13 // expected-warning@-1{{specifying vector types with the 'mode' attribute is deprecated}}
14 typedef enum __attribute__((mode(V8H
[all...]
/external/libopus/celt/dump_modes/
H A Ddump_modes.c60 CELTMode *mode = modes[i]; local
61 fprintf(file, " %d %d",mode->Fs,mode->shortMdctSize*mode->nbShortMdcts);
75 CELTMode *mode = modes[i]; local
79 mdctSize = mode->shortMdctSize*mode->nbShortMdcts;
80 standard = (mode->Fs == 400*(opus_int32)mode->shortMdctSize);
81 framerate = mode
266 CELTMode *mode = modes[i]; local
283 CELTMode *mode = modes[i]; local
[all...]
/external/deqp/framework/common/
H A DtcuTexVerifierUtil.hpp59 inline bool isNearestMipmapFilter (const Sampler::FilterMode mode) argument
61 return mode == Sampler::NEAREST_MIPMAP_NEAREST || mode == Sampler::LINEAR_MIPMAP_NEAREST;
64 inline bool isLinearMipmapFilter (const Sampler::FilterMode mode) argument
66 return mode == Sampler::NEAREST_MIPMAP_LINEAR || mode == Sampler::LINEAR_MIPMAP_LINEAR;
69 inline bool isMipmapFilter (const Sampler::FilterMode mode) argument
71 return isNearestMipmapFilter(mode) || isLinearMipmapFilter(mode);
74 inline bool isLinearFilter (const Sampler::FilterMode mode) argument
79 isNearestFilter(const Sampler::FilterMode mode) argument
84 getLevelFilter(const Sampler::FilterMode mode) argument
89 isWrapModeSupported(const Sampler::WrapMode mode) argument
[all...]
/external/llvm/utils/lit/tests/Inputs/shtest-timeout/
H A Dquick_then_slow.py12 mode = sys.argv[1] variable
14 if mode == 'slow':
15 print("Running in slow mode")
19 elif mode == 'quick':
20 print("Running in quick mode")
23 print("Unrecognised mode {}".format(mode))
/external/mockito/src/main/java/org/mockito/verification/
H A DVerificationStrategy.java16 * @param mode The original mode.
17 * @return A wrapping mode that uses the original mode.
19 VerificationMode maybeVerifyLazily(VerificationMode mode); argument
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
H A Dinit_decode.h30 int16_t mode, /* (i) frame size mode */
H A Dinit_encode.h30 int16_t mode /* (i) frame size mode */

Completed in 6092 milliseconds

1234567891011>>