/foundation/communication/wifi/wifi/base/state_machine/src/ |
H A D | state_machine.cpp | 79 void StateMachine::StatePlus(State *state, State *upper) in StatePlus() argument 86 pStateMachineHandler->StatePlus(state, upper); in StatePlus() 89 void StateMachine::StateDelete(State *state) in StateDelete() argument 96 pStateMachineHandler->StateDelete(state); in StateDelete() 321 StateInfo *StateMachineHandler::StatePlus(State *state, State *upper) in StatePlus() argument 343 it = mStateInfoMap.find(state->GetStateName()); in StatePlus() 353 mStateInfoMap.insert(StateInfoMap::value_type(state->GetStateName(), stateInfo)); in StatePlus() 356 /* Validate that we aren't adding the same state in two different hierarchies. */ in StatePlus() 358 LOGE("The same state cannot be added to two different hierarchies!"); in StatePlus() 361 stateInfo->state in StatePlus() 370 StateDelete(State *state) StateDelete() argument [all...] |
/third_party/jerryscript/jerry-ext/debugger/ |
H A D | debugger-sha1.c | 54 uint32_t state[5]; /**< intermediate digest state */ member 87 sha1_context_p->state[0] = 0x67452301; in jerryx_sha1_init() 88 sha1_context_p->state[1] = 0xEFCDAB89; in jerryx_sha1_init() 89 sha1_context_p->state[2] = 0x98BADCFE; in jerryx_sha1_init() 90 sha1_context_p->state[3] = 0x10325476; in jerryx_sha1_init() 91 sha1_context_p->state[4] = 0xC3D2E1F0; in jerryx_sha1_init() 134 A = sha1_context_p->state[0]; in jerryx_sha1_process() 135 B = sha1_context_p->state[1]; in jerryx_sha1_process() 136 C = sha1_context_p->state[ in jerryx_sha1_process() [all...] |
/third_party/mesa3d/src/freedreno/ir3/ |
H A D | ir3_ra_validate.c | 33 * The validation is a forward dataflow analysis. The state at each point 58 * distinguished from undef so that the state forms a valid lattice to 365 chase_definition(struct reg_state *state) in chase_definition() argument 368 struct ir3_instruction *instr = state->def->instr; in chase_definition() 373 *state = (struct reg_state){ in chase_definition() 375 .offset = state->offset + offset, in chase_definition() 380 unsigned src_idx = state->offset / reg_elem_size(state->def); in chase_definition() 381 unsigned src_offset = state->offset % reg_elem_size(state in chase_definition() 420 dump_reg_state(struct reg_state *state) dump_reg_state() argument [all...] |
/third_party/vk-gl-cts/modules/gles2/functional/ |
H A D | es2fTextureStateQueryTests.cpp | 96 StateQueryMemoryWriteGuard<GLint> state; in verifyInteger() 97 glGetTexParameteriv(target, name, &state); in verifyInteger() 99 if (!state.verifyValidity(testCtx)) in verifyInteger() 102 if (state != reference) in verifyInteger() 104 testCtx.getLog() << TestLog::Message << "// ERROR: expected " << reference << "; got " << state << TestLog::EndMessage; in verifyInteger() 118 StateQueryMemoryWriteGuard<GLint> state; in verifyFloat() local 119 glGetTexParameteriv(target, name, &state); in verifyFloat() 121 if (!state.verifyValidity(testCtx)) in verifyFloat() 124 if (state < expectedGLStateMin || state > expectedGLStateMa in verifyFloat() 155 StateQueryMemoryWriteGuard<GLfloat> state; verifyInteger() local [all...] |
/foundation/distributeddatamgr/relational_store/frameworks/js/napi/cloud_data/src/ |
H A D | js_config.cpp | 76 auto [state, proxy] = CloudManager::GetInstance().GetCloudService(); in EnableCloud() 78 if (state != CloudService::SERVER_UNAVAILABLE) { in EnableCloud() 79 state = CloudService::NOT_SUPPORT; in EnableCloud() 81 ctxt->status = (GenerateNapiError(state, ctxt->jsCode, ctxt->error) == Status::SUCCESS) in EnableCloud() 120 auto [state, proxy] = CloudManager::GetInstance().GetCloudService(); in DisableCloud() 122 if (state != CloudService::SERVER_UNAVAILABLE) { in DisableCloud() 123 state = CloudService::NOT_SUPPORT; in DisableCloud() 125 ctxt->status = (GenerateNapiError(state, ctxt->jsCode, ctxt->error) == Status::SUCCESS) in DisableCloud() 153 CloudService::Switch state; in ChangeAppCloudSwitch() member 157 // required 3 arguments :: <accountId> <bundleName> <state> in ChangeAppCloudSwitch() [all...] |
/third_party/alsa-lib/src/pcm/ |
H A D | pcm_dshare.c | 55 /* start is pending - this state happens when rate plugin does a delayed commit */ 173 if (dshare->state != SND_PCM_STATE_RUNNING && in snd_pcm_dshare_sync_ptr0() 174 dshare->state != SND_PCM_STATE_DRAINING) in snd_pcm_dshare_sync_ptr0() 189 if (dshare->state == SND_PCM_STATE_RUNNING) { in snd_pcm_dshare_sync_ptr0() 190 dshare->state = SND_PCM_STATE_XRUN; in snd_pcm_dshare_sync_ptr0() 193 dshare->state = SND_PCM_STATE_SETUP; in snd_pcm_dshare_sync_ptr0() 229 switch (dshare->state) { in snd_pcm_dshare_status() 238 status->state = snd_pcm_dshare_state(pcm); in snd_pcm_dshare_status() 253 if (dshare->state == STATE_RUN_PENDING) in snd_pcm_dshare_state() 255 return dshare->state; in snd_pcm_dshare_state() [all...] |
/third_party/libwebsockets/lib/core/ |
H A D | libwebsockets.c | 339 lws_check_byte_utf8(unsigned char state, unsigned char c) in lws_check_byte_utf8() argument 341 unsigned char s = state; in lws_check_byte_utf8() 362 lws_check_utf8(unsigned char *state, unsigned char *buf, size_t len) in lws_check_utf8() argument 364 unsigned char s = *state; in lws_check_utf8() 386 *state = s; in lws_check_utf8() 687 int state = 0, n; in lws_urldecode() local 691 switch (state) { in lws_urldecode() 694 state++; in lws_urldecode() 713 state++; in lws_urldecode() 723 state in lws_urldecode() 804 lws_tokenize_state state = LWS_TOKZS_LEADING_WHITESPACE; lws_tokenize() local [all...] |
/third_party/mesa3d/src/amd/vulkan/ |
H A D | radv_meta_resolve.c | 191 struct radv_meta_state *state = &device->meta_state; in radv_device_finish_meta_resolve_state() local 194 radv_DestroyPipeline(radv_device_to_handle(device), state->resolve.pipeline[j], in radv_device_finish_meta_resolve_state() 195 &state->alloc); in radv_device_finish_meta_resolve_state() 197 radv_DestroyPipelineLayout(radv_device_to_handle(device), state->resolve.p_layout, in radv_device_finish_meta_resolve_state() 198 &state->alloc); in radv_device_finish_meta_resolve_state() 208 struct radv_meta_state *state = &device->meta_state; in radv_device_init_meta_resolve_state() local 221 res = create_pipeline(device, vs_module_h, format, &state->resolve.pipeline[fs_key]); in radv_device_init_meta_resolve_state() 241 cmd_buffer->state.flush_bits |= in emit_resolve() 264 cmd_buffer->state.flush_bits |= in emit_resolve() 416 cmd_buffer->state in radv_meta_resolve_hardware_image() 799 struct radv_cmd_state *state = &cmd_buffer->state; radv_get_resolve_sample_locations() local [all...] |
/third_party/mesa3d/src/gallium/drivers/lima/ |
H A D | lima_draw.c | 302 int uniform_size = MIN2(vs->state.uniform_size, ccb->size); in lima_pack_vs_cmd() 304 int size = uniform_size + vs->state.constant_size + 32; in lima_pack_vs_cmd() 309 VS_CMD_SHADER_ADDRESS(ctx->vs->bo->va, ctx->vs->state.shader_size); in lima_pack_vs_cmd() 310 VS_CMD_SHADER_INFO(ctx->vs->state.prefetch, ctx->vs->state.shader_size); in lima_pack_vs_cmd() 312 int num_outputs = ctx->vs->state.num_outputs; in lima_pack_vs_cmd() 366 if (info->mode == PIPE_PRIM_POINTS && ctx->vs->state.point_size_idx == -1) in lima_pack_plbu_cmd() 395 if ((info->mode == PIPE_PRIM_POINTS && ctx->vs->state.point_size_idx == -1) || in lima_pack_plbu_cmd() 405 if (vs->state.point_size_idx != -1) in lima_pack_plbu_cmd() 628 if (fs->state in lima_pack_render_state() [all...] |
/foundation/barrierfree/accessibility/services/test/mock/ |
H A D | mock_accessible_ability_manager_service.cpp | 137 sptr<IAccessibleAbilityManagerStateObserver> state = new MockAccessibleAbilityManagerStateObserverProxy(stub); in HWTEST_F() local 139 uint32_t ret = Singleton<AccessibleAbilityManagerService>::GetInstance().RegisterStateObserver(state); in HWTEST_F() 344 bool state = true; in HWTEST_F() local 347 Singleton<AccessibleAbilityManagerService>::GetInstance().SetScreenMagnificationState(state)); in HWTEST_F() 361 bool state = true; in HWTEST_F() local 363 EXPECT_EQ(RET_ERR_NULLPTR, Singleton<AccessibleAbilityManagerService>::GetInstance().SetShortKeyState(state)); in HWTEST_F() 377 bool state = true; in HWTEST_F() local 379 EXPECT_EQ(RET_ERR_NULLPTR, Singleton<AccessibleAbilityManagerService>::GetInstance().SetMouseKeyState(state)); in HWTEST_F() 425 bool state = true; in HWTEST_F() local 428 Singleton<AccessibleAbilityManagerService>::GetInstance().SetHighContrastTextState(state)); in HWTEST_F() 441 bool state = true; HWTEST_F() local 458 bool state = true; HWTEST_F() local 474 bool state = true; HWTEST_F() local 489 bool state = true; HWTEST_F() local 626 bool state = true; HWTEST_F() local 856 sptr<IAccessibleAbilityManagerCaptionObserver> state = new MockAccessibleAbilityManagerCaptionObserverProxy(stub); HWTEST_F() local 874 sptr<IAccessibleAbilityManagerConfigObserver> state = new MockAccessibleAbilityManagerConfigObserverProxy(stub); HWTEST_F() local 892 sptr<IAccessibilityEnableAbilityListsObserver> state = new MockAccessibilityEnableAbilityListsObserverProxy(stub); HWTEST_F() local 990 sptr<IAccessibleAbilityManagerStateObserver> state = new MockAccessibleAbilityManagerStateObserverProxy(stub); HWTEST_F() local 1009 sptr<IAccessibleAbilityManagerCaptionObserver> state = new MockAccessibleAbilityManagerCaptionObserverProxy(stub); HWTEST_F() local 1042 sptr<IAccessibilityEnableAbilityListsObserver> state = new MockAccessibilityEnableAbilityListsObserverProxy(stub); HWTEST_F() local 1090 bool state = true; HWTEST_F() local 1299 bool state = true; HWTEST_F() local 1316 bool state = true; HWTEST_F() local 1333 bool state = true; HWTEST_F() local 1683 bool state = true; HWTEST_F() local 1699 bool state = true; HWTEST_F() local 1718 bool state = true; HWTEST_F() local 1735 bool state = true; HWTEST_F() local 1751 bool state = true; HWTEST_F() local 1889 sptr<IAccessibleAbilityManagerConfigObserver> state = new MockAccessibleAbilityManagerConfigObserverProxy(stub); HWTEST_F() local 1907 sptr<IAccessibleAbilityManagerConfigObserver> state = new MockAccessibleAbilityManagerConfigObserverProxy(stub); HWTEST_F() local 1925 sptr<IAccessibleAbilityManagerConfigObserver> state = new MockAccessibleAbilityManagerConfigObserverProxy(stub); HWTEST_F() local 1943 sptr<IAccessibleAbilityManagerConfigObserver> state = new MockAccessibleAbilityManagerConfigObserverProxy(stub); HWTEST_F() local 1961 sptr<IAccessibleAbilityManagerConfigObserver> state = new MockAccessibleAbilityManagerConfigObserverProxy(stub); HWTEST_F() local 1979 sptr<IAccessibleAbilityManagerConfigObserver> state = new MockAccessibleAbilityManagerConfigObserverProxy(stub); HWTEST_F() local [all...] |
/third_party/mesa3d/src/glx/ |
H A D | indirect_vertex_array.c | 49 * fills-in this data. Additionally, it examines the enabled state and 110 * Free the per-context array state that was allocated with 116 __GLXattribute *state = (__GLXattribute *) (gc->client_state_private); in __glXFreeVertexArrayState() local 117 struct array_state_vector *arrays = state->array_state; in __glXFreeVertexArrayState() 125 state->array_state = NULL; in __glXFreeVertexArrayState() 131 * Initialize vertex array state of a GLX context. 133 * \param gc GLX context whose vertex array state is to be initialized. 144 __GLXattribute *state = (__GLXattribute *) (gc->client_state_private); in __glXInitVertexArrayState() local 156 state->array_state = arrays; in __glXInitVertexArrayState() 163 arrays->old_DrawArrays_possible = !state in __glXInitVertexArrayState() 530 const __GLXattribute *state = emit_DrawArrays_none() local 701 const __GLXattribute *state = emit_DrawArrays_old() local 761 const __GLXattribute *state = emit_DrawElements_none() local 828 const __GLXattribute *state = emit_DrawElements_old() local 985 const __GLXattribute *state = __indirect_glDrawArrays() local 1004 const __GLXattribute *state = __indirect_glArrayElement() local 1030 const __GLXattribute *state = __indirect_glDrawElements() local 1052 const __GLXattribute *state = __indirect_glDrawRangeElements() local 1078 const __GLXattribute *state = __indirect_glMultiDrawArrays() local 1104 const __GLXattribute *state = __indirect_glMultiDrawElementsEXT() local 1163 __GLXattribute *state = (__GLXattribute *) (gc->client_state_private); __indirect_glVertexPointer() local 1208 __GLXattribute *state = (__GLXattribute *) (gc->client_state_private); __indirect_glNormalPointer() local 1279 __GLXattribute *state = (__GLXattribute *) (gc->client_state_private); __indirect_glColorPointer() local 1334 __GLXattribute *state = (__GLXattribute *) (gc->client_state_private); __indirect_glIndexPointer() local 1379 __GLXattribute *state = (__GLXattribute *) (gc->client_state_private); __indirect_glEdgeFlagPointer() local 1441 __GLXattribute *state = (__GLXattribute *) (gc->client_state_private); __indirect_glTexCoordPointer() local 1514 __GLXattribute *state = (__GLXattribute *) (gc->client_state_private); __indirect_glSecondaryColorPointer() local 1574 __GLXattribute *state = (__GLXattribute *) (gc->client_state_private); __indirect_glFogCoordPointer() local 1630 __GLXattribute *state = (__GLXattribute *) (gc->client_state_private); __indirect_glVertexAttribPointer() local 1770 __GLXattribute *const state = __indirect_glClientActiveTexture() local 1789 __glXSetArrayEnable(__GLXattribute * state, GLenum key, unsigned index, GLboolean enable) __glXSetArrayEnable() argument 1815 __glXArrayDisableAll(__GLXattribute * state) __glXArrayDisableAll() argument 1832 __glXGetArrayEnable(const __GLXattribute * const state, GLenum key, unsigned index, GLintptr * dest) __glXGetArrayEnable() argument 1851 __glXGetArrayType(const __GLXattribute * const state, GLenum key, unsigned index, GLintptr * dest) __glXGetArrayType() argument 1870 __glXGetArraySize(const __GLXattribute * const state, GLenum key, unsigned index, GLintptr * dest) __glXGetArraySize() argument 1889 __glXGetArrayStride(const __GLXattribute * const state, GLenum key, unsigned index, GLintptr * dest) __glXGetArrayStride() argument 1908 __glXGetArrayPointer(const __GLXattribute * const state, GLenum key, unsigned index, void **dest) __glXGetArrayPointer() argument 1928 __glXGetArrayNormalized(const __GLXattribute * const state, GLenum key, unsigned index, GLintptr * dest) __glXGetArrayNormalized() argument 1948 __glXGetActiveTextureUnit(const __GLXattribute * const state) __glXGetActiveTextureUnit() argument 1955 __glXPushArrayState(__GLXattribute * state) __glXPushArrayState() argument 1981 __glXPopArrayState(__GLXattribute * state) __glXPopArrayState() argument [all...] |
/third_party/pulseaudio/src/pulsecore/ |
H A D | source-output.c | 315 pa_return_val_if_fail(PA_SOURCE_IS_LINKED(data->source->state), -PA_ERR_BADSTATE); in pa_source_output_new() 329 /* Initialize volume_map to invalid state. We check the state later to in pa_source_output_new() 403 data->source->state == PA_SOURCE_SUSPENDED) { in pa_source_output_new() 440 o->state = PA_SOURCE_OUTPUT_INIT; in pa_source_output_new() 484 o->thread_info.state = o->state; in pa_source_output_new() 535 static void update_n_corked(pa_source_output *o, pa_source_output_state_t state) { in update_n_corked() argument 542 if (o->state == PA_SOURCE_OUTPUT_CORKED && state ! in update_n_corked() 549 source_output_set_state(pa_source_output *o, pa_source_output_state_t state) source_output_set_state() argument 680 pa_source_output_state_t state; pa_source_output_put() local 1219 void *state; pa_source_output_update_proplist() local 1710 pa_source_output_set_state_within_thread(pa_source_output *o, pa_source_output_state_t state) pa_source_output_set_state_within_thread() argument [all...] |
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/ |
H A D | frame_capture_utils.cpp | 59 const char *InitStateToString(gl::InitState state) in InitStateToString() argument 61 switch (state) in InitStateToString() 324 // Reset framebuffer state in SerializeFramebufferAttachment() 534 void SerializeContextState(JsonSerializer *json, const gl::State &state) in SerializeContextState() argument 537 json->addScalar("ClientType", state.getClientType()); in SerializeContextState() 538 json->addScalar("Priority", state.getContextPriority()); in SerializeContextState() 539 json->addScalar("Major", state.getClientMajorVersion()); in SerializeContextState() 540 json->addScalar("Minor", state.getClientMinorVersion()); in SerializeContextState() 541 SerializeColorFWithGroup(json, "ColorClearValue", state.getColorClearValue()); in SerializeContextState() 542 json->addScalar("DepthClearValue", state in SerializeContextState() [all...] |
/third_party/vk-gl-cts/modules/glshared/ |
H A D | glsStateQueryUtil.hpp | 289 // sampler state 382 void queryState (tcu::ResultCollector& result, glu::CallLogWrapper& gl, QueryType type, glw::GLenum pname, QueriedState& state); 383 void queryIndexedState (tcu::ResultCollector& result, glu::CallLogWrapper& gl, QueryType type, glw::GLenum target, int index, QueriedState& state); 384 void queryAttributeState (tcu::ResultCollector& result, glu::CallLogWrapper& gl, QueryType type, glw::GLenum target, int index, QueriedState& state); 385 void queryFramebufferState (tcu::ResultCollector& result, glu::CallLogWrapper& gl, QueryType type, glw::GLenum target, glw::GLenum pname, QueriedState& state); 386 void queryProgramState (tcu::ResultCollector& result, glu::CallLogWrapper& gl, QueryType type, glw::GLuint program, glw::GLenum pname, QueriedState& state); 387 void queryPipelineState (tcu::ResultCollector& result, glu::CallLogWrapper& gl, QueryType type, glw::GLuint pipeline, glw::GLenum pname, QueriedState& state); 388 void queryTextureParamState (tcu::ResultCollector& result, glu::CallLogWrapper& gl, QueryType type, glw::GLenum target, glw::GLenum pname, QueriedState& state); 389 void queryTextureLevelState (tcu::ResultCollector& result, glu::CallLogWrapper& gl, QueryType type, glw::GLenum target, int level, glw::GLenum pname, QueriedState& state); 390 void queryPointerState (tcu::ResultCollector& result, glu::CallLogWrapper& gl, QueryType type, glw::GLenum pname, QueriedState& state); [all...] |
/third_party/python/Modules/ |
H A D | arraymodule.c | 125 #define array_Check(op, state) PyObject_TypeCheck(op, state->ArrayType) 627 array_state *state = find_array_state_by_type(Py_TYPE(op)); in getarrayitem() local 628 assert(array_Check(op, state)); in getarrayitem() 692 array_state *state = find_array_state_by_type(Py_TYPE(v)); in array_richcompare() local 699 if (!array_Check(v, state) || !array_Check(w, state)) in array_richcompare() 821 array_state *state = find_array_state_by_type(Py_TYPE(a)); in array_slice() local 834 np = (arrayobject *) newarrayobject(state->ArrayType, ihigh - ilow, a->ob_descr); in array_slice() 877 array_state *state in array_concat() local 913 array_state *state = find_array_state_by_type(Py_TYPE(a)); array_repeat() local 987 array_state *state = find_array_state_by_type(Py_TYPE(a)); setarrayitem() local 1017 array_do_extend(array_state *state, arrayobject *self, PyObject *bb) array_do_extend() argument 1052 array_state *state = find_array_state_by_type(Py_TYPE(self)); array_inplace_concat() local 1286 array_state *state = get_array_state_by_class(cls); array_array_extend_impl() local 1486 array_state *state = get_array_state_by_class(cls); array_array_fromfile_impl() local 1984 array_state *state = get_array_state(module); array__array_reconstructor_impl() local 2198 array_state *state = get_array_state_by_class(cls); array_array___reduce_ex___impl() local 2345 array_state *state = find_array_state_by_type(Py_TYPE(self)); array_subscr() local 2409 array_state* state = find_array_state_by_type(Py_TYPE(self)); array_ass_subscr() local 2616 array_state *state = find_array_state_by_type(type); array_new() local 2877 array_state *state = find_array_state_by_type(Py_TYPE(ao)); array_iter() local 2904 array_state *state = find_array_state_by_type(Py_TYPE(it)); arrayiter_next() local 2955 array_state *state = get_array_state_by_class(cls); array_arrayiterator___reduce___impl() local 2974 array_arrayiterator___setstate__(arrayiterobject *self, PyObject *state) array_arrayiterator___setstate__() argument 3018 array_state *state = get_array_state(module); array_traverse() local 3027 array_state *state = get_array_state(module); array_clear() local 3070 array_state *state = get_array_state(m); array_modexec() local [all...] |
/third_party/lwip/src/core/ |
H A D | tcp.c | 175 /** List of all TCP PCBs in LISTEN state */ 177 /** List of all TCP PCBs that are in a state in which 180 /** List of all TCP PCBs in TIME-WAIT state */ 226 LWIP_ASSERT("tcp_free: LISTEN", pcb->state != LISTEN); in tcp_free() 237 LWIP_ASSERT("tcp_free_listen: !LISTEN", pcb->state != LISTEN); in tcp_free_listen() 291 ((pcb->state == ESTABLISHED) || in tcp_set_timer_tick_by_keepalive() 292 (pcb->state == CLOSE_WAIT))) { in tcp_set_timer_tick_by_keepalive() 314 if (pcb->state == FIN_WAIT_2) { in tcp_set_timer_tick_by_tcp_state() 323 if (pcb->state == SYN_RCVD) { in tcp_set_timer_tick_by_tcp_state() 329 if (pcb->state in tcp_set_timer_tick_by_tcp_state() 1930 tcp_kill_state(enum tcp_state state) global() argument [all...] |
/third_party/vk-gl-cts/framework/referencerenderer/ |
H A D | rrRenderer.cpp | 812 void transformVertexClipCoordsToWindowCoords (const RenderState& state, VertexPacket& packet) in transformVertexClipCoordsToWindowCoords() argument 824 const WindowRectangle& viewport = state.viewport.rect; in transformVertexClipCoordsToWindowCoords() 829 const float zn = state.viewport.zn; in transformVertexClipCoordsToWindowCoords() 830 const float zf = state.viewport.zf; in transformVertexClipCoordsToWindowCoords() 839 void transformPrimitiveClipCoordsToWindowCoords (const RenderState& state, pa::Triangle& target) in transformPrimitiveClipCoordsToWindowCoords() argument 841 transformVertexClipCoordsToWindowCoords(state, *target.v0); in transformPrimitiveClipCoordsToWindowCoords() 842 transformVertexClipCoordsToWindowCoords(state, *target.v1); in transformPrimitiveClipCoordsToWindowCoords() 843 transformVertexClipCoordsToWindowCoords(state, *target.v2); in transformPrimitiveClipCoordsToWindowCoords() 846 void transformPrimitiveClipCoordsToWindowCoords (const RenderState& state, pa::Line& target) in transformPrimitiveClipCoordsToWindowCoords() argument 848 transformVertexClipCoordsToWindowCoords(state, *targe in transformPrimitiveClipCoordsToWindowCoords() 852 transformPrimitiveClipCoordsToWindowCoords(const RenderState& state, pa::Point& target) transformPrimitiveClipCoordsToWindowCoords() argument 858 transformClipCoordsToWindowCoords(const RenderState& state, ContainerType& list) transformClipCoordsToWindowCoords() argument 1029 writeFragmentPackets(const RenderState& state, const RenderTarget& renderTarget, const Program& program, const FragmentPacket* fragmentPackets, int numRasterizedPackets, rr::FaceType facetype, const std::vector<rr::GenericVec4>& fragmentOutputArray, const std::vector<rr::GenericVec4>& fragmentOutputArraySrc1, const float* depthValues, std::vector<Fragment>& fragmentBuffer) writeFragmentPackets() argument 1104 rasterizePrimitive(const RenderState& state, const RenderTarget& renderTarget, const Program& program, const pa::Triangle& triangle, const tcu::IVec4& renderTargetRect, RasterizationInternalBuffers& buffers) rasterizePrimitive() argument 1172 rasterizePrimitive(const RenderState& state, const RenderTarget& renderTarget, const Program& program, const pa::Line& line, const tcu::IVec4& renderTargetRect, RasterizationInternalBuffers& buffers) rasterizePrimitive() argument 1225 rasterizePrimitive(const RenderState& state, const RenderTarget& renderTarget, const Program& program, const pa::Point& point, const tcu::IVec4& renderTargetRect, RasterizationInternalBuffers& buffers) rasterizePrimitive() argument 1291 rasterize(const RenderState& state, const RenderTarget& renderTarget, const Program& program, const ContainerType& list) rasterize() argument 1337 drawBasicPrimitives(const RenderState& state, const RenderTarget& renderTarget, const Program& program, ContainerType& primList, VertexPacketAllocator& vpalloc) drawBasicPrimitives() argument 1394 drawGeometryShaderOutputAsPrimitives(const RenderState& state, const RenderTarget& renderTarget, const Program& program, VertexPacket* const* vertices, size_t numVertices, VertexPacketAllocator& vpalloc) drawGeometryShaderOutputAsPrimitives() argument 1413 drawWithGeometryShader(const RenderState& state, const RenderTarget& renderTarget, const Program& program, std::vector<typename PrimitiveTypeTraits<DrawPrimitiveType>::Type>& input, DrawContext& drawContext) drawWithGeometryShader() argument 1481 drawAsPrimitives(const RenderState& state, const RenderTarget& renderTarget, const Program& program, VertexPacket* const* vertices, int numVertices, DrawContext& drawContext, VertexPacketAllocator& vpalloc) drawAsPrimitives() argument [all...] |
/foundation/bundlemanager/bundle_framework/test/benchmarktest/hap_module_info_test/ |
H A D | hap_module_info_test.cpp | 31 static void BenchmarkTestForReadFromParcel(benchmark::State &state) in BenchmarkTestForReadFromParcel() argument 44 for (auto _ : state) { in BenchmarkTestForReadFromParcel() 56 static void BenchmarkTestForMarshalling(benchmark::State &state) in BenchmarkTestForMarshalling() argument 68 for (auto _ : state) { in BenchmarkTestForMarshalling() 80 static void BenchmarkTestForUnmarshalling(benchmark::State &state) in BenchmarkTestForUnmarshalling() argument 93 for (auto _ : state) { in BenchmarkTestForUnmarshalling()
|
/third_party/elfutils/libelf/ |
H A D | elf32_newehdr.c | 70 if (elf->state.ELFW(elf,LIBELFBITS).ehdr == NULL) in ElfW2() 73 elf->state.ELFW(elf,LIBELFBITS).ehdr = in ElfW2() 74 &elf->state.ELFW(elf,LIBELFBITS).ehdr_mem; in ElfW2() 77 memset (elf->state.ELFW(elf,LIBELFBITS).ehdr, '\0', in ElfW2() 81 elf->state.ELFW(elf,LIBELFBITS).ehdr_flags |= ELF_F_DIRTY; in ElfW2() 84 result = elf->state.ELFW(elf,LIBELFBITS).ehdr; in ElfW2()
|
/third_party/ffmpeg/libavformat/ |
H A D | avs2dec.c | 37 uint8_t state = 0; in avs2_probe() local 45 state = code & 0xFF; in avs2_probe() 47 if (AVS2_ISUNIT(state)) { in avs2_probe() 51 if (AVS2_ISSQH(state)) { in avs2_probe() 56 } else if (AVS2_ISPIC(state)) { in avs2_probe() 58 } else if (AVS2_ISEND(state)) { in avs2_probe()
|
/third_party/musl/Benchmark/musl/ |
H A D | libc_pwd.cpp | 34 static void Bm_function_Getpwnam_r(benchmark::State &state) in Bm_function_Getpwnam_r() argument 44 for (auto _ : state) { in Bm_function_Getpwnam_r() 51 static void Bm_function_Getpwuid_r(benchmark::State &state) in Bm_function_Getpwuid_r() argument 61 for (auto _ : state) { in Bm_function_Getpwuid_r() 69 static void Bm_function_Getpwuid(benchmark::State &state) in Bm_function_Getpwuid() argument 72 for (auto _ : state) { in Bm_function_Getpwuid()
|
/third_party/rust/crates/libc/src/unix/linux_like/linux/gnu/b32/arm/ |
H A D | align.rs | 44 fn hash<H: ::hash::Hasher>(&self, state: &mut H) { in hash() 45 self.uc_flags.hash(state); in hash() 46 self.uc_link.hash(state); in hash() 47 self.uc_stack.hash(state); in hash() 48 self.uc_mcontext.hash(state); in hash() 49 self.uc_sigmask.hash(state); in hash()
|
/foundation/communication/netmanager_ext/services/networksharemanager/src/ |
H A D | networkshare_tracker.cpp | 159 const std::shared_ptr<NetworkShareSubStateMachine> ¶SubStateMachine, int state, int lastError) in OnUpdateInterfaceState() 161 NetworkShareTracker::GetInstance().HandleSubSmUpdateInterfaceState(paraSubStateMachine, state, lastError); in OnUpdateInterfaceState() 175 int state, int cause) in OnConnectionStateChanged() 177 NETMGR_EXT_LOG_I("Recieve bt-pan state changed event, state[%{public}d].", state); in OnConnectionStateChanged() 178 Bluetooth::BTConnectState curState = static_cast<Bluetooth::BTConnectState>(state); in OnConnectionStateChanged() 253 void NetworkShareTracker::OnChangeSharingState(const SharingIfaceType &type, bool state) in OnChangeSharingState() argument 256 if (state && fit == clientRequestsVector_.end()) { in OnChangeSharingState() 259 if (!state in OnChangeSharingState() 158 OnUpdateInterfaceState( const std::shared_ptr<NetworkShareSubStateMachine> ¶SubStateMachine, int state, int lastError) OnUpdateInterfaceState() argument 174 OnConnectionStateChanged(const Bluetooth::BluetoothRemoteDevice &device, int state, int cause) OnConnectionStateChanged() argument 265 OnWifiHotspotStateChanged(int state) OnWifiHotspotStateChanged() argument 349 SetWifiState(const Wifi::ApState &state) SetWifiState() argument 356 SetBluetoothState(const Bluetooth::BTConnectState &state) SetBluetoothState() argument 362 HandleSubSmUpdateInterfaceState(const std::shared_ptr<NetworkShareSubStateMachine> &who, int32_t state, int32_t lastError) HandleSubSmUpdateInterfaceState() argument 411 SendMainSMEvent(const std::shared_ptr<NetworkShareSubStateMachine> &subSM, int32_t event, int32_t state) SendMainSMEvent() argument 534 GetSharingState(const SharingIfaceType type, SharingIfaceState &state) GetSharingState() argument 579 GetNetSharingIfaces(const SharingIfaceState &state, std::vector<std::string> &ifaces) GetNetSharingIfaces() argument 1258 SendIfaceSharingStateChange(const SharingIfaceType &type, const std::string &iface, const SharingIfaceState &state) SendIfaceSharingStateChange() argument 1291 SubSmStateToExportState(int32_t state) SubSmStateToExportState() argument [all...] |
/foundation/communication/netmanager_ext/services/mdnsmanager/src/ |
H A D | mdns_protocol_impl.cpp | 207 if (lastRunTime - it->refrehTime > DEFAULT_LOST_MS && it->state == State::LIVE) { in handleOfflineService() 215 it->state = State::DEAD; in handleOfflineService() 291 if (res.state == State::REMOVE || res.state == State::DEAD) { in DiscoveryFromCache() 326 (res.state == State::ADD || res.state == State::REFRESH)) { in DiscoveryFromNet() 329 res.state = State::LIVE; in DiscoveryFromNet() 331 if (res.state == State::REMOVE) { in DiscoveryFromNet() 332 res.state = State::DEAD; in DiscoveryFromNet() 410 cacheMap_[name].state in ResolveInstanceFromNet() [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/types/internal/ |
H A D | conformance_archetype.h | 74 // A constructor tag type used when creating an Archetype with internal state. 87 // The bottom-most base, which contains the state and the default constructor. 98 explicit ArchetypeStateBase(MakeArchetypeState, ArchetypeState state) noexcept 99 : archetype_state(state) {} 107 explicit ArchetypeStateBase(MakeArchetypeState, ArchetypeState state) noexcept 108 : archetype_state(state) {} 116 explicit ArchetypeStateBase(MakeArchetypeState, ArchetypeState state) noexcept 117 : archetype_state(state) {} 132 ArchetypeState state) noexcept 134 state) {} [all...] |