HomeSort by relevance Sort by last modified time
    Searched defs:state (Results 26 - 50 of 5034) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/toybox/toys/android/
setenforce.c 23 int state, ret; local
26 else if (!strcmp(new, "1") || !strcasecmp(new, "enforcing")) state = 1;
27 else if (!strcmp(new, "0") || !strcasecmp(new, "permissive")) state = 0;
28 else error_exit("Invalid state: %s", new);
30 ret = security_setenforce(state);
  /external/tpm2/
HierarchyControl_fp.h 15 TPMI_YES_NO state; member in struct:__anon40410
  /external/wpa_supplicant_8/src/crypto/
sha1_i.h 13 u32 state[5]; member in struct:SHA1Context
21 void SHA1Transform(u32 state[5], const unsigned char buffer[64]);
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/check/
CRC32.java 13 private final java.util.zip.CRC32 state = new java.util.zip.CRC32(); field in class:CRC32
21 state.update(buf, off, len);
25 long value = state.getValue();
30 state.reset();
  /tools/tradefederation/core/tests/src/com/android/tradefed/util/
KeyguardControllerStateTest.java 37 KeyguardControllerState state = KeyguardControllerState.create(testOutput); local
38 Assert.assertNull(state);
51 KeyguardControllerState state = KeyguardControllerState.create(testOutput); local
52 Assert.assertTrue(state.isKeyguardShowing());
53 Assert.assertFalse(state.isKeyguardOccluded());
  /frameworks/base/apct-tests/perftests/core/src/android/graphics/perftests/
PaintMeasureTextTest.java 74 BenchmarkState state = mPerfStatusReporter.getBenchmarkState(); local
82 while (state.keepRunning()) {
84 state.pauseTiming();
86 state.resumeTiming();
  /bionic/libc/bionic/
c16rtomb.cpp 45 mbstate_t* state = (ps == NULL) ? &__private_state : ps; local
46 if (mbsinit(state)) {
49 mbstate_set_byte(state, 3, (c32 & 0xff0000) >> 16);
50 mbstate_set_byte(state, 2, (c32 & 0x00ff00) >> 8);
53 return mbstate_reset_and_return_illegal(EINVAL, state);
55 return c32rtomb(s, static_cast<char32_t>(c16), state);
59 return mbstate_reset_and_return_illegal(EINVAL, state);
62 char32_t c32 = ((mbstate_get_byte(state, 3) << 16) |
63 (mbstate_get_byte(state, 2) << 8) |
65 return mbstate_reset_and_return(c32rtomb(s, c32, NULL), state);
    [all...]
  /bionic/libc/upstream-netbsd/android/include/sys/
sha1.h 19 uint32_t state[5]; member in struct:__anon1428
  /dalvik/libdex/
sha1.h 8 unsigned long state[5]; member in struct:SHA1_CTX
  /device/google/contexthub/firmware/os/inc/algos/
ap_hub_sync.h 47 uint8_t state; // internal state of the sync member in struct:ApHubSync
  /external/ImageMagick/PerlMagick/demo/
Turtle.pm 36 sub state subroutine
  /external/boringssl/src/crypto/poly1305/
poly1305_test.cc 32 poly1305_state state; local
33 CRYPTO_poly1305_init(&state, key.data());
43 CRYPTO_poly1305_update(&state, in.data(), todo);
51 CRYPTO_poly1305_update(&state, in.data() + done, 128 + excess);
58 CRYPTO_poly1305_update(&state, in.data() + done, excess);
63 CRYPTO_poly1305_update(&state, in.data() + done, in.size() - done);
67 CRYPTO_poly1305_finish(&state, out);
81 poly1305_state state;
82 CRYPTO_poly1305_init(&state, key.data());
83 CRYPTO_poly1305_update(&state, in.data(), in.size())
    [all...]
  /external/dhcpcd-6.8.2/crypt/
sha256.h 37 uint32_t state[8]; member in struct:SHA256Context
  /external/fio/crc/
sha256.h 9 uint32_t state[SHA256_DIGEST_SIZE / 4]; member in struct:fio_sha256_ctx
sha512.h 5 uint64_t state[8]; member in struct:fio_sha512_ctx
  /external/google-breakpad/src/processor/
exploitability_unittest.cc 62 ProcessState state; local
66 if (processor.Process(minidump_file, &state) !=
71 return state.exploitability();
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/bdd/
ComparingTest.java 39 Map<String, Object> state = new HashMap<>(); local
42 new SharedSteps(state),
ManipulationTest.java 39 Map<String, Object> state = new HashMap<>(); local
42 new SharedSteps(state),
43 new ManipulationSteps(state));
ParsingTest.java 39 Map<String, Object> state = new HashMap<>(); local
42 new SharedSteps(state),
43 new ParsingSteps(state));
PositionRangeTest.java 39 Map<String, Object> state = new HashMap<>(); local
42 new SharedSteps(state),
VisitorTest.java 39 Map<String, Object> state = new HashMap<>(); local
41 new SharedSteps(state),
42 new VisitorSteps(state));
  /external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.dtor/
null.pass.cpp 28 int state() const { return state_; } function in class:Deleter
36 assert(d.state() == 0);
42 assert(d.state() == 0);
  /external/libopus/silk/float/
warped_autocorrelation_FLP.c 45 double state[ MAX_SHAPE_LPC_ORDER + 1 ] = { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 }; local
57 tmp2 = state[ i ] + warping * ( state[ i + 1 ] - tmp1 );
58 state[ i ] = tmp1;
59 C[ i ] += state[ 0 ] * tmp1;
61 tmp1 = state[ i + 1 ] + warping * ( state[ i + 2 ] - tmp2 );
62 state[ i + 1 ] = tmp2;
63 C[ i + 1 ] += state[ 0 ] * tmp2;
65 state[ order ] = tmp1
    [all...]
  /external/libxaac/decoder/
ixheaacd_mps_polyphase.h 26 WORD32 state[1280]; member in struct:ia_mps_poly_phase_synth_struct
  /external/lzma/C/
Sha256.h 15 UInt32 state[8]; member in struct:__anon28744

Completed in 654 milliseconds

12 3 4 5 6 7 8 91011>>