Searched refs:mode (Results 351 - 375 of 4963) sorted by relevance

<<11121314151617181920>>

/external/valgrind/drd/
H A Ddrd_qtcore_intercepts.c63 static MutexT qt_to_drd_mutex_type(qt_mutex_mode mode) argument
65 switch (mode)
88 qt_mutex_mode mode)
94 mutex, qt_to_drd_mutex_type(mode), 0, 0, 0);
95 CALL_FN_W_WW(ret, fn, mutex, mode);
103 qt_mutex_mode mode)
109 mutex, qt_to_drd_mutex_type(mode), 0, 0, 0);
110 CALL_FN_W_WW(ret, fn, mutex, mode);
86 QT4CORE_FUNC(void, _ZN6QMutexC1ENS_13RecursionModeE, void* mutex, qt_mutex_mode mode) argument
101 QT4CORE_FUNC(void, _ZN6QMutexC2ENS_13RecursionModeE, void* mutex, qt_mutex_mode mode) argument
/external/valgrind/none/tests/s390x/
H A Dsrnmb.stderr.exp3 The specified rounding mode is invalid.
/external/webrtc/webrtc/modules/audio_processing/ns/
H A Dnoise_suppression_x.c36 int WebRtcNsx_set_policy(NsxHandle* nsxInst, int mode) { argument
37 return WebRtcNsx_set_policy_core((NoiseSuppressionFixedC*)nsxInst, mode);
/external/capstone/bindings/ocaml/
H A Dcapstone.ml26 type mode = type
27 | CS_MODE_LITTLE_ENDIAN (* little-endian mode (default mode) *)
28 | CS_MODE_ARM (* ARM mode *)
29 | CS_MODE_16 (* 16-bit mode (for X86) *)
30 | CS_MODE_32 (* 32-bit mode (for X86) *)
31 | CS_MODE_64 (* 64-bit mode (for X86, PPC) *)
32 | CS_MODE_THUMB (* ARM's Thumb mode, including Thumb-2 *)
33 | CS_MODE_MCLASS (* ARM's MClass mode *)
35 | CS_MODE_MICRO (* MicroMips mode (MIP
[all...]
/external/libdrm/tests/modeprint/
H A Dmodeprint.c3 * Test program to dump DRM kernel mode setting related information.
71 static int printMode(struct drm_mode_modeinfo *mode) argument
74 printf("Mode: %s\n", mode->name);
75 printf("\tclock : %i\n", mode->clock);
76 printf("\thdisplay : %i\n", mode->hdisplay);
77 printf("\thsync_start : %i\n", mode->hsync_start);
78 printf("\thsync_end : %i\n", mode->hsync_end);
79 printf("\thtotal : %i\n", mode->htotal);
80 printf("\thskew : %i\n", mode->hskew);
81 printf("\tvdisplay : %i\n", mode
166 struct drm_mode_modeinfo *mode = NULL; local
[all...]
/external/nos/test/system-test-harness/src/test-data/NIST-CAVP/
H A Dnist2h.py77 mode = lines[1].split(' ')[1]
90 return mode, data
122 def _write_header(input_files, outfile, mode, data):
127 outfile.write('#ifndef AES_%s_CAVP_H\n' % mode)
128 outfile.write('#define AES_%s_CAVP_H\n' % mode)
144 ''' % mode.lower())
145 outfile.write('const %s_data NIST_%s_DATA[] = {\n' % (mode.lower(), mode))
171 outfile.write('#endif /* ! AES_TESTS_%s_DATA_H */\n' % mode)
180 mode, loaded_dat
[all...]
/external/zlib/src/contrib/iostream3/
H A Dzfstream.h62 * @param mode Open mode flags.
67 std::ios_base::openmode mode);
72 * @param mode Open mode flags.
77 std::ios_base::openmode mode);
88 * @brief Convert ios open mode int to mode string used by zlib.
89 * @return True if valid mode flag combination.
92 open_mode(std::ios_base::openmode mode,
[all...]
/external/iproute2/ip/
H A Diplink_macvlan.c33 "Usage: ... %s mode MODE [flag MODE_FLAG] MODE_OPTS\n"
37 "MODE_OPTS: for mode \"source\":\n"
52 "Error: argument of \"mode\" must be \"private\", \"vepa\", \"bridge\", \"passthru\" or \"source\", not \"%s\"\n",
68 __u32 mode = 0; local
76 if (matches(*argv, "mode") == 0) {
80 mode = MACVLAN_MODE_PRIVATE;
82 mode = MACVLAN_MODE_VEPA;
84 mode = MACVLAN_MODE_BRIDGE;
86 mode = MACVLAN_MODE_PASSTHRU;
88 mode
181 __u32 mode; local
[all...]
/external/python/cpython2/Demo/pdist/
H A Dcmptree.py18 mode = ''
26 s = raw_input("mode [%s] " % mode)
27 if s: mode = s
32 compare(local, remote, mode)
50 def compare(local, remote, mode):
68 if 'r' in mode and 'c' in mode:
78 if 'r' in mode:
82 if 'w' in mode
[all...]
/external/python/cpython3/Lib/
H A Dbz2.py43 def __init__(self, filename, mode="r", buffering=None, compresslevel=9):
50 mode can be 'r' for reading (default), 'w' for (over)writing,
56 If mode is 'w', 'x' or 'a', compresslevel can be a number between 1
60 If mode is 'r', the input file may be the concatenation of
77 if mode in ("", "r", "rb"):
78 mode = "rb"
80 elif mode in ("w", "wb"):
81 mode = "wb"
84 elif mode in ("x", "xb"):
85 mode
[all...]
/external/tensorflow/tensorflow/contrib/layers/python/layers/
H A Dinitializers_test.py86 def _test_variance(self, initializer, shape, variance, factor, mode, uniform):
94 factor=factor, mode=mode, uniform=uniform, seed=1))
106 mode='FAN_IN',
116 mode='FAN_OUT',
126 mode='FAN_AVG',
136 mode='FAN_IN',
146 mode='FAN_OUT',
156 mode='FAN_AVG',
165 mode
[all...]
/external/tensorflow/tensorflow/contrib/timeseries/python/timeseries/
H A Dstate_management.py48 def define_loss(self, model, features, mode):
58 mode: The tf.estimator.ModeKeys mode to use (TRAIN or EVAL).
67 return model.define_loss(features, mode)
74 def _define_loss_with_saved_state(self, model, features, mode):
77 def define_loss(self, model, features, mode):
81 if mode == estimator_lib.ModeKeys.TRAIN:
89 features=features, mode=mode, state=start_state)
93 model=model, features=features, mode
[all...]
/external/libhevc/common/
H A Dihevc_intra_pred.h54 WORD32 mode);
64 WORD32 mode);
72 WORD32 mode);
81 WORD32 mode);
90 WORD32 mode);
99 WORD32 mode);
108 WORD32 mode);
117 WORD32 mode);
126 WORD32 mode);
135 WORD32 mode);
[all...]
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dhw_features.c134 wpa_printf(MSG_MSGDUMP, "Allowed channel: mode=%d "
136 feature->mode,
149 struct hostapd_hw_modes *mode)
159 else switch (mode->mode) {
189 os_calloc(mode->num_rates, sizeof(struct hostapd_rate_data));
196 for (i = 0; i < mode->num_rates; i++) {
201 mode->rates[i]))
205 rate->rate = mode->rates[i];
309 if (iface->current_mode->mode
148 hostapd_prepare_rates(struct hostapd_iface *iface, struct hostapd_hw_modes *mode) argument
353 struct hostapd_hw_modes *mode; local
398 struct hostapd_hw_modes *mode; local
632 struct hostapd_hw_modes *mode = iface->current_mode; local
875 struct hostapd_hw_modes *mode = &iface->hw_features[i]; local
910 hostapd_hw_mode_txt(int mode) argument
936 struct hostapd_hw_modes *mode; local
[all...]
/external/wpa_supplicant_8/src/ap/
H A Dhw_features.c134 wpa_printf(MSG_MSGDUMP, "Allowed channel: mode=%d "
136 feature->mode,
149 struct hostapd_hw_modes *mode)
159 else switch (mode->mode) {
189 os_calloc(mode->num_rates, sizeof(struct hostapd_rate_data));
196 for (i = 0; i < mode->num_rates; i++) {
201 mode->rates[i]))
205 rate->rate = mode->rates[i];
309 if (iface->current_mode->mode
148 hostapd_prepare_rates(struct hostapd_iface *iface, struct hostapd_hw_modes *mode) argument
353 struct hostapd_hw_modes *mode; local
398 struct hostapd_hw_modes *mode; local
632 struct hostapd_hw_modes *mode = iface->current_mode; local
875 struct hostapd_hw_modes *mode = &iface->hw_features[i]; local
910 hostapd_hw_mode_txt(int mode) argument
936 struct hostapd_hw_modes *mode; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dhw_features.c134 wpa_printf(MSG_MSGDUMP, "Allowed channel: mode=%d "
136 feature->mode,
149 struct hostapd_hw_modes *mode)
159 else switch (mode->mode) {
189 os_calloc(mode->num_rates, sizeof(struct hostapd_rate_data));
196 for (i = 0; i < mode->num_rates; i++) {
201 mode->rates[i]))
205 rate->rate = mode->rates[i];
309 if (iface->current_mode->mode
148 hostapd_prepare_rates(struct hostapd_iface *iface, struct hostapd_hw_modes *mode) argument
353 struct hostapd_hw_modes *mode; local
398 struct hostapd_hw_modes *mode; local
632 struct hostapd_hw_modes *mode = iface->current_mode; local
875 struct hostapd_hw_modes *mode = &iface->hw_features[i]; local
910 hostapd_hw_mode_txt(int mode) argument
936 struct hostapd_hw_modes *mode; local
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/bidi/
H A DTestReorderingMode.java212 int tc, mode, option, level;
226 for (mode = 0; mode < MODES_COUNT; mode++) {
227 modeValue = modes[mode];
231 errln("Error while setting reordering mode to " +
245 logln("starting test " + tc + " mode=" + modeValue +
264 index = outIndices[tc][mode][option][level];
275 mode, option,
295 logln("Reordering mode tes
411 assertRoundTrip(Bidi bidi, int tc, int outIndex, String src, String dest, int mode, int option, byte level) argument
483 checkResultLength(Bidi bidi, String src, String dest, String mode, String option, byte level) argument
621 checkMaps(Bidi bidi, int stringIndex, String src, String dest, String mode, String option, byte level, boolean forward) argument
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/
H A DTestReorderingMode.java209 int tc, mode, option, level;
223 for (mode = 0; mode < MODES_COUNT; mode++) {
224 modeValue = modes[mode];
228 errln("Error while setting reordering mode to " +
242 logln("starting test " + tc + " mode=" + modeValue +
261 index = outIndices[tc][mode][option][level];
272 mode, option,
292 logln("Reordering mode tes
408 assertRoundTrip(Bidi bidi, int tc, int outIndex, String src, String dest, int mode, int option, byte level) argument
480 checkResultLength(Bidi bidi, String src, String dest, String mode, String option, byte level) argument
618 checkMaps(Bidi bidi, int stringIndex, String src, String dest, String mode, String option, byte level, boolean forward) argument
[all...]
/external/ImageMagick/coders/
H A Dpsd-private.h40 mode, member in struct:_PSDInfo
/external/adhd/cras/src/common/
H A Dcras_sbc_codec.h16 * mode: mode for sbc encoder settings.
23 uint8_t mode, uint8_t subbands, uint8_t alloc,
/external/autotest/client/cros/multimedia/
H A Dsystem_facade_native.py31 def set_scaling_governor_mode(self, index, mode):
32 """Set mode of CPU scaling governor on one CPU.
36 @param mode: Mode of scaling governor, accept 'interactive' or
39 @returns: The original mode.
42 if mode not in self.SCALING_GOVERNOR_MODES:
43 raise SystemFacadeNativeError('mode %s is invalid' % mode)
53 utils.open_write_close(governor_path, mode)
/external/autotest/server/cros/ap_configurators/
H A Dlinksyswrt610n_ap_configurator.py17 """Returns if the passed in security mode is supported.
30 def _set_mode(self, mode, band=None):
41 if mode in mode_mapping.keys():
42 mode_name = mode_mapping[mode]
44 raise RuntimeError('The mode selected %d is not supported by router'
45 ' %s.', hex(mode), self.name)
/external/boringssl/include/openssl/
H A Dthread.h124 void (*func)(int mode, int lock_num, const char *file, int line));
131 OPENSSL_EXPORT void (*CRYPTO_get_locking_callback(void))(int mode, int lock_num,
167 int mode, struct CRYPTO_dynlock_value *l, const char *file, int line));
180 int mode, struct CRYPTO_dynlock_value *l, const char *file, int line);
/external/boringssl/src/include/openssl/
H A Dthread.h124 void (*func)(int mode, int lock_num, const char *file, int line));
131 OPENSSL_EXPORT void (*CRYPTO_get_locking_callback(void))(int mode, int lock_num,
167 int mode, struct CRYPTO_dynlock_value *l, const char *file, int line));
180 int mode, struct CRYPTO_dynlock_value *l, const char *file, int line);
/external/capstone/arch/ARM/
H A DARMModule.c16 // verify if requested mode is valid
17 if (ud->mode & ~(CS_MODE_LITTLE_ENDIAN | CS_MODE_ARM | CS_MODE_V8 |
34 if (ud->mode & CS_MODE_THUMB)
51 handle->mode = (cs_mode)value;
52 handle->big_endian = ((handle->mode & CS_MODE_BIG_ENDIAN) != 0);

Completed in 1174 milliseconds

<<11121314151617181920>>