Searched defs:state (Results 276 - 300 of 3052) sorted by relevance

<<11121314151617181920>>

/external/libopus/silk/float/
H A Dwarped_autocorrelation_FLP.c45 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[ orde
[all...]
/external/libopus/silk/
H A Dstereo_MS_to_LR.c36 stereo_dec_state *state, /* I/O State */
48 silk_memcpy( x1, state->sMid, 2 * sizeof( opus_int16 ) );
49 silk_memcpy( x2, state->sSide, 2 * sizeof( opus_int16 ) );
50 silk_memcpy( state->sMid, &x1[ frame_length ], 2 * sizeof( opus_int16 ) );
51 silk_memcpy( state->sSide, &x2[ frame_length ], 2 * sizeof( opus_int16 ) );
54 pred0_Q13 = state->pred_prev_Q13[ 0 ];
55 pred1_Q13 = state->pred_prev_Q13[ 1 ];
57 delta0_Q13 = silk_RSHIFT_ROUND( silk_SMULBB( pred_Q13[ 0 ] - state->pred_prev_Q13[ 0 ], denom_Q16 ), 16 );
58 delta1_Q13 = silk_RSHIFT_ROUND( silk_SMULBB( pred_Q13[ 1 ] - state->pred_prev_Q13[ 1 ], denom_Q16 ), 16 );
75 state
35 silk_stereo_MS_to_LR( stereo_dec_state *state, opus_int16 x1[], opus_int16 x2[], const opus_int32 pred_Q13[], opus_int fs_kHz, opus_int frame_length ) argument
[all...]
/external/libpng/contrib/arm-neon/
H A Dlinux.c31 /* This is a simple state machine which reads the input byte-by-byte until
40 } state; local
43 for (state=StartLine, counter=0;;)
56 switch (state)
64 state = Feature;
72 state = Colon;
77 state = SkipLine;
86 state = StartLine;
96 state = StartTag;
103 state
[all...]
/external/lldb/tools/debugserver/source/
H A DDNBThreadResumeActions.cpp51 nub_state_t state,
56 DNBThreadResumeAction action = { tid, state, signal, addr };
76 DNBThreadResumeActions::NumActionsWithState (nub_state_t state) const
82 if (m_actions[i].state == state)
48 AppendAction( nub_thread_t tid, nub_state_t state, int signal, nub_addr_t addr ) argument
/external/lzma/C/
H A DDelta.c6 void Delta_Init(Byte *state) argument
10 state[i] = 0;
20 void Delta_Encode(Byte *state, unsigned delta, Byte *data, SizeT size) argument
24 MyMemCpy(buf, state, delta);
39 MyMemCpy(state, buf + j, delta - j);
40 MyMemCpy(state + delta - j, buf, j);
43 void Delta_Decode(Byte *state, unsigned delta, Byte *data, SizeT size) argument
47 MyMemCpy(buf, state, delta);
60 MyMemCpy(state, buf + j, delta - j);
61 MyMemCpy(state
[all...]
H A DLzma2Dec.h20 int state; member in struct:__anon26700
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_vs_llvm.c78 FREE((void*) dvs->state.tokens);
85 const struct pipe_shader_state *state)
93 vs->base.state.tokens = tgsi_dup_tokens(state->tokens);
94 if (!vs->base.state.tokens) {
99 tgsi_scan_shader(state->tokens, &vs->base.info);
106 vs->base.state.stream_output = state->stream_output;
84 draw_create_vs_llvm(struct draw_context *draw, const struct pipe_shader_state *state) argument
/external/mesa3d/src/gallium/auxiliary/translate/
H A Dtranslate_cache.c57 struct translate *state = (struct translate*)cso_hash_iter_data(iter); local
59 if (state) {
60 state->release(state);
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_state_rasterizer.c41 * This function is used to turn that state off in one of the two
59 /* Partition rasterizer state into what we want the draw module to
62 struct lp_rast_state *state = MALLOC_STRUCT(lp_rast_state); local
63 if (state == NULL)
66 memcpy(&state->draw_state, rast, sizeof *rast);
67 memcpy(&state->lp_state, rast, sizeof *rast);
85 * the state.
88 clear_flags(&state->lp_state);
90 clear_flags(&state->draw_state);
92 return state;
101 const struct lp_rast_state *state = local
[all...]
/external/mesa3d/src/gallium/targets/graw-null/
H A Dgraw_util.c19 struct pipe_shader_state state; local
24 state.tokens = tokens;
25 return pipe->create_gs_state(pipe, &state);
33 struct pipe_shader_state state; local
38 state.tokens = tokens;
39 return pipe->create_vs_state(pipe, &state);
47 struct pipe_shader_state state; local
52 state.tokens = tokens;
53 return pipe->create_fs_state(pipe, &state);
/external/mesa3d/src/glsl/
H A Dast_type.cpp77 _mesa_glsl_parse_state *state,
98 _mesa_glsl_error(loc, state,
76 merge_qualifier(YYLTYPE *loc, _mesa_glsl_parse_state *state, ast_type_qualifier q) argument
H A Dhir_field_selection.cpp33 struct _mesa_glsl_parse_state *state)
35 void *ctx = state;
39 op = expr->subexpressions[0]->hir(instructions, state);
61 _mesa_glsl_error(& loc, state, "Invalid swizzle / mask `%s'",
69 _mesa_glsl_error(& loc, state, "Cannot access field `%s' of "
75 if (state->language_version < 120)
76 _mesa_glsl_error(&loc, state, "Methods not supported in GLSL 1.10.");
86 _mesa_glsl_error(&loc, state, "length method takes no arguments.");
89 _mesa_glsl_error(&loc, state, "length called on unsized array.");
93 _mesa_glsl_error(&loc, state, "Unknow
31 _mesa_ast_field_selection_to_hir(const ast_expression *expr, exec_list *instructions, struct _mesa_glsl_parse_state *state) argument
[all...]
/external/mesa3d/src/glx/
H A Dclientattrib.c43 __GLXattribute *state = (__GLXattribute *) (gc->client_state_private); local
47 index = __glXGetActiveTextureUnit(state);
50 if (!__glXSetArrayEnable(state, array, index, val)) {
73 __GLXattribute *state = (__GLXattribute *) (gc->client_state_private); local
84 sp->storePack = state->storePack;
85 sp->storeUnpack = state->storeUnpack;
88 __glXPushArrayState(state);
101 __GLXattribute *state = (__GLXattribute *) (gc->client_state_private); local
113 state->storePack = sp->storePack;
114 state
[all...]
H A Dpixelstore.c71 __GLXattribute *state = gc->client_state_private; local
85 state->storePack.rowLength = a;
93 state->storePack.imageHeight = a;
101 state->storePack.skipRows = a;
109 state->storePack.skipPixels = a;
117 state->storePack.skipImages = a;
126 state->storePack.alignment = a;
134 state->storePack.swapEndian = (param != 0);
137 state->storePack.lsbFirst = (param != 0);
146 state
221 __GLXattribute *state = gc->client_state_private; local
[all...]
/external/mesa3d/src/mesa/program/
H A Darbprogparse.c44 + a state variable, like "state.fog.color", or
72 struct asm_parser_state state; local
78 memset(&state, 0, sizeof(state));
79 state.prog = &prog;
82 &state)) {
119 program->OriginUpperLeft = state.option.OriginUpperLeft;
120 program->PixelCenterInteger = state.option.PixelCenterInteger;
122 program->UsesKill = state
168 struct asm_parser_state state; local
[all...]
/external/nist-sip/java/javax/sip/
H A DDialogState.java12 public static DialogState getObject(int state) { argument
14 return values()[state];
17 "Invalid dialog state: " + state);
/external/openfst/src/include/fst/
H A Dreweight.h36 // distributive when reweighting towards the initial state and right
39 // An arc of weight w, with an origin state of potential p and
40 // destination state of potential q, is reweighted by p\wq when
41 // reweighting towards the initial state and by pw/q when reweighting
61 FSTERROR() << "Reweight: Reweighting to the initial state requires "
70 typename Arc::StateId state = sit.Value(); local
71 if (state == potential.size())
73 typename Arc::Weight weight = potential[state];
75 for (MutableArcIterator< MutableFst<Arc> > ait(fst, state);
93 fst->SetFinal(state, Divid
101 typename Arc::StateId state = sit.Value(); local
110 typename Arc::StateId state = fst->Start(); local
130 typename Arc::StateId state = fst->AddState(); local
[all...]
/external/qemu/distrib/ext4_utils/src/
H A Dsha1.h31 uint32_t state[5]; member in struct:__anon29267
/external/qemu/distrib/sdl-1.2.15/src/video/dga/
H A DSDL_dgaevents.c97 static XComposeStatus state; local
100 if ( XLookupString(&xkey, keybuf, sizeof(keybuf), NULL, &state) ) {
/external/skia/experimental/Intersection/
H A DShapeOpCubic4x4_Test.cpp25 State4& state = *(State4*) data; local
37 if (state.a == fail[0] && state.b == fail[1] && state.c == fail[2] && state.d == fail[3]
49 pathA.moveTo(state.a, state.b);
50 str += sprintf(str, " path.moveTo(%d,%d);\n", state.a, state.b);
51 pathA.cubicTo(state
[all...]
H A DShapeOpRect4x4_Test.cpp21 State4& state = *(State4*) data; local
37 pathA.addRect(state.a, state.a, state.b, state.b, SkPath::kCW_Direction);
39 " SkPath::kCW_Direction);\n", state.a, state.a, state.b, state.b);
40 pathA.addRect(state
[all...]
/external/skia/src/core/
H A DSkVertState.cpp10 bool VertState::Triangles(VertState* state) { argument
11 int index = state->fCurrIndex;
12 if (index + 3 > state->fCount) {
15 state->f0 = index + 0;
16 state->f1 = index + 1;
17 state->f2 = index + 2;
18 state->fCurrIndex = index + 3;
22 bool VertState::TrianglesX(VertState* state) { argument
23 const uint16_t* indices = state->fIndices;
24 int index = state
35 TriangleStrip(VertState* state) argument
52 TriangleStripX(VertState* state) argument
70 TriangleFan(VertState* state) argument
82 TriangleFanX(VertState* state) argument
[all...]
/external/skia/tests/
H A DPathOpsOpLoopThreadedTest.cpp15 PathOpsThreadState& state = *data; local
17 bool progress = state.fReporter->verbose(); // FIXME: break out into its own parameter?
27 SkPoint midA = { SkIntToScalar(a * state.fA + c * (6 - state.fA)) / 6,
28 SkIntToScalar(b * state.fA + d * (6 - state.fA)) / 6 };
29 SkPoint midB = { SkIntToScalar(a * state.fB + c * (6 - state.fB)) / 6,
30 SkIntToScalar(b * state.fB + d * (6 - state
85 PathOpsThreadState state; local
[all...]
H A DPathOpsOpRectThreadedTest.cpp20 PathOpsThreadState& state = *data; local
22 bool progress = state.fReporter->verbose(); // FIXME: break out into its own parameter?
38 " SkPath::kCW_Direction);\n", state.fA, state.fA, state.fB, state.fB);
40 " SkPath::kCW_Direction);\n", state.fC, state.fC, state.fD, state
[all...]
/external/smack/src/org/jivesoftware/smackx/packet/
H A DChatStateExtension.java29 * Represents a chat state which is an extension to message packets which is used to indicate
37 private ChatState state; field in class:ChatStateExtension
40 * Default constructor. The argument provided is the state that the extension will represent.
42 * @param state the state that the extension represents.
44 public ChatStateExtension(ChatState state) { argument
45 this.state = state;
49 return state.name();
63 ChatState state;
[all...]

Completed in 2362 milliseconds

<<11121314151617181920>>