Searched refs:mode (Results 26 - 50 of 4963) sorted by relevance

1234567891011>>

/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
H A Dinit_encode.h30 int16_t mode /* (i) frame size mode */
H A Dpack_bits.h31 int16_t mode /* (i) Codec mode (20 or 30) */
/external/toybox/toys/posix/
H A Dchmod.c1 /* chmod.c - Change file mode bits
15 Change mode of listed file[s] (recursively with -R).
39 char *mode;
44 mode_t mode; local
48 mode = string_to_mode(TT.mode, try->st.st_mode);
51 printf("chmod '%s' to %04o\n", s, mode);
54 wfchmodat(dirtree_parentfd(try), try->name, mode); local
61 TT.mode = *toys.optargs;
H A Dmkfifo.c34 mode_t mode;
41 TT.mode = 0666;
42 if (toys.optflags & FLAG_m) TT.mode = string_to_mode(TT.m_string, 0);
49 if (mknod(*s, S_IFIFO | TT.mode, 0) < 0) perror_msg_raw(*s);
/external/eigen/bench/btl/data/
H A Dgo_mean10 mode=large
12 mode=$2
34 source mk_mean_script.sh axpy $1 11 2500 100000 250000 $mode $prefix
35 source mk_mean_script.sh axpby $1 11 2500 100000 250000 $mode $prefix
36 source mk_mean_script.sh matrix_vector $1 11 50 300 1000 $mode $prefix
37 source mk_mean_script.sh atv $1 11 50 300 1000 $mode $prefix
38 source mk_mean_script.sh matrix_matrix $1 11 100 300 1000 $mode $prefix
39 source mk_mean_script.sh aat $1 11 100 300 1000 $mode $prefix
40 # source mk_mean_script.sh ata $1 11 100 300 1000 $mode $prefix
41 source mk_mean_script.sh trmm $1 11 100 300 1000 $mode
[all...]
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
H A DShadowPorterDuffColorFilter.java11 private PorterDuff.Mode mode; field in class:ShadowPorterDuffColorFilter
14 public void __constructor__(int color, PorterDuff.Mode mode) { argument
16 this.mode = mode;
25 public void setMode(PorterDuff.Mode mode) { argument
26 this.mode = mode;
31 return 31 * mode.hashCode() + color;
43 * @return Returns the Porter-Duff mode used to composite this color filter's
47 return mode;
[all...]
/external/libopus/celt/
H A Dmodes.c167 static void compute_allocation_table(CELTMode *mode) argument
173 mode->nbAllocVectors = BITALLOC_SIZE;
174 allocVectors = opus_alloc(sizeof(unsigned char)*(BITALLOC_SIZE*mode->nbEBands));
178 /* Check for standard mode */
179 if (mode->Fs == 400*(opus_int32)mode->shortMdctSize)
181 for (i=0;i<BITALLOC_SIZE*mode->nbEBands;i++)
183 mode->allocVectors = allocVectors;
186 /* If not the standard mode, interpolate */
190 for (j=0;j<mode
228 CELTMode *mode=NULL; local
411 opus_custom_mode_destroy(CELTMode *mode) argument
[all...]
/external/clang/test/CodeGenCXX/
H A Dattr-mode-vector-types-tmpl.cpp7 typedef T __attribute__((mode(QI))) T1;
8 typedef T __attribute__((mode(HI))) T2;
9 typedef T __attribute__((mode(SI))) T3;
10 typedef T __attribute__((mode(DI))) T4;
22 typedef int __attribute__((mode(QI))) __attribute__((vector_size(8))) VT_11;
23 typedef T __attribute__((mode(V8QI))) VT_12;
24 typedef int __attribute__((mode(SI))) __attribute__((vector_size(16))) VT_21;
25 typedef T __attribute__((mode(V4SI))) VT_22;
26 typedef int __attribute__((mode(DI))) __attribute__((vector_size(64))) VT_31;
27 typedef T __attribute__((mode(V8D
[all...]
/external/clang/test/CodeGen/
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.
9 enum { A1, B1 } __attribute__((mode(QI))) x1 = A1;
12 enum { A2, B2 } x2 __attribute__((mode(HI))) = B2;
15 typedef enum { A3, B3 } __attribute__((mode(SI))) T3;
19 typedef enum { A4, B4 } T4 __attribute__((mode(DI)));
23 typedef enum __attribute__((mode(QI))) { A5, B5 } T5;
27 typedef enum X __attribute__((mode(QI))) T6;
31 enum { A7, B7 } __attribute__((mode(T
[all...]
/external/eigen/Eigen/src/Core/util/
H A DNonMPL2.h2 #error Including non-MPL2 code in EIGEN_MPL2_ONLY mode
/external/ltp/testcases/kernel/syscalls/mknodat/
H A Dmknodat.h29 int mknodat(int dirfd, const char *filename, mode_t mode, dev_t dev) argument
31 return ltp_syscall(__NR_mknodat, dirfd, filename, mode, dev);
/external/ltp/testcases/kernel/syscalls/openat/
H A Dopenat.h29 int openat(int dirfd, const char *pathname, int flags, mode_t mode) argument
31 return ltp_syscall(__NR_openat, dirfd, pathname, flags, mode);
/external/skia/src/gpu/effects/
H A DGrCustomXfermode.h18 * Custom Xfer modes are used for blending when the blend mode cannot be represented using blend
22 bool IsSupportedMode(SkBlendMode mode);
23 const GrXPFactory* Get(SkBlendMode mode);
/external/skqp/src/gpu/effects/
H A DGrCustomXfermode.h18 * Custom Xfer modes are used for blending when the blend mode cannot be represented using blend
22 bool IsSupportedMode(SkBlendMode mode);
23 const GrXPFactory* Get(SkBlendMode mode);
/external/syslinux/com32/lib/
H A Dcreat.c9 int creat(const char *pathname, mode_t mode) argument
11 return open(pathname, O_CREAT | O_WRONLY | O_TRUNC, mode);
/external/tensorflow/tensorflow/core/platform/
H A Dsetround.cc21 ScopedSetRound::ScopedSetRound(const int mode) { argument
24 // Failed to get current mode, assume ROUND TO NEAREST.
27 std::fesetround(mode);
/external/valgrind/none/tests/s390x/
H A Drounding-2.stdout.exp1 initial rounding mode: 0
2 setting rounding mode to 0
4 setting rounding mode to 1
6 setting rounding mode to 2
8 setting rounding mode to 3
/external/wpa_supplicant_8/hostapd/src/common/
H A Dhw_features_common.h15 struct hostapd_channel_data * hw_get_channel_chan(struct hostapd_hw_modes *mode,
17 struct hostapd_channel_data * hw_get_channel_freq(struct hostapd_hw_modes *mode,
20 int hw_get_freq(struct hostapd_hw_modes *mode, int chan);
21 int hw_get_chan(struct hostapd_hw_modes *mode, int freq);
23 int allowed_ht40_channel_pair(struct hostapd_hw_modes *mode, int pri_chan,
26 int check_40mhz_5g(struct hostapd_hw_modes *mode,
29 int check_40mhz_2g4(struct hostapd_hw_modes *mode,
33 enum hostapd_hw_mode mode,
/external/wpa_supplicant_8/src/common/
H A Dhw_features_common.h15 struct hostapd_channel_data * hw_get_channel_chan(struct hostapd_hw_modes *mode,
17 struct hostapd_channel_data * hw_get_channel_freq(struct hostapd_hw_modes *mode,
20 int hw_get_freq(struct hostapd_hw_modes *mode, int chan);
21 int hw_get_chan(struct hostapd_hw_modes *mode, int freq);
23 int allowed_ht40_channel_pair(struct hostapd_hw_modes *mode, int pri_chan,
26 int check_40mhz_5g(struct hostapd_hw_modes *mode,
29 int check_40mhz_2g4(struct hostapd_hw_modes *mode,
33 enum hostapd_hw_mode mode,
/external/wpa_supplicant_8/wpa_supplicant/src/common/
H A Dhw_features_common.h15 struct hostapd_channel_data * hw_get_channel_chan(struct hostapd_hw_modes *mode,
17 struct hostapd_channel_data * hw_get_channel_freq(struct hostapd_hw_modes *mode,
20 int hw_get_freq(struct hostapd_hw_modes *mode, int chan);
21 int hw_get_chan(struct hostapd_hw_modes *mode, int freq);
23 int allowed_ht40_channel_pair(struct hostapd_hw_modes *mode, int pri_chan,
26 int check_40mhz_5g(struct hostapd_hw_modes *mode,
29 int check_40mhz_2g4(struct hostapd_hw_modes *mode,
33 enum hostapd_hw_mode mode,
/external/skia/src/core/
H A DSkXfermode.cpp32 SkProcCoeffXfermode(SkBlendMode mode) : fMode(mode) {} argument
78 const char* SkBlendMode_Name(SkBlendMode mode) { argument
79 SkASSERT((unsigned) mode <= (unsigned)SkBlendMode::kLastMode);
87 return gModeStrings[(int)mode];
91 sk_sp<SkXfermode> SkXfermode::Make(SkBlendMode mode) { argument
92 if ((unsigned)mode > (unsigned)SkBlendMode::kLastMode) {
97 // Skia's "default" mode is srcover. nullptr in SkPaint is interpreted as srcover
99 if (SkBlendMode::kSrcOver == mode) {
108 once[(int)mode]([mod
120 IsOpaque(SkBlendMode mode, SrcColorOpacity opacityType) argument
153 SkBlendMode_AsXPFactory(SkBlendMode mode) argument
[all...]
/external/skqp/src/core/
H A DSkXfermode.cpp32 SkProcCoeffXfermode(SkBlendMode mode) : fMode(mode) {} argument
78 const char* SkBlendMode_Name(SkBlendMode mode) { argument
79 SkASSERT((unsigned) mode <= (unsigned)SkBlendMode::kLastMode);
87 return gModeStrings[(int)mode];
91 sk_sp<SkXfermode> SkXfermode::Make(SkBlendMode mode) { argument
92 if ((unsigned)mode > (unsigned)SkBlendMode::kLastMode) {
97 // Skia's "default" mode is srcover. nullptr in SkPaint is interpreted as srcover
99 if (SkBlendMode::kSrcOver == mode) {
108 once[(int)mode]([mod
120 IsOpaque(SkBlendMode mode, SrcColorOpacity opacityType) argument
153 SkBlendMode_AsXPFactory(SkBlendMode mode) argument
[all...]
/external/iptables/include/linux/netfilter/
H A Dxt_CONNSECMARK.h12 __u8 mode; member in struct:xt_connsecmark_target_info
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_CONNSECMARK.h13 __u8 mode; member in struct:xt_connsecmark_target_info
/external/libxcam/tests/
H A Dtest-xcamsrc-camera.sh3 gst-launch-1.0 xcamsrc sensor-id=3 capture-mode=1 io-mode=4 ! video/x-raw, format=NV12, width=1920, height=1080, framerate=30/1 ! queue ! vaapiencode_h264 ! fakesink

Completed in 1612 milliseconds

1234567891011>>