Searched refs:modes (Results 126 - 150 of 259) sorted by relevance

1234567891011

/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/number/
H A DPropertiesTest.java277 RoundingMode[] modes = RoundingMode.values();
278 return new MathContext(seed, modes[seed % modes.length]);
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/
H A DPropertiesTest.java274 RoundingMode[] modes = RoundingMode.values();
275 return new MathContext(seed, modes[seed % modes.length]);
/external/scapy/scapy/layers/tls/crypto/
H A Dcipher_aead.py25 from cryptography.hazmat.primitives.ciphers import Cipher, algorithms, modes namespace
225 pc_cls_mode = modes.GCM
394 pc_cls_mode = modes.GCM
/external/autotest/client/cros/cellular/pseudomodem/
H A Dmodem.py29 'allowed-modes',
711 def SetCurrentModes(self, modes):
716 @param modes: Specifies all the modes allowed in the modem as a bitmask
723 if not modes in allowed:
725 'Mode not supported: ' + repr(modes))
726 self.Set(mm1_constants.I_MODEM, 'CurrentModes', modes)
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
H A DCFBBlockCipher.java1 package org.bouncycastle.crypto.modes;
H A DCTSBlockCipher.java1 package org.bouncycastle.crypto.modes;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/
H A DRC2.java23 import org.bouncycastle.crypto.modes.CBCBlockCipher;
/external/libopus/tests/
H A Dtest_opus_decode.c63 unsigned char modes[4096]; local
221 fprintf(stdout," dec[all] all 2-byte prefix for length 3 and PLC, all modes (64) OK.\n");
241 /*We only test a subset of the modes here simply because the longer
306 fprintf(stdout," dec[all] random packets, all modes (64), every 8th size from from %d bytes to maximum OK.\n",2+skip);
308 debruijn2(64,modes);
313 packet[0]=modes[i]<<2;
340 packet[0]=modes[i]<<2;
/external/ltp/testcases/kernel/timers/leapsec/
H A Dleapsec_timer.c90 tx->modes = ADJ_STATUS;
/external/mesa3d/src/glx/
H A Dpixel.c78 ** Copy bitmap data from clients packed memory applying unpacking modes as the
79 ** data is transfered into the destImage buffer. Return in modes the
80 ** set of pixel modes that are to be done by the server.
159 ** Extract array from user's data applying all pixel store modes.
166 const GLvoid * userdata, GLubyte * newimage, GLubyte * modes)
255 /* Setup store modes that describe what we just did */
256 if (modes) {
258 (void) memcpy(modes, __glXDefaultPixelStore + 4, 20);
261 (void) memcpy(modes, __glXDefaultPixelStore + 0, 36);
268 ** into the clients memory using the pixel store PACK modes
164 __glFillImage(struct glx_context * gc, GLint dim, GLint width, GLint height, GLint depth, GLenum format, GLenum type, const GLvoid * userdata, GLubyte * newimage, GLubyte * modes) argument
[all...]
/external/mesa3d/src/mesa/drivers/dri/common/
H A Ddri_util.c300 const struct gl_config *modes = (config != NULL) ? &config->modes : NULL; local
448 if (!screen->driver->CreateContext(mesa_api, modes, context,
665 if (!screen->driver->CreateBuffer(screen, pdraw, &config->modes,
/external/webp/src/enc/
H A Diterator_enc.c334 void VP8SetIntra4Mode(const VP8EncIterator* const it, const uint8_t* modes) { argument
338 memcpy(preds, modes, 4 * sizeof(*modes));
340 modes += 4;
/external/python/cpython3/Lib/
H A D_pyio.py59 available modes are:
79 Python distinguishes between files opened in binary and text modes,
155 modes, it returns a BufferedWriter, and in read/write mode, it returns
175 modes = set(mode)
176 if modes - set("axrwb+tU") or len(mode) > len(modes):
178 creating = "x" in modes
179 reading = "r" in modes
180 writing = "w" in modes
181 appending = "a" in modes
[all...]
/external/linux-kselftest/tools/testing/selftests/ptp/
H A Dtestptp.c295 tx.modes = ADJ_FREQUENCY;
306 tx.modes = ADJ_SETOFFSET;
/external/minijail/
H A Dminijail0_cli_unittest.cc427 // This should list all valid modes.
428 const std::vector<std::string> modes = { local
435 for (const auto& mode : modes) {
/external/skia/gm/
H A Dcolorfilterimagefilter.cpp235 const SkBlendMode modes[] = { local
243 for (auto mode : modes) {
H A Ddrawatlas.cpp246 const SkBlendMode modes[] = { local
253 for (SkBlendMode mode : modes) {
H A Dtablecolorfilter.cpp207 ComposeColorFilterGM(const SkColor colors[], const SkBlendMode modes[], argument
209 : fColors(colors), fModes(modes)
/external/skqp/gm/
H A Dcolorfilterimagefilter.cpp235 const SkBlendMode modes[] = { local
243 for (auto mode : modes) {
H A Ddrawatlas.cpp238 const SkBlendMode modes[] = { local
245 for (SkBlendMode mode : modes) {
H A Dtablecolorfilter.cpp207 ComposeColorFilterGM(const SkColor colors[], const SkBlendMode modes[], argument
209 : fColors(colors), fModes(modes)
/external/walt/docs/
H A DChromeOS.md3 WALT can be used on ChromeOS in two different modes:
/external/blktrace/btt/
H A Doutput.c367 long long *lp = mp->modes;
409 median, nmodes > 0 ? m.modes[0] : 0, m.most_seeks);
414 fprintf(ofp, " %lld", m.modes[i]);
424 nmodes > 0 ? m.modes[0] : 0, m.most_seeks);
426 fprintf(xavgs_ofp, " %lld", m.modes[i]);
434 free(m.modes);
/external/python/cpython2/Lib/
H A D_pyio.py64 modes are:
83 Python distinguishes between files opened in binary and text modes,
147 modes, it returns a BufferedWriter, and in read/write mode, it returns
165 modes = set(mode)
166 if modes - set("arwb+tU") or len(mode) > len(modes):
168 reading = "r" in modes
169 writing = "w" in modes
170 appending = "a" in modes
171 updating = "+" in modes
[all...]
/external/wpa_supplicant_8/wpa_supplicant/
H A Dwpa_supplicant.c412 if (wpa_s->hw.modes == NULL)
416 os_free(wpa_s->hw.modes[i].channels);
417 os_free(wpa_s->hw.modes[i].rates);
420 os_free(wpa_s->hw.modes);
421 wpa_s->hw.modes = NULL;
1978 for (i = 0; wpa_s->hw.modes && i < wpa_s->hw.num_modes; i++) {
1979 if (wpa_s->hw.modes[i].mode == hw_mode) {
1980 mode = &wpa_s->hw.modes[i];
2049 for (i = 0; wpa_s->hw.modes && i < wpa_s->hw.num_modes; i++) {
2050 if (wpa_s->hw.modes[
4498 wpas_fst_get_hw_modes(void *ctx, struct hostapd_hw_modes **modes) argument
6903 get_mode(struct hostapd_hw_modes *modes, u16 num_modes, enum hostapd_hw_mode mode) argument
[all...]

Completed in 1298 milliseconds

1234567891011