/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/ |
vg_state.c | 31 void vg_init_state(struct vg_state *state) 33 state->matrix_mode = VG_MATRIX_PATH_USER_TO_SURFACE; 34 state->fill_rule = VG_EVEN_ODD; 35 state->image_quality = VG_IMAGE_QUALITY_FASTER; 36 state->rendering_quality = VG_RENDERING_QUALITY_BETTER; 37 state->blend_mode = VG_BLEND_SRC_OVER; 38 state->image_mode = VG_DRAW_IMAGE_NORMAL; 40 memset(state->scissor_rects, 0, sizeof(state->scissor_rects)); 41 state->scissor_rects_num = 0 [all...] |
/external/mesa3d/src/gallium/state_trackers/vega/ |
vg_state.c | 31 void vg_init_state(struct vg_state *state) 33 state->matrix_mode = VG_MATRIX_PATH_USER_TO_SURFACE; 34 state->fill_rule = VG_EVEN_ODD; 35 state->image_quality = VG_IMAGE_QUALITY_FASTER; 36 state->rendering_quality = VG_RENDERING_QUALITY_BETTER; 37 state->blend_mode = VG_BLEND_SRC_OVER; 38 state->image_mode = VG_DRAW_IMAGE_NORMAL; 40 memset(state->scissor_rects, 0, sizeof(state->scissor_rects)); 41 state->scissor_rects_num = 0 [all...] |
/external/chromium_org/third_party/mesa/src/src/glsl/ |
builtin_stubs.cpp | 36 _mesa_glsl_initialize_functions(_mesa_glsl_parse_state *state) 38 (void) state;
|
/external/mesa3d/src/glsl/ |
builtin_stubs.cpp | 36 _mesa_glsl_initialize_functions(_mesa_glsl_parse_state *state) 38 (void) state;
|
/external/chromium_org/base/third_party/symbolize/ |
demangle.cc | 138 // State needed for demangling. 151 } State; 174 static void InitState(State *state, const char *mangled, 176 state->mangled_cur = mangled; 177 state->mangled_end = mangled + StrLen(mangled); 178 state->out_cur = out; 179 state->out_begin = out; 180 state->out_end = out + out_size; 181 state->prev_name = NULL 1224 State state; local [all...] |
/external/dropbear/libtomcrypt/src/mac/pmac/ |
pmac_done.c | 20 int pmac_done(pmac_state *state, unsigned char *out, unsigned long *outlen) 24 LTC_ARGCHK(state != NULL); 26 if ((err = cipher_is_valid(state->cipher_idx)) != CRYPT_OK) { 30 if ((state->buflen > (int)sizeof(state->block)) || (state->buflen < 0) || 31 (state->block_len > (int)sizeof(state->block)) || (state->buflen > state->block_len)) [all...] |
/external/chromium_org/third_party/zlib/ |
gzread.c | 18 state->fd, and update state->eof, state->err, and state->msg as appropriate. 21 local int gz_load(state, buf, len, have) 22 gz_statep state; 31 ret = read(state->fd, buf + *have, len - *have); 37 gz_error(state, Z_ERRNO, zstrerror()); 41 state->eof = 1; 50 local int gz_avail(state) 368 gz_statep state; local 458 gz_statep state; local 486 gz_statep state; local 547 gz_statep state; local 606 gz_statep state; local 631 gz_statep state; local [all...] |
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 135 struct inflate_state FAR *state; local 175 struct inflate_state FAR *state; local 214 struct inflate_state FAR *state; local 307 struct inflate_state state; local 362 struct inflate_state FAR *state; local 593 struct inflate_state FAR *state; local [all...] |
/external/zlib/src/ |
gzread.c | 17 state->fd, and update state->eof, state->err, and state->msg as appropriate. 20 local int gz_load(state, buf, len, have) 21 gz_statep state; 30 ret = read(state->fd, buf + *have, len - *have); 36 gz_error(state, Z_ERRNO, zstrerror()); 40 state->eof = 1; 51 local int gz_avail(state) 294 gz_statep state; local 392 gz_statep state; local 427 gz_statep state; local 491 gz_statep state; local 550 gz_statep state; local 571 gz_statep state; local [all...] |
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)); 107 struct inflate_state FAR *state; local 109 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR; 110 state = (struct inflate_state FAR *)strm->state; 111 strm->total_in = strm->total_out = state->total = 0; 113 if (state->wrap) /* to support ill-conceived Java test suite * 132 struct inflate_state FAR *state; local 147 struct inflate_state FAR *state; local 187 struct inflate_state FAR *state; local 235 struct inflate_state FAR *state; local 328 struct inflate_state state; local 384 struct inflate_state FAR *state; local 609 struct inflate_state FAR *state; local [all...] |
gzlib.c | 74 /* Reset gzip file state */ 75 local void gz_reset(state) 76 gz_statep state; 78 state->x.have = 0; /* no output data available */ 79 if (state->mode == GZ_READ) { /* for reading ... */ 80 state->eof = 0; /* not at end of file */ 81 state->past = 0; /* have not read past end yet */ 82 state->how = LOOK; /* look for gzip header */ 84 state->seek = 0; /* no seek request pending */ 85 gz_error(state, Z_OK, NULL); /* clear error * 96 gz_statep state; local 318 gz_statep state; local 342 gz_statep state; local 369 gz_statep state; local 454 gz_statep state; local 482 gz_statep state; local 514 gz_statep state; local 532 gz_statep state; local 552 gz_statep state; local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/trace/ |
tr_dump_state.h | 42 void trace_dump_rasterizer_state(const struct pipe_rasterizer_state *state); 44 void trace_dump_poly_stipple(const struct pipe_poly_stipple *state); 46 void trace_dump_viewport_state(const struct pipe_viewport_state *state); 48 void trace_dump_scissor_state(const struct pipe_scissor_state *state); 50 void trace_dump_clip_state(const struct pipe_clip_state *state); 54 void trace_dump_shader_state(const struct pipe_shader_state *state); 56 void trace_dump_depth_stencil_alpha_state(const struct pipe_depth_stencil_alpha_state *state); 58 void trace_dump_blend_state(const struct pipe_blend_state *state); 60 void trace_dump_blend_color(const struct pipe_blend_color *state); 62 void trace_dump_stencil_ref(const struct pipe_stencil_ref *state); [all...] |
/external/mesa3d/src/gallium/drivers/trace/ |
tr_dump_state.h | 42 void trace_dump_rasterizer_state(const struct pipe_rasterizer_state *state); 44 void trace_dump_poly_stipple(const struct pipe_poly_stipple *state); 46 void trace_dump_viewport_state(const struct pipe_viewport_state *state); 48 void trace_dump_scissor_state(const struct pipe_scissor_state *state); 50 void trace_dump_clip_state(const struct pipe_clip_state *state); 54 void trace_dump_shader_state(const struct pipe_shader_state *state); 56 void trace_dump_depth_stencil_alpha_state(const struct pipe_depth_stencil_alpha_state *state); 58 void trace_dump_blend_state(const struct pipe_blend_state *state); 60 void trace_dump_blend_color(const struct pipe_blend_color *state); 62 void trace_dump_stencil_ref(const struct pipe_stencil_ref *state); [all...] |
/frameworks/av/media/libstagefright/codecs/amrnb/common/src/ |
q_plsf.cpp | 74 * Purpose : Allocates memory and initializes state variables 78 Word16 Q_plsf_init(Q_plsfState **state) 82 if (state == (Q_plsfState **) NULL) 87 *state = NULL; 92 /* fprintf(stderr, "Q_plsf_init: can not malloc state structure\n"); */ 97 *state = s; 106 * Purpose : Resets state memory 110 Word16 Q_plsf_reset(Q_plsfState *state) 114 if (state == (Q_plsfState *) NULL) 121 state->past_rq[i] = 0 [all...] |
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
DocumentLifecycle.cpp | 47 void DocumentLifecycle::advanceTo(State state) 51 ASSERT(state > m_state || (state == Disposed && m_state == Disposed)); 52 m_state = state;
|
/external/jmdns/src/javax/jmdns/impl/tasks/state/ |
package-info.java | 1 package javax.jmdns.impl.tasks.state;
|
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/ |
PackageVerificationStateTest.java | 32 PackageVerificationState state = new PackageVerificationState(REQUIRED_UID, null); local 35 state.isVerificationComplete()); 37 state.setVerifierResponse(REQUIRED_UID, PackageManager.VERIFICATION_ALLOW); 40 state.isVerificationComplete()); 43 state.isInstallAllowed()); 47 PackageVerificationState state = new PackageVerificationState(REQUIRED_UID, null); local 50 state.isVerificationComplete()); 52 state.setVerifierResponse(REQUIRED_UID, PackageManager.VERIFICATION_REJECT); 55 state.isVerificationComplete()); 58 state.isInstallAllowed()) 62 PackageVerificationState state = new PackageVerificationState(REQUIRED_UID, null); local 87 PackageVerificationState state = new PackageVerificationState(REQUIRED_UID, null); local 112 PackageVerificationState state = new PackageVerificationState(REQUIRED_UID, null); local 138 PackageVerificationState state = new PackageVerificationState(REQUIRED_UID, null); local 169 PackageVerificationState state = new PackageVerificationState(REQUIRED_UID, null); local [all...] |
/external/chromium_org/cc/scheduler/ |
scheduler_state_machine_unittest.cc | 11 EXPECT_EQ(action, state.NextAction()) << *state.AsValue(); \ 15 state.CommitState() && \ 17 state.output_surface_state()) \ 20 state.begin_impl_frame_state()) \ 21 << *state.AsValue(); \ 23 state.UpdateState(action); \ 25 if (state.begin_impl_frame_state() == \ 27 state.OnBeginImplFrameDeadlinePending(); \ 28 if (state.begin_impl_frame_state() == [all...] |
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/ |
SoftKeyToggle.java | 29 * The current state number is stored in the lowest 8 bits of mKeyMask, this 30 * mask is used to get the state number. If the current state is 0, the 31 * normal state is enabled; if the current state is more than 0, a toggle 32 * state in the toggle state chain will be enabled. 42 // The state id should be valid, and less than 255. 43 // If resetIfNotFound is true and there is no such toggle state with the 44 // given id, the key state will be reset 95 ToggleState state = getToggleState(); local 102 ToggleState state = getToggleState(); local 115 ToggleState state = getToggleState(); local 122 ToggleState state = getToggleState(); local 129 ToggleState state = getToggleState(); local 138 ToggleState state = getToggleState(); local 147 ToggleState state = getToggleState(); local 156 ToggleState state = getToggleState(); local 165 ToggleState state = getToggleState(); local 174 ToggleState state = getToggleState(); local 184 ToggleState state = getToggleState(); local 194 ToggleState state = getToggleState(); local 206 ToggleState state = getToggleState(); local 215 ToggleState state = getToggleState(); local 224 ToggleState state = getToggleState(); local [all...] |
/external/chromium_org/cloud_print/service/ |
service_state_unittest.cc | 16 ServiceState state; local 17 EXPECT_FALSE(state.IsValid()); 21 ServiceState state; local 23 CollapseWhitespaceASCII(state.ToString(), true).c_str()); 24 state.set_email("test@gmail.com"); 25 state.set_proxy_id("proxy"); 26 state.set_robot_email("robot@gmail.com"); 27 state.set_robot_token("abc"); 28 state.set_auth_token("token1"); 29 state.set_xmpp_auth_token("token2") 39 ServiceState state; local 73 ServiceStateMock state; local [all...] |
/external/chromium_org/chrome/browser/ui/fullscreen/ |
fullscreen_controller_state_tests.h | 8 // Macros used to create individual tests for all state and event pairs. 14 #define TEST_ALL_EVENTS_NON_METRO(state) \ 15 TEST_EVENT(state, TOGGLE_FULLSCREEN) \ 16 TEST_EVENT(state, TOGGLE_FULLSCREEN_CHROME) \ 17 TEST_EVENT(state, TAB_FULLSCREEN_TRUE) \ 18 TEST_EVENT(state, TAB_FULLSCREEN_FALSE) \ 19 TEST_EVENT(state, BUBBLE_EXIT_LINK) \ 20 TEST_EVENT(state, BUBBLE_ALLOW) \ 21 TEST_EVENT(state, BUBBLE_DENY) \ 22 TEST_EVENT(state, WINDOW_CHANGE [all...] |
/external/chromium_org/third_party/icu/source/i18n/ |
regexcst.pl | 9 # Compile the regular expression paser state table data into initialized C data. 27 $num_states = 1; # Always the state number for the line being compiled. 30 $states{"pop"} = 255; # Add the "pop" to the list of defined state names. 31 # This prevents any state from being labelled with "pop", 32 # and resolves references to "pop" in the next state field. 54 # State Label: handling. 55 # Does the first token end with a ":"? If so, it's the name of a state. 56 # Put in a hash, together with the current state number, 61 $state_name =~ s/://; # strip off the colon from the state name. 64 print " rbbicst: at line $line-num duplicate definition of state $state_name\n" [all...] |
/external/icu4c/i18n/ |
regexcst.pl | 9 # Compile the regular expression paser state table data into initialized C data. 27 $num_states = 1; # Always the state number for the line being compiled. 30 $states{"pop"} = 255; # Add the "pop" to the list of defined state names. 31 # This prevents any state from being labelled with "pop", 32 # and resolves references to "pop" in the next state field. 54 # State Label: handling. 55 # Does the first token end with a ":"? If so, it's the name of a state. 56 # Put in a hash, together with the current state number, 61 $state_name =~ s/://; # strip off the colon from the state name. 64 print " rbbicst: at line $line-num duplicate definition of state $state_name\n" [all...] |
/external/webrtc/src/common_audio/signal_processing/ |
resample_48khz.c | 28 WebRtcSpl_State48khzTo16khz* state, WebRtc_Word32* tmpmem) 34 WebRtcSpl_LPBy2ShortToInt(in, 480, tmpmem + 16, state->S_48_48); 40 // copy state to and from input array 41 memcpy(tmpmem + 8, state->S_48_32, 8 * sizeof(WebRtc_Word32)); 42 memcpy(state->S_48_32, tmpmem + 488, 8 * sizeof(WebRtc_Word32)); 49 WebRtcSpl_DownBy2IntToShort(tmpmem, 320, out, state->S_32_16); 52 // initialize state of 48 -> 16 resampler 53 void WebRtcSpl_ResetResample48khzTo16khz(WebRtcSpl_State48khzTo16khz* state) 55 memset(state->S_48_48, 0, 16 * sizeof(WebRtc_Word32)); 56 memset(state->S_48_32, 0, 8 * sizeof(WebRtc_Word32)) [all...] |
/external/chromium_org/gpu/command_buffer/common/ |
command_buffer_shared_test.cc | 27 CommandBuffer::State state; local 29 shared_state_->Read(&state); 31 EXPECT_LT(state.generation, 0x80000000); 32 EXPECT_EQ(state.get_offset, 0); 33 EXPECT_EQ(state.put_offset, 0); 34 EXPECT_EQ(state.token, -1); 35 EXPECT_EQ(state.error, gpu::error::kNoError); 36 EXPECT_EQ(state.context_lost_reason, gpu::error::kUnknown); 43 CommandBuffer::State state local 71 CommandBuffer::State state = last_state; local [all...] |