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

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/openssl/openssl/crypto/poly1305/
poly1305.c 95 void CRYPTO_poly1305_init_neon(poly1305_state* state,
98 void CRYPTO_poly1305_update_neon(poly1305_state* state,
102 void CRYPTO_poly1305_finish_neon(poly1305_state* state, unsigned char mac[16]);
122 /* poly1305_blocks updates |state| given some amount of input data. This
126 static void poly1305_update(struct poly1305_state_st *state,
148 state->h0 += t0 & 0x3ffffff;
149 state->h1 += ((((uint64_t)t1 << 32) | t0) >> 26) & 0x3ffffff;
150 state->h2 += ((((uint64_t)t2 << 32) | t1) >> 20) & 0x3ffffff;
151 state->h3 += ((((uint64_t)t3 << 32) | t2) >> 14) & 0x3ffffff;
152 state->h4 += (t3 >> 8) | (1 << 24)
219 struct poly1305_state_st *state = (struct poly1305_state_st*) statep; local
262 struct poly1305_state_st *state = (struct poly1305_state_st*) statep; local
308 struct poly1305_state_st *state = (struct poly1305_state_st*) statep; local
    [all...]
  /system/core/init/
ueventd_parser.c 27 static void parse_line_device(struct parse_state *state, int nargs, char **args);
31 struct parse_state state; local
35 state.filename = fn;
36 state.line = 1;
37 state.ptr = s;
38 state.nexttoken = 0;
39 state.parse_line = parse_line_device;
41 int token = next_token(&state);
44 state.parse_line(&state, 0, 0)
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
inflate.c 26 * - Change strm->next_out[-state->offset] to *(strm->next_out - state->offset)
30 * - Add comments on state->bits assertion in inffast.c
95 local void fixedtables OF((struct inflate_state FAR *state));
106 struct inflate_state FAR *state; local
108 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
109 state = (struct inflate_state FAR *)strm->state;
110 strm->total_in = strm->total_out = state->total = 0;
113 state->mode = HEAD
133 struct inflate_state FAR *state; local
150 struct inflate_state FAR *state; local
272 struct inflate_state state; local
327 struct inflate_state FAR *state; local
558 struct inflate_state FAR *state; local
    [all...]
  /bionic/tests/
string_test.cpp 174 // Calculate input lengths and fill state.len with them.
192 StringTestState<char> state(SMALL);
193 for (size_t i = 1; i < state.n; i++) {
195 state.NewIteration();
197 memset(state.ptr2, '\2', state.MAX_LEN);
198 state.ptr2[state.MAX_LEN - 1] = '\0';
199 memcpy(state.ptr, state.ptr2, 2 * state.MAX_LEN)
    [all...]
  /external/chromium_org/third_party/icu/source/common/
rbbicst.pl 6 # rbbicst Compile the RBBI rule paser state table data into initialized C data.
26 $num_states = 1; # Always the state number for the line being compiled.
29 $states{"pop"} = 255; # Add the "pop" to the list of defined state names.
30 # This prevents any state from being labelled with "pop",
31 # and resolves references to "pop" in the next state field.
53 # State Label: handling.
54 # Does the first token end with a ":"? If so, it's the name of a state.
55 # Put in a hash, together with the current state number,
60 $state_name =~ s/://; # strip off the colon from the state name.
63 print " rbbicst: at line $line-num duplicate definition of state $state_name\n"
    [all...]
  /external/icu4c/common/
rbbicst.pl 6 # rbbicst Compile the RBBI rule paser state table data into initialized C data.
26 $num_states = 1; # Always the state number for the line being compiled.
29 $states{"pop"} = 255; # Add the "pop" to the list of defined state names.
30 # This prevents any state from being labelled with "pop",
31 # and resolves references to "pop" in the next state field.
53 # State Label: handling.
54 # Does the first token end with a ":"? If so, it's the name of a state.
55 # Put in a hash, together with the current state number,
60 $state_name =~ s/://; # strip off the colon from the state name.
63 print " rbbicst: at line $line-num duplicate definition of state $state_name\n"
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
RecognizerSharedState.java 32 * and recover from errors etc... As a separate state object, it can be
35 * These fields are publically visible but the actual state pointer per
83 // LEXER FIELDS (must be in same state object to avoid casting
122 public RecognizerSharedState(RecognizerSharedState state) {
123 if ( this.following.length < state.following.length ) {
124 this.following = new BitSet[state.following.length];
126 System.arraycopy(state.following, 0, this.following, 0, state.following.length);
127 this._fsp = state._fsp;
128 this.errorRecovery = state.errorRecovery
    [all...]
  /external/chromium_org/third_party/zlib/
gzlib.c 72 /* Reset gzip file state */
73 local void gz_reset(state)
74 gz_statep state;
76 if (state->mode == GZ_READ) { /* for reading ... */
77 state->have = 0; /* no output data available */
78 state->eof = 0; /* not at end of file */
79 state->how = LOOK; /* look for gzip header */
80 state->direct = 1; /* default for empty file */
82 state->seek = 0; /* no seek request pending */
83 gz_error(state, Z_OK, NULL); /* clear error *
94 gz_statep state; local
234 gz_statep state; local
258 gz_statep state; local
284 gz_statep state; local
368 gz_statep state; local
396 gz_statep state; local
428 gz_statep state; local
447 gz_statep state; local
466 gz_statep state; local
    [all...]
  /dalvik/vm/jdwp/
JdwpMain.cpp 76 JdwpState* state = NULL; local
81 state = (JdwpState*) calloc(1, sizeof(JdwpState));
83 state->params = *pParams;
85 state->requestSerial = 0x10000000;
86 state->eventSerial = 0x20000000;
87 dvmDbgInitMutex(&state->threadStartLock);
88 dvmDbgInitMutex(&state->attachLock);
89 dvmDbgInitMutex(&state->serialLock);
90 dvmDbgInitMutex(&state->eventLock);
91 state->eventThreadId = 0
258 JdwpState* state = (JdwpState*) arg; local
    [all...]
JdwpPriv.h 52 bool (*startup)(struct JdwpState* state, const JdwpStartupParams* pParams);
53 bool (*accept)(struct JdwpState* state);
54 bool (*establish)(struct JdwpState* state);
55 void (*close)(struct JdwpState* state);
56 void (*shutdown)(struct JdwpState* state);
57 void (*free)(struct JdwpState* state);
58 bool (*isConnected)(struct JdwpState* state);
59 bool (*awaitingHandshake)(struct JdwpState* state);
60 bool (*processIncoming)(struct JdwpState* state);
61 bool (*sendRequest)(struct JdwpState* state, ExpandBuf* pReq)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
radeonsi_pm4.c 35 void si_pm4_cmd_begin(struct si_pm4_state *state, unsigned opcode)
37 state->last_opcode = opcode;
38 state->last_pm4 = state->ndw++;
41 void si_pm4_cmd_add(struct si_pm4_state *state, uint32_t dw)
43 state->pm4[state->ndw++] = dw;
46 void si_pm4_cmd_end(struct si_pm4_state *state, bool predicate)
49 count = state->ndw - state->last_pm4 - 2
179 struct si_pm4_state *state = rctx->queued.array[i]; local
194 struct si_pm4_state *state = rctx->queued.array[i]; local
225 struct si_pm4_state *state = rctx->queued.array[i]; local
    [all...]
  /external/mesa3d/src/gallium/drivers/radeonsi/
radeonsi_pm4.c 35 void si_pm4_cmd_begin(struct si_pm4_state *state, unsigned opcode)
37 state->last_opcode = opcode;
38 state->last_pm4 = state->ndw++;
41 void si_pm4_cmd_add(struct si_pm4_state *state, uint32_t dw)
43 state->pm4[state->ndw++] = dw;
46 void si_pm4_cmd_end(struct si_pm4_state *state, bool predicate)
49 count = state->ndw - state->last_pm4 - 2
179 struct si_pm4_state *state = rctx->queued.array[i]; local
194 struct si_pm4_state *state = rctx->queued.array[i]; local
225 struct si_pm4_state *state = rctx->queued.array[i]; local
    [all...]
  /external/webrtc/src/common_audio/signal_processing/
resample_by_2_internal.c 29 // state: filter state array; length = 8
32 WebRtc_Word32 *state)
43 diff = tmp0 - state[1];
46 tmp1 = state[0] + diff * kResampleAllpass[1][0];
47 state[0] = tmp0;
48 diff = tmp1 - state[2];
53 tmp0 = state[1] + diff * kResampleAllpass[1][1];
54 state[1] = tmp1;
55 diff = tmp0 - state[3]
    [all...]
  /external/chromium_org/net/base/
load_states.h 24 // This class provides an easy way to hold a load state with an extra parameter.
26 LoadState state; member in struct:net::LoadStateWithParam
28 LoadStateWithParam() : state(LOAD_STATE_IDLE) {}
29 LoadStateWithParam(LoadState state, const base::string16& param)
30 : state(state), param(param) {}
  /external/libpcap/missing/
snprintf.c 63 * Common state
66 struct state { struct
72 int (*append_char)(struct state *, unsigned char);
73 int (*reserve)(struct state *, size_t);
79 sn_reserve (struct state *state, size_t n)
81 return state->s + n > state->theend;
85 sn_append_char (struct state *state, unsigned char c
612 struct state state; local
    [all...]
  /external/tcpdump/missing/
snprintf.c 63 * Common state
66 struct state { struct
72 int (*append_char)(struct state *, unsigned char);
73 int (*reserve)(struct state *, size_t);
79 sn_reserve (struct state *state, size_t n)
81 return state->s + n > state->theend;
85 sn_append_char (struct state *state, unsigned char c
612 struct state state; local
    [all...]
  /external/e2fsprogs/lib/e2p/
ps.c 2 * ps.c - Print filesystem state
23 void print_fs_state (FILE * f, unsigned short state)
25 if (state & EXT2_VALID_FS)
29 if (state & EXT2_ERROR_FS)
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/trace/
tr_dump_state.c 110 void trace_dump_rasterizer_state(const struct pipe_rasterizer_state *state)
115 if(!state) {
122 trace_dump_member(bool, state, flatshade);
123 trace_dump_member(bool, state, light_twoside);
124 trace_dump_member(bool, state, clamp_vertex_color);
125 trace_dump_member(bool, state, clamp_fragment_color);
126 trace_dump_member(uint, state, front_ccw);
127 trace_dump_member(uint, state, cull_face);
128 trace_dump_member(uint, state, fill_front);
129 trace_dump_member(uint, state, fill_back)
    [all...]
  /external/mesa3d/src/gallium/drivers/trace/
tr_dump_state.c 110 void trace_dump_rasterizer_state(const struct pipe_rasterizer_state *state)
115 if(!state) {
122 trace_dump_member(bool, state, flatshade);
123 trace_dump_member(bool, state, light_twoside);
124 trace_dump_member(bool, state, clamp_vertex_color);
125 trace_dump_member(bool, state, clamp_fragment_color);
126 trace_dump_member(uint, state, front_ccw);
127 trace_dump_member(uint, state, cull_face);
128 trace_dump_member(uint, state, fill_front);
129 trace_dump_member(uint, state, fill_back)
    [all...]
  /external/chromium_org/base/
lazy_instance.cc 18 bool NeedsLazyInstance(subtle::AtomicWord* state) {
21 // The memory access has no memory ordering as state 0 and
24 if (subtle::NoBarrier_CompareAndSwap(state, 0,
34 while (subtle::Acquire_Load(state) == kLazyInstanceStateCreating) {
41 void CompleteLazyInstance(subtle::AtomicWord* state,
46 ANNOTATE_HAPPENS_BEFORE(state);
51 subtle::Release_Store(state, new_instance);
  /external/chromium_org/v8/src/
once.cc 43 AtomicWord state = Acquire_Load(once); local
45 if (state == ONCE_STATE_DONE) {
54 // First, try to change the state from UNINITIALIZED to EXECUTING_FUNCTION
56 state = Acquire_CompareAndSwap(
58 if (state == ONCE_STATE_UNINITIALIZED) {
66 while (state == ONCE_STATE_EXECUTING_FUNCTION) {
72 state = Acquire_Load(once);
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ProgramState_Fwd.h 20 void ProgramStateRetain(const ProgramState *state);
21 void ProgramStateRelease(const ProgramState *state);
27 static void retain(const clang::ento::ProgramState *state) {
28 clang::ento::ProgramStateRetain(state);
30 static void release(const clang::ento::ProgramState *state) {
31 clang::ento::ProgramStateRelease(state);
  /external/v8/src/
once.cc 43 AtomicWord state = Acquire_Load(once); local
45 if (state == ONCE_STATE_DONE) {
54 // First, try to change the state from UNINITIALIZED to EXECUTING_FUNCTION
56 state = Acquire_CompareAndSwap(
58 if (state == ONCE_STATE_UNINITIALIZED) {
66 while (state == ONCE_STATE_EXECUTING_FUNCTION) {
72 state = Acquire_Load(once);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
NodeFilter.cpp 30 short NodeFilter::acceptNode(ScriptState* state, Node* node) const
33 return m_condition ? m_condition->acceptNode(state, node) : static_cast<short>(FILTER_ACCEPT);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/fpos/fpos.members/
state.pass.cpp 14 // void state(stateT s);
22 f.state(3);
23 assert(f.state() == 3);

Completed in 1564 milliseconds

12 3 4 5 6 7 8 91011>>