HomeSort by relevance Sort by last modified time
    Searched refs:mode (Results 51 - 75 of 11477) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/toybox/toys/posix/
chmod.c 1 /* chmod.c - Change file mode bits
13 usage: chmod [-R] MODE FILE...
15 Change mode of listed file[s] (recursively with -R).
17 MODE can be (comma-separated) stanzas: [ugoa][+-=][rwxstXugo]
27 Or MODE can be an octal value up to 7777 ug uuugggooo top +
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
    [all...]
  /external/eigen/bench/btl/data/
go_mean 10 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 $prefi
    [all...]
  /art/tools/
javac-helper.sh 24 # --mode=[host|target|jvm]:
27 # Ignored with --mode=jvm.
42 mode=target
47 echo "Usage: $0 [--mode=host|target|jvm] [--core-only] [--show-commands] <javac args>"
50 --mode=host)
52 mode=host
54 --mode=target)
56 mode=target
58 --mode=jvm)
59 mode=jv
    [all...]
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowPorterDuffColorFilter.java 11 private PorterDuff.Mode mode; field in class:ShadowPorterDuffColorFilter
14 public void __constructor__(int color, PorterDuff.Mode mode) {
16 this.mode = mode;
25 public void setMode(PorterDuff.Mode mode) {
26 this.mode = mode;
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
ol_ltp.cpp 91 mode = coder mode (Mode)
133 enum Mode mode, // i : coder mode
143 if (sub ((Word16)mode, (Word16)MR102) != 0 )
149 if (sub ((Word16)mode, (Word16)MR475) == 0 || sub ((Word16)mode, (Word16)MR515) == 0 )
151 *T_op = Pitch_ol(vadSt, mode, wsp, PIT_MIN, PIT_MAX, L_FRAME, idx, dtx)
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixFileModeAttribute.java 49 int mode = 0; local
54 case OWNER_READ : mode |= UnixConstants.S_IRUSR; break;
55 case OWNER_WRITE : mode |= UnixConstants.S_IWUSR; break;
56 case OWNER_EXECUTE : mode |= UnixConstants.S_IXUSR; break;
57 case GROUP_READ : mode |= UnixConstants.S_IRGRP; break;
58 case GROUP_WRITE : mode |= UnixConstants.S_IWGRP; break;
59 case GROUP_EXECUTE : mode |= UnixConstants.S_IXGRP; break;
60 case OTHERS_READ : mode |= UnixConstants.S_IROTH; break;
61 case OTHERS_WRITE : mode |= UnixConstants.S_IWOTH; break;
62 case OTHERS_EXECUTE : mode |= UnixConstants.S_IXOTH; break
70 int mode = defaultMode; local
    [all...]
  /external/libopus/celt/
modes.c 167 static void compute_allocation_table(CELTMode *mode)
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->nbEBands;j++
228 CELTMode *mode=NULL; local
    [all...]
  /libcore/luni/src/main/java/libcore/io/
IoTracker.java 29 private Mode mode = Mode.READ; field in class:IoTracker
40 public void trackIo(int byteCount, Mode mode) {
41 if (this.mode != mode) {
43 this.mode = mode;
59 public enum Mode {
    [all...]
  /external/clang/test/CodeGenCXX/
attr-mode-vector-types-tmpl.cpp 7 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(V8DI))) VT_32
    [all...]
  /bionic/libc/bionic/
chmod.cpp 33 int chmod(const char* path, mode_t mode) {
34 return fchmodat(AT_FDCWD, path, mode, 0);
mkdir.cpp 33 int mkdir(const char* path, mode_t mode) {
34 return mkdirat(AT_FDCWD, path, mode);
  /device/google/wahoo/
init.hardware.diag.rc.user 17 on property:ro.boot.mode=normal
  /external/clang/test/CodeGen/
attr-mode-enums.c 3 // 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(TI))) x7 = A7
    [all...]
  /external/eigen/Eigen/src/Core/util/
NonMPL2.h 2 #error Including non-MPL2 code in EIGEN_MPL2_ONLY mode
  /external/ipsec-tools/src/racoon/contrib/
sp.pl 6 $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/ltp/testcases/kernel/syscalls/mknodat/
mknodat.h 29 int mknodat(int dirfd, const char *filename, mode_t mode, dev_t dev)
31 return ltp_syscall(__NR_mknodat, dirfd, filename, mode, dev);
  /external/ltp/testcases/kernel/syscalls/openat/
openat.h 29 int openat(int dirfd, const char *pathname, int flags, mode_t mode)
31 return ltp_syscall(__NR_openat, dirfd, pathname, flags, mode);
  /external/syslinux/com32/lib/
creat.c 9 int creat(const char *pathname, mode_t mode)
11 return open(pathname, O_CREAT | O_WRONLY | O_TRUNC, mode);
  /external/tensorflow/tensorflow/core/platform/
setround.cc 21 ScopedSetRound::ScopedSetRound(const int mode) {
24 // Failed to get current mode, assume ROUND TO NEAREST.
27 std::fesetround(mode);
  /external/valgrind/none/tests/s390x/
rounding-2.stdout.exp 1 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/src/common/
hw_features_common.h 15 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,
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
d_gain_p.cpp 58 mode -- enumerated type -- AMR mode
125 #include "mode.h"
177 enum Mode mode, /* i : AMR mode */
185 if (mode == MR122)
  /frameworks/native/opengl/tools/glgen/stubs/gles11/
glDrawArraysIndirect.cpp 1 /* void glDrawArraysIndirect ( GLenum mode, const void *indirect ) */
2 static void android_glDrawArraysIndirect(JNIEnv *_env, jobject, int mode, jlong indirect) {
10 glDrawArraysIndirect(mode, (const void*)indirect);
glDrawElementsInstanced.java 1 // C function void glDrawElementsInstanced ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei instanceCount )
4 int mode,
11 // C function void glDrawElementsInstanced ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei instanceCount )
14 int mode,
glDrawElementsInstancedBaseVertex.java 1 // C function void glDrawElementsInstancedBaseVertex ( GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instanceCount, GLint basevertex )
4 int mode,
12 // C function void glDrawElementsInstancedBaseVertex ( GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instanceCount, GLint basevertex )
15 int mode,

Completed in 431 milliseconds

1 23 4 5 6 7 8 91011>>