Home
last modified time | relevance | path

Searched refs:mode (Results 1 – 25 of 1607) sorted by relevance

12345678910>>...65

/external/e2fsprogs/tests/f_journal/
Dexpect.12 Clearing orphaned inode 37 (uid=0, gid=0, mode=0100600, size=4096)
3 Clearing orphaned inode 90 (uid=0, gid=0, mode=040700, size=1024)
4 Clearing orphaned inode 67 (uid=0, gid=0, mode=0100600, size=4096)
5 Clearing orphaned inode 50 (uid=0, gid=0, mode=0100600, size=4096)
6 Clearing orphaned inode 57 (uid=0, gid=0, mode=040700, size=1024)
7 Clearing orphaned inode 80 (uid=0, gid=0, mode=040700, size=1024)
8 Clearing orphaned inode 45 (uid=0, gid=0, mode=040700, size=1024)
9 Clearing orphaned inode 71 (uid=0, gid=0, mode=0100600, size=4096)
10 Clearing orphaned inode 86 (uid=0, gid=0, mode=040700, size=1024)
11 Clearing orphaned inode 83 (uid=0, gid=0, mode=040700, size=1024)
[all …]
/external/zlib/
Dgzlib.c74 if (state->mode == GZ_READ) { /* for reading ... */
87 local gzFile gz_open(path, fd, mode) in gz_open() argument
90 const char *mode;
103 state->mode = GZ_NONE;
106 while (*mode) {
107 if (*mode >= '0' && *mode <= '9')
108 state->level = *mode - '0';
110 switch (*mode) {
112 state->mode = GZ_READ;
116 state->mode = GZ_WRITE;
[all …]
Dinflate.c113 state->mode = HEAD;
617 if (state->mode == TYPE) state->mode = TYPEDO; /* skip check */
623 switch (state->mode) {
626 state->mode = TYPEDO;
635 state->mode = FLAGS;
647 state->mode = BAD;
652 state->mode = BAD;
661 state->mode = BAD;
667 state->mode = hold & 0x200 ? DICTID : TYPE;
676 state->mode = BAD;
[all …]
/external/chromium/sdch/open-vcdiff/src/
Daddrcache.h97 static bool IsSelfMode(unsigned char mode) { in IsSelfMode() argument
98 return mode == VCD_SELF_MODE; in IsSelfMode()
101 static bool IsHereMode(unsigned char mode) { in IsHereMode() argument
102 return mode == VCD_HERE_MODE; in IsHereMode()
105 bool IsNearMode(unsigned char mode) const { in IsNearMode() argument
106 return (mode >= FirstNearMode()) && (mode < FirstSameMode()); in IsNearMode()
109 bool IsSameMode(unsigned char mode) const { in IsSameMode() argument
110 return (mode >= FirstSameMode()) && (mode <= LastMode()); in IsSameMode()
122 VCDAddress DecodeNearAddress(unsigned char mode, in DecodeNearAddress() argument
124 return NearAddress(mode - FirstNearMode()) + encoded_address; in DecodeNearAddress()
[all …]
Dinstruction_map.h69 unsigned char mode) const { in LookupFirstOpcode() argument
70 return first_instruction_map_.Lookup(inst, size, mode); in LookupFirstOpcode()
85 unsigned char mode) const { in LookupSecondOpcode() argument
86 return second_instruction_map_.Lookup(first_opcode, inst, size, mode); in LookupSecondOpcode()
99 unsigned char mode, in Add() argument
101 OpcodeOrNone* opcode_slot = &first_opcodes_[inst + mode][size]; in Add()
111 unsigned char mode) const { in Lookup() argument
112 int inst_mode = (inst == VCD_COPY) ? (inst + mode) : inst; in Lookup()
165 unsigned char mode,
172 unsigned char mode) const;
/external/zlib/contrib/iostream3/
Dzfstream.cc52 std::ios_base::openmode mode) in open() argument
58 if ((mode & std::ios_base::in) && (mode & std::ios_base::out)) in open()
63 if (!this->open_mode(mode, char_mode)) in open()
72 io_mode = mode; in open()
80 std::ios_base::openmode mode) in attach() argument
86 if ((mode & std::ios_base::in) && (mode & std::ios_base::out)) in attach()
91 if (!this->open_mode(mode, char_mode)) in attach()
100 io_mode = mode; in attach()
131 gzfilebuf::open_mode(std::ios_base::openmode mode, in open_mode() argument
134 bool testb = mode & std::ios_base::binary; in open_mode()
[all …]
/external/qemu/distrib/sdl-1.2.12/src/video/dga/
DSDL_dgavideo.c178 SDL_Rect *mode; in DGA_AddMode() local
188 mode = SDL_modelist[index][SDL_nummodes[index]-1]; in DGA_AddMode()
189 if ( (mode->w == w) && (mode->h == h) ) { in DGA_AddMode()
195 mode = (SDL_Rect *)SDL_malloc(sizeof *mode); in DGA_AddMode()
196 if ( mode == NULL ) { in DGA_AddMode()
200 mode->x = 0; in DGA_AddMode()
201 mode->y = 0; in DGA_AddMode()
202 mode->w = w; in DGA_AddMode()
203 mode->h = h; in DGA_AddMode()
212 SDL_free(mode); in DGA_AddMode()
[all …]
/external/qemu/distrib/sdl-1.2.12/src/video/ggi/
DSDL_ggivideo.c147 ggi_mode mode = in GGI_VideoInit() local
186 ggiCheckMode(VIS, &mode); in GGI_VideoInit()
189 err = ggiSetMode(VIS, &mode); in GGI_VideoInit()
201 this->info.current_w = mode.virt.x; in GGI_VideoInit()
202 this->info.current_h = mode.virt.y; in GGI_VideoInit()
205 if (GT_SCHEME(mode.graphtype) == GT_PALETTE) in GGI_VideoInit()
230 this->info.video_mem = db->buffer.plb.stride * mode.virt.y; in GGI_VideoInit()
235 video_mode.w = mode.virt.x; in GGI_VideoInit()
236 video_mode.h = mode.virt.y; in GGI_VideoInit()
253 ggi_mode mode = in GGI_SetVideoMode() local
[all …]
/external/srec/portable/src/
Dpstream.c49 #define ISWRITEMODE(mode) (((mode)&FILEWRITEMODE) == FILEWRITEMODE) argument
51 #define ISBINARYMODE(mode) (((mode)&FILEBINARYMODE) == FILEBINARYMODE) argument
52 #define ISREOPENMODE(mode) (((mode)&FILEREOPENMODE) == FILEREOPENMODE) argument
170 PORT_FILE PortFopen(const char *filename, const char *mode) in PortFopen() argument
183 passert(mode); in PortFopen()
192 if (mode[0] == 'r' || mode[0] == 'w' || mode[0] == 'R') /* w means w+, attaching text */ in PortFopen()
197 access_mode = (mode[0] == 'r') ? FILEREADMODE : FILEWRITEMODE; in PortFopen()
200 if (mode[1] == '+') in PortFopen()
201 text_mode = (mode[2] == 'b') ? FILEBINARYMODE : FILETEXTMODE; in PortFopen()
203 text_mode = (mode[1] == 'b') ? FILEBINARYMODE : FILETEXTMODE; in PortFopen()
[all …]
/external/skia/src/effects/
DSkPorterDuff.cpp8 #define MAKE_PAIR(mode) { SkPorterDuff::k##mode##_Mode, SkXfermode::k##mode##_Mode } argument
48 SkXfermode::Mode SkPorterDuff::ToXfermodeMode(Mode mode) { in ToXfermodeMode() argument
49 SkASSERT((unsigned)mode < SkPorterDuff::kModeCount); in ToXfermodeMode()
50 const Pair& pair = gPairs[mode]; in ToXfermodeMode()
51 SkASSERT(pair.fPD == mode); in ToXfermodeMode()
55 SkXfermode* SkPorterDuff::CreateXfermode(SkPorterDuff::Mode mode) { in CreateXfermode() argument
56 const Pair& pair = gPairs[mode]; in CreateXfermode()
57 SkASSERT(pair.fPD == mode); in CreateXfermode()
69 SkXfermodeProc SkPorterDuff::GetXfermodeProc(Mode mode) { in GetXfermodeProc() argument
70 return SkXfermode::GetProc(gPairs[mode].fXF); in GetXfermodeProc()
[all …]
/external/chromium/third_party/icu/source/tools/genpname/
Dpreparse.pl1008 my $mode = ''; # state machine mode and submode
1030 if ($mode && $mode ne 'DEPRECATED') {
1032 $mode = '';
1039 if ($mode eq 'UScriptCode') {
1048 elsif ($mode eq 'DEPRECATED') {
1053 $mode = '';
1057 elsif (!$mode) {
1060 $mode = $1;
1065 $mode = 'DEPRECATED';
1097 my $mode = ''; # state machine mode and submode
[all …]
/external/icu4c/tools/genpname/
Dpreparse.pl1008 my $mode = ''; # state machine mode and submode
1030 if ($mode && $mode ne 'DEPRECATED') {
1032 $mode = '';
1039 if ($mode eq 'UScriptCode') {
1048 elsif ($mode eq 'DEPRECATED') {
1053 $mode = '';
1057 elsif (!$mode) {
1060 $mode = $1;
1065 $mode = 'DEPRECATED';
1097 my $mode = ''; # state machine mode and submode
[all …]
/external/kernel-headers/original/linux/
Dqic117.h112 unused, mode, motion, report enumerator
128 /* 0*/ {NULL, 0x00, 0x00, mode, 0, discretional},\
133 /* 5*/ {"alternate command timeout", 0x00, 0x00, mode, 0, required},\
143 /*15*/ {"enter format mode", 0x1f, 0x05, mode, 0, required},\
145 /*17*/ {"enter verify mode", 0x37, 0x25, mode, 0, required},\
151 /*23*/ {"soft select", 0x00, 0x00, mode, 0, discretional},\
152 /*24*/ {"soft deselect", 0x00, 0x00, mode, 0, discretional},\
155 /*27*/ {"select rate or format", 0x03, 0x01, mode, 0, required /* [ccs2] */},\
156 /*28*/ {"enter diag mode 1", 0x00, 0x00, mode, 0, discretional},\
157 /*29*/ {"enter diag mode 2", 0x00, 0x00, mode, 0, discretional},\
[all …]
Dproc_fs.h54 mode_t mode; member
109 extern struct proc_dir_entry *create_proc_entry(const char *name, mode_t mode,
160 extern struct proc_dir_entry *proc_mkdir_mode(const char *name, mode_t mode,
164 mode_t mode, struct proc_dir_entry *base, in create_proc_read_entry() argument
167 struct proc_dir_entry *res=create_proc_entry(name,mode,base); in create_proc_read_entry()
176 mode_t mode, struct proc_dir_entry *base, get_info_t *get_info) in create_proc_info_entry() argument
178 struct proc_dir_entry *res=create_proc_entry(name,mode,base); in create_proc_info_entry()
184 mode_t mode, get_info_t *get_info) in proc_net_create() argument
186 return create_proc_info_entry(name,mode,proc_net,get_info); in proc_net_create()
190 mode_t mode, const struct file_operations *fops) in proc_net_fops_create() argument
[all …]
/external/bluetooth/bluez/scripts/
Dbluetooth-hid2hci.rules11 …L=="mouse*", RUN+="/usr/sbin/hid2hci --method dell -v $env{ID_VENDOR} -p $env{ID_MODEL} --mode hci"
14 …=="c703" RUN+="/usr/sbin/hid2hci --method logitech -v $env{ID_VENDOR} -p $env{ID_MODEL} --mode hci"
15 …=="c704" RUN+="/usr/sbin/hid2hci --method logitech -v $env{ID_VENDOR} -p $env{ID_MODEL} --mode hci"
16 …=="c705" RUN+="/usr/sbin/hid2hci --method logitech -v $env{ID_VENDOR} -p $env{ID_MODEL} --mode hci"
17 …=="c70a" RUN+="/usr/sbin/hid2hci --method logitech -v $env{ID_VENDOR} -p $env{ID_MODEL} --mode hci"
18 …=="c70b" RUN+="/usr/sbin/hid2hci --method logitech -v $env{ID_VENDOR} -p $env{ID_MODEL} --mode hci"
19 …=="c70c" RUN+="/usr/sbin/hid2hci --method logitech -v $env{ID_VENDOR} -p $env{ID_MODEL} --mode hci"
20 …=="c70e" RUN+="/usr/sbin/hid2hci --method logitech -v $env{ID_VENDOR} -p $env{ID_MODEL} --mode hci"
21 …=="c713" RUN+="/usr/sbin/hid2hci --method logitech -v $env{ID_VENDOR} -p $env{ID_MODEL} --mode hci"
22 …=="c714" RUN+="/usr/sbin/hid2hci --method logitech -v $env{ID_VENDOR} -p $env{ID_MODEL} --mode hci"
[all …]
/external/qemu/distrib/zlib-1.2.3/
Dinflate.c113 state->mode = HEAD;
582 if (state->mode == TYPE) state->mode = TYPEDO; /* skip check */
588 switch (state->mode) {
591 state->mode = TYPEDO;
600 state->mode = FLAGS;
612 state->mode = BAD;
617 state->mode = BAD;
624 state->mode = BAD;
630 state->mode = hold & 0x200 ? DICTID : TYPE;
639 state->mode = BAD;
[all …]
/external/chromium/third_party/zlib/
Dinflate.c113 state->mode = HEAD;
582 if (state->mode == TYPE) state->mode = TYPEDO; /* skip check */
588 switch (state->mode) {
591 state->mode = TYPEDO;
600 state->mode = FLAGS;
612 state->mode = BAD;
617 state->mode = BAD;
624 state->mode = BAD;
630 state->mode = hold & 0x200 ? DICTID : TYPE;
639 state->mode = BAD;
[all …]
/external/v8/src/
Dassembler.h150 static inline bool IsConstructCall(Mode mode) { in IsConstructCall() argument
151 return mode == CONSTRUCT_CALL; in IsConstructCall()
153 static inline bool IsCodeTarget(Mode mode) { in IsCodeTarget() argument
154 return mode <= LAST_CODE_ENUM; in IsCodeTarget()
157 static inline bool IsGCRelocMode(Mode mode) { in IsGCRelocMode() argument
158 return mode <= LAST_GCED_ENUM; in IsGCRelocMode()
160 static inline bool IsJSReturn(Mode mode) { in IsJSReturn() argument
161 return mode == JS_RETURN; in IsJSReturn()
163 static inline bool IsComment(Mode mode) { in IsComment() argument
164 return mode == COMMENT; in IsComment()
[all …]
/external/bluetooth/bluez/audio/
Dgstsbcutil.c161 gint gst_sbc_get_channel_number(gint mode) in gst_sbc_get_channel_number() argument
163 switch (mode) { in gst_sbc_get_channel_number()
231 const gchar *gst_sbc_parse_mode_from_sbc(gint mode) in gst_sbc_parse_mode_from_sbc() argument
233 switch (mode) { in gst_sbc_parse_mode_from_sbc()
248 gint gst_sbc_parse_mode_to_sbc(const gchar *mode) in gst_sbc_parse_mode_to_sbc() argument
250 if (g_ascii_strcasecmp(mode, "joint") == 0) in gst_sbc_parse_mode_to_sbc()
252 else if (g_ascii_strcasecmp(mode, "stereo") == 0) in gst_sbc_parse_mode_to_sbc()
254 else if (g_ascii_strcasecmp(mode, "dual") == 0) in gst_sbc_parse_mode_to_sbc()
256 else if (g_ascii_strcasecmp(mode, "mono") == 0) in gst_sbc_parse_mode_to_sbc()
258 else if (g_ascii_strcasecmp(mode, "auto") == 0) in gst_sbc_parse_mode_to_sbc()
[all …]
/external/openssl/crypto/threads/
Dth-lock.c91 static void irix_locking_callback(int mode,int type,char *file,int line);
92 static void solaris_locking_callback(int mode,int type,char *file,int line);
93 static void win32_locking_callback(int mode,int type,char *file,int line);
94 static void pthreads_locking_callback(int mode,int type,char *file,int line);
137 void win32_locking_callback(int mode, int type, char *file, int line) in win32_locking_callback() argument
139 if (mode & CRYPTO_LOCK) in win32_locking_callback()
203 void solaris_locking_callback(int mode, int type, char *file, int line) in solaris_locking_callback() argument
208 (mode&CRYPTO_LOCK)?"l":"u", in solaris_locking_callback()
216 mode,file,line); in solaris_locking_callback()
218 if (mode & CRYPTO_LOCK) in solaris_locking_callback()
[all …]
/external/chromium/third_party/icu/public/common/unicode/
Dnormlzr.h146 Normalizer(const UnicodeString& str, UNormalizationMode mode);
159 Normalizer(const UChar* str, int32_t length, UNormalizationMode mode);
171 Normalizer(const CharacterIterator& iter, UNormalizationMode mode);
206 UNormalizationMode mode, int32_t options,
275 quickCheck(const UnicodeString &source, UNormalizationMode mode, UErrorCode &status);
291 …quickCheck(const UnicodeString &source, UNormalizationMode mode, int32_t options, UErrorCode &stat…
314 isNormalized(const UnicodeString &src, UNormalizationMode mode, UErrorCode &errorCode);
332 …isNormalized(const UnicodeString &src, UNormalizationMode mode, int32_t options, UErrorCode &error…
366 UNormalizationMode mode, int32_t options,
762 UNormalizationMode mode, in quickCheck() argument
[all …]
/external/libvpx/vpx_ports/
Dx86.h164 x87_set_control_word(unsigned short mode) in x87_set_control_word() argument
166 __asm__ __volatile__("fldcw %0" : : "m"(*&mode)); in x87_set_control_word()
171 unsigned short mode; in x87_get_control_word() local
172 __asm__ __volatile__("fstcw %0\n\t":"=m"(*&mode):); in x87_get_control_word()
173 return mode; in x87_get_control_word()
177 extern void vpx_winx64_fldcw(unsigned short mode);
183 x87_set_control_word(unsigned short mode) in x87_set_control_word() argument
185 __asm { fldcw mode } in x87_set_control_word()
190 unsigned short mode; in x87_get_control_word() local
191 __asm { fstcw mode } in x87_get_control_word()
[all …]
/external/bluetooth/glib/glib/
Dgstdio.c81 int mode) in g_access() argument
98 retval = _waccess (wfilename, mode & ~X_OK); in g_access()
106 return access (filename, mode); in g_access()
132 int mode) in g_chmod() argument
145 retval = _wchmod (wfilename, mode); in g_chmod()
153 return chmod (filename, mode); in g_chmod()
189 int mode) in g_open() argument
202 retval = _wopen (wfilename, flags, mode); in g_open()
210 return open (filename, flags, mode); in g_open()
246 int mode) in g_creat() argument
[all …]
/external/speex/include/speex/
Dspeex.h221 typedef void *(*encoder_init_func)(const struct SpeexMode *mode);
233 typedef void *(*decoder_init_func)(const struct SpeexMode *mode);
246 typedef int (*mode_query_func)(const void *mode, int request, void *ptr);
251 const void *mode; member
301 void *speex_encoder_init(const SpeexMode *mode);
345 void *speex_decoder_init(const SpeexMode *mode);
390 int speex_mode_query(const SpeexMode *mode, int request, void *ptr);
412 const SpeexMode * speex_lib_get_mode (int mode);
416 #define speex_lib_get_mode(mode) ((mode)==SPEEX_MODEID_NB ? &speex_nb_mode : speex_lib_get_mode (mo… argument
/external/icu4c/common/unicode/
Dnormlzr.h153 Normalizer(const UnicodeString& str, UNormalizationMode mode);
166 Normalizer(const UChar* str, int32_t length, UNormalizationMode mode);
178 Normalizer(const CharacterIterator& iter, UNormalizationMode mode);
213 UNormalizationMode mode, int32_t options,
282 quickCheck(const UnicodeString &source, UNormalizationMode mode, UErrorCode &status);
298 …quickCheck(const UnicodeString &source, UNormalizationMode mode, int32_t options, UErrorCode &stat…
321 isNormalized(const UnicodeString &src, UNormalizationMode mode, UErrorCode &errorCode);
339 …isNormalized(const UnicodeString &src, UNormalizationMode mode, int32_t options, UErrorCode &error…
373 UNormalizationMode mode, int32_t options,
770 UNormalizationMode mode, in quickCheck() argument
[all …]

12345678910>>...65