/third_party/vk-gl-cts/modules/gles2/functional/ |
H A D | es2fDefaultVertexAttributeTests.cpp | 82 virtual tcu::Vec4 load (glu::CallLogWrapper& gl, int index, const tcu::Vec4& v) const = 0; 99 tcu::Vec4 load (glu::CallLogWrapper& gl, int index, const tcu::Vec4& v) const \ 133 tcu::Vec4 load (glu::CallLogWrapper& gl, int index, const tcu::Vec4& v) const \ 138 gl.glVertexAttrib ##COMPS ##TYPECODE (index, value.getPtr()); \ 153 GEN_DIRECT_FLOAT_LOADER(float, 1, f, "vertex_attrib_1f", (index, value.x())); 154 GEN_DIRECT_FLOAT_LOADER(float, 2, f, "vertex_attrib_2f", (index, value.x(), value.y())); 155 GEN_DIRECT_FLOAT_LOADER(float, 3, f, "vertex_attrib_3f", (index, value.x(), value.y(), value.z())); 156 GEN_DIRECT_FLOAT_LOADER(float, 4, f, "vertex_attrib_4f", (index, value.x(), value.y(), value.z(), value.w()));
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/ |
H A D | jsXNode.js | 340 * @param itemGenFunc Item generation function to generate new elements. If index parameter is 342 * @param idGenFunc ID generation function to generate unique ID for each element. If index parameter is 344 * @param itemGenFuncUsesIndex itemGenFunc optional index parameter is given or not. 345 * @param idGenFuncUsesIndex idGenFunc optional index parameter is given or not. 357 idGenFunc = (item, index) => { 359 return `${index}__${JSON.stringify(item)}`; 370 // ID gen is with index. 379 arr.forEach((item, index) => { 380 newIdArray.push(`${itemGenFuncUsesIndex ? index + '_' : ''}` + idGenFunc(item)); 389 // Item gen is with index [all...] |
/foundation/communication/dsoftbus/core/authentication/src/ |
H A D | auth_manager.c | 291 void RemoveAuthSessionKeyByIndex(int64_t authId, int32_t index, AuthLinkType type) in RemoveAuthSessionKeyByIndex() argument 302 RemoveSessionkeyByIndex(&auth->sessionKeyList, index, type); in RemoveAuthSessionKeyByIndex() 602 AUTH_LOGI(AUTH_FSM, "index is alread exist"); in ProcessSessionKey() 611 AUTH_LOGI(AUTH_FSM, "add key index=%{public}d, new type=%{public}d", TO_INT32(*peerAuthSeq), info->connInfo.type); in ProcessSessionKey() 682 static int32_t ProcessEmptySessionKey(const AuthSessionInfo *info, int32_t index, bool isServer, in ProcessEmptySessionKey() argument 691 if (SetSessionKeyAuthLinkType(&auth->sessionKeyList, index, AUTH_LINK_TYPE_BLE) == SOFTBUS_OK) { in ProcessEmptySessionKey() 692 AUTH_LOGI(AUTH_FSM, "add keyType, index=%{public}d, type=%{public}d, authId=%{public}" PRId64, in ProcessEmptySessionKey() 693 index, AUTH_LINK_TYPE_BLE, auth->authId); in ProcessEmptySessionKey() 696 if (AddSessionKey(&auth->sessionKeyList, index, sessionKey, AUTH_LINK_TYPE_BLE, false) != SOFTBUS_OK || in ProcessEmptySessionKey() 697 SetSessionKeyAvailable(&auth->sessionKeyList, index) ! in ProcessEmptySessionKey() 707 AuthProcessEmptySessionKey(const AuthSessionInfo *info, int32_t index) AuthProcessEmptySessionKey() argument 952 int64_t index = authSeq; AuthManagerSetAuthPassed() local 1370 int32_t index = (int32_t)SoftBusLtoHl(*(uint32_t *)data); HandleConnectionData() local 1410 int32_t index = (int32_t)SoftBusLtoHl(*(uint32_t *)data); HandleDecryptFailData() local 2005 AuthDeviceGetAuthHandleByIndex(const char *udid, bool isServer, int32_t index, AuthHandle *authHandle) AuthDeviceGetAuthHandleByIndex() argument [all...] |
/third_party/PyYAML/yaml/ |
H A D | _yaml.pyx | 63 cdef readonly size_t index 69 def __init__(self, object name, size_t index, size_t line, size_t column, 72 self.index = index 314 self.parser.context_mark.index, 319 self.parser.problem_mark.index, 360 token.start_mark.index, 365 token.end_mark.index, 507 event.start_mark.index, 512 event.end_mark.index, [all...] |
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/normalizer/ |
H A D | BasicTest.java | 324 * having to do with combining characters with an index of zero. 326 * decompositions. However, having an index of zero means that 1026 int index = 0; in assertEqual() 1031 if (index >= expected.length()) { in assertEqual() 1034 + " at index " + index); in assertEqual() 1037 int want = UTF16.charAt(expected,index); in assertEqual() 1042 + " at index " + index); in assertEqual() 1044 index in assertEqual() 1220 UCharIterator(int[] src, int len, int index) UCharIterator() argument [all...] |
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/ |
H A D | BasicTest.java | 321 * having to do with combining characters with an index of zero. 323 * decompositions. However, having an index of zero means that 1023 int index = 0; in assertEqual() 1028 if (index >= expected.length()) { in assertEqual() 1031 + " at index " + index); in assertEqual() 1034 int want = UTF16.charAt(expected,index); in assertEqual() 1039 + " at index " + index); in assertEqual() 1041 index in assertEqual() 1217 UCharIterator(int[] src, int len, int index) UCharIterator() argument [all...] |
/third_party/glfw/deps/glad/ |
H A D | gl.h | 1921 typedef void (GLAD_API_PTR *PFNGLBINDATTRIBLOCATIONPROC)(GLuint program, GLuint index, const GLchar * name); 1923 typedef void (GLAD_API_PTR *PFNGLBINDBUFFERBASEPROC)(GLenum target, GLuint index, GLuint buffer); 1924 typedef void (GLAD_API_PTR *PFNGLBINDBUFFERRANGEPROC)(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); 1926 typedef void (GLAD_API_PTR *PFNGLBINDFRAGDATALOCATIONINDEXEDPROC)(GLuint program, GLuint colorNumber, GLuint index, const GLchar * name); 1991 typedef void (GLAD_API_PTR *PFNGLCOLORMASKIPROC)(GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); 2035 typedef void (GLAD_API_PTR *PFNGLDISABLEVERTEXATTRIBARRAYPROC)(GLuint index); 2036 typedef void (GLAD_API_PTR *PFNGLDISABLEIPROC)(GLenum target, GLuint index); 2053 typedef void (GLAD_API_PTR *PFNGLENABLEVERTEXATTRIBARRAYPROC)(GLuint index); 2054 typedef void (GLAD_API_PTR *PFNGLENABLEIPROC)(GLenum target, GLuint index); 2103 typedef void (GLAD_API_PTR *PFNGLGETACTIVEATTRIBPROC)(GLuint program, GLuint index, GLsize 5817 unsigned int index = 0; glad_gl_get_extensions() local 5850 unsigned int index; glad_gl_free_extensions() local 5880 unsigned int index; glad_gl_has_extension() local [all...] |
/third_party/node/deps/v8/src/compiler/ |
H A D | bytecode-graph-builder.cc | 74 // Get or create the node for this parameter index. If such a node is 77 Node* GetParameter(int index, const char* debug_name_hint = nullptr); 100 Node* BuildLoadFeedbackCell(int index); 103 Node* BuildLoadNativeContextField(int index); 260 Node* receiver, Node* cache_array, Node* cache_type, Node* index, 432 void set_current_exception_handler(int index) { in set_current_exception_handler() argument 433 current_exception_handler_ = index; in set_current_exception_handler() 714 return the_register.index() + register_base(); in RegisterToValuesIndex() 809 int index = register_base() + i; in Merge() local 818 DCHECK_NE(values_[index], builde in Merge() 873 int index = register_base() + i; PrepareForLoop() local 1081 int index = Linkage::kJSCallClosureParamIndex; GetFunctionClosure() local 1092 const size_t index = GetParameter() local 1113 BuildLoadFeedbackCell(int index) BuildLoadFeedbackCell() argument 1122 BuildLoadNativeContextField(int index) BuildLoadNativeContextField() argument 1581 Node* index = VisitStaInArrayLiteral() local 3587 Node* index = VisitForInContinue() local 3601 Node* index = VisitForInNext() local 3628 Node* index = VisitForInStep() local 4055 TryBuildSimplifiedForInNext(Node* receiver, Node* cache_array, Node* cache_type, Node* index, FeedbackSlot slot) TryBuildSimplifiedForInNext() argument [all...] |
/foundation/multimedia/image_framework/frameworks/kits/js/common/ |
H A D | image_source_napi.cpp | 102 uint32_t index = 0; member 123 uint32_t index = 0; member 608 for (size_t index = 0; index < recordParameters.size(); ++index) { in SetRecordParametersInfo() 609 status = SetValueString(env, recordParameters[index].first, recordParameters[index].second, result); in SetRecordParametersInfo() 629 uint32_t index = 0; in CreateModifyErrorArray() local 648 status = napi_set_element(env, result, index, errMsgVal); in CreateModifyErrorArray() 653 ++index; in CreateModifyErrorArray() 669 uint32_t index = 0; CreateObtainErrorArray() local 1479 uint32_t index = 0; GetImageInfoSync() local 1512 CreatePixelMapInner(ImageSourceNapi *thisPtr, std::shared_ptr<ImageSource> imageSource, uint32_t index, DecodeOptions decodeOpts, uint32_t &status) CreatePixelMapInner() argument [all...] |
/kernel/linux/linux-5.10/drivers/net/ethernet/freescale/ |
H A D | fec_main.c | 336 int index = 0; in fec_dump() local 346 index, in fec_dump() 352 txq->tx_skbuff[index]); in fec_dump() 354 index++; in fec_dump() 393 unsigned int index; in fec_enet_txq_submit_frag_skb() local 430 index = fec_enet_get_bd_index(bdp, &txq->bd); in fec_enet_txq_submit_frag_skb() 433 memcpy(txq->tx_bounce[index], bufaddr, frag_len); in fec_enet_txq_submit_frag_skb() 434 bufaddr = txq->tx_bounce[index]; in fec_enet_txq_submit_frag_skb() 479 unsigned int index; in fec_enet_txq_submit_skb() local 506 index in fec_enet_txq_submit_skb() 596 fec_enet_txq_put_data_tso(struct fec_enet_priv_tx_q *txq, struct sk_buff *skb, struct net_device *ndev, struct bufdesc *bdp, int index, char *data, int size, bool last_tcp, bool is_last) fec_enet_txq_put_data_tso() argument 656 fec_enet_txq_put_hdr_tso(struct fec_enet_priv_tx_q *txq, struct sk_buff *skb, struct net_device *ndev, struct bufdesc *bdp, int index) fec_enet_txq_put_hdr_tso() argument 717 unsigned int index = 0; fec_enet_txq_submit_tso() local 1246 int index = 0; fec_enet_tx_queue() local 1422 int index = 0; fec_enet_rx_queue() local [all...] |
/kernel/linux/linux-5.10/net/sched/ |
H A D | cls_api.c | 52 return jhash_3words(tp->chain->index, tp->prio, in destroy_obj_hashfn() 70 return tp1->chain->index == tp2->chain->index && in tcf_proto_cmp() 359 chain->index = chain_index; in tcf_chain_create() 361 if (!chain->index) in tcf_chain_create() 379 if (chain->index) in tcf_chain0_head_change() 397 if (!chain->index) in tcf_chain_detach() 449 if (chain->index == chain_index) in tcf_chain_lookup() 462 if (chain->index == chain_index) in tcf_chain_lookup_rcu() 564 chain->index, bloc in __tcf_chain_put() 2555 long index; tc_dump_tfilter() local 2949 long index; tc_dump_chain() local [all...] |
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
H A D | TransformFeedbackTest.cpp | 2448 ASSERT_EQ(mapPtrFloat[floatIndex], vertices[vertIndex]) << "at float index " << floatIndex; in VerifyVertexFloats() 2454 ASSERT_EQ(mapPtrFloat[floatIndex], 0) << "at float index " << floatIndex; in VerifyVertexFloats() 2781 for (size_t index = 0; index < kXfbInitData.size(); ++index) in TEST_P() 2783 EXPECT_EQ(xfbOutput[index], kAttribInitData[index] * 2); in TEST_P() 3011 for (uint32_t index = 0; index < kBufferSize; ++index) in TEST_P() [all...] |
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | validationES2.cpp | 3725 GLuint index, in ValidateBindAttribLocation() 3728 if (index >= MAX_VERTEX_ATTRIBS) in ValidateBindAttribLocation() 4197 GLuint index) in ValidateDisableVertexAttribArray() 4199 if (index >= MAX_VERTEX_ATTRIBS) in ValidateDisableVertexAttribArray() 4210 GLuint index) in ValidateEnableVertexAttribArray() 4212 if (index >= MAX_VERTEX_ATTRIBS) in ValidateEnableVertexAttribArray() 4249 GLuint index, in ValidateGetActiveAttrib() 4269 if (index >= static_cast<GLuint>(programObject->getActiveAttributeCount())) in ValidateGetActiveAttrib() 4281 GLuint index, in ValidateGetActiveUniform() 4301 if (index > in ValidateGetActiveUniform() 3722 ValidateBindAttribLocation(const Context *context, angle::EntryPoint entryPoint, ShaderProgramID program, GLuint index, const GLchar *name) ValidateBindAttribLocation() argument 4195 ValidateDisableVertexAttribArray(const Context *context, angle::EntryPoint entryPoint, GLuint index) ValidateDisableVertexAttribArray() argument 4208 ValidateEnableVertexAttribArray(const Context *context, angle::EntryPoint entryPoint, GLuint index) ValidateEnableVertexAttribArray() argument 4246 ValidateGetActiveAttrib(const Context *context, angle::EntryPoint entryPoint, ShaderProgramID program, GLuint index, GLsizei bufsize, const GLsizei *length, const GLint *size, const GLenum *type, const GLchar *name) ValidateGetActiveAttrib() argument 4278 ValidateGetActiveUniform(const Context *context, angle::EntryPoint entryPoint, ShaderProgramID program, GLuint index, GLsizei bufsize, const GLsizei *length, const GLint *size, const GLenum *type, const GLchar *name) ValidateGetActiveUniform() argument 5080 ValidateVertexAttrib1f(const Context *context, angle::EntryPoint entryPoint, GLuint index, GLfloat x) ValidateVertexAttrib1f() argument 5088 ValidateVertexAttrib1fv(const Context *context, angle::EntryPoint entryPoint, GLuint index, const GLfloat *values) ValidateVertexAttrib1fv() argument 5096 ValidateVertexAttrib2f(const Context *context, angle::EntryPoint entryPoint, GLuint index, GLfloat x, GLfloat y) ValidateVertexAttrib2f() argument 5105 ValidateVertexAttrib2fv(const Context *context, angle::EntryPoint entryPoint, GLuint index, const GLfloat *values) ValidateVertexAttrib2fv() argument 5113 ValidateVertexAttrib3f(const Context *context, angle::EntryPoint entryPoint, GLuint index, GLfloat x, GLfloat y, GLfloat z) ValidateVertexAttrib3f() argument 5123 ValidateVertexAttrib3fv(const Context *context, angle::EntryPoint entryPoint, GLuint index, const GLfloat *values) ValidateVertexAttrib3fv() argument 5131 ValidateVertexAttrib4f(const Context *context, angle::EntryPoint entryPoint, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w) ValidateVertexAttrib4f() argument 5142 ValidateVertexAttrib4fv(const Context *context, angle::EntryPoint entryPoint, GLuint index, const GLfloat *values) ValidateVertexAttrib4fv() argument 5663 ValidateGetVertexAttribfv(const Context *context, angle::EntryPoint entryPoint, GLuint index, GLenum pname, const GLfloat *params) ValidateGetVertexAttribfv() argument 5672 ValidateGetVertexAttribiv(const Context *context, angle::EntryPoint entryPoint, GLuint index, GLenum pname, const GLint *params) ValidateGetVertexAttribiv() argument 5681 ValidateGetVertexAttribPointerv(const Context *context, angle::EntryPoint entryPoint, GLuint index, GLenum pname, void *const *pointer) ValidateGetVertexAttribPointerv() argument 6072 ValidateVertexAttribDivisorANGLE(const Context *context, angle::EntryPoint entryPoint, GLuint index, GLuint divisor) ValidateVertexAttribDivisorANGLE() argument 6106 ValidateVertexAttribDivisorEXT(const Context *context, angle::EntryPoint entryPoint, GLuint index, GLuint divisor) ValidateVertexAttribDivisorEXT() argument [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | parserharness.js | 335 public runChild(index: number, done: IDone) { 336 return this.call(<any>((done) => this.children[index].run(done)), done); 441 public runChildren(done: IDone, index = 0) { 445 for (; index < this.children.length; index++) { 446 async = this.runChild(index, <any>function (e) { 447 that.passed = that.passed && that.children[index].passed; 450 that.runChildren(done, index + 1); 475 public runChildren(index = 0) { 479 for (; index < thi [all...] |
/base/print/print_fwk/interfaces/kits/napi/print_napi/src/ |
H A D | napi_print_ext.cpp | 40 for (uint32_t index = 0; index < len; index++) { in AddPrinters() 42 napi_get_element(env, argv[NapiPrintUtils::INDEX_ZERO], index, &value); in AddPrinters() 94 for (uint32_t index = 0; index < len; index++) { in RemovePrinters() 96 napi_get_element(env, argv[NapiPrintUtils::INDEX_ZERO], index, &value); in RemovePrinters() 142 for (uint32_t index = 0; index < le in UpdatePrinters() [all...] |
/base/request/request/frameworks/js/napi/src/ |
H A D | napi_utils.cpp | 156 int index = 0;
in Convert2JSValue() local 159 napi_set_element(env, value, index++, jsInt);
in Convert2JSValue() 168 int index = 0;
in Convert2JSValue() local 170 napi_set_element(env, value, index++, Convert2JSValue(env, cInt));
in Convert2JSValue() 179 int index = 0;
in Convert2JSValue() local 181 napi_set_element(env, value, index++, Convert2JSValue(env, id));
in Convert2JSValue() 242 int index = 0;
in Convert2JSValue() local 249 napi_set_element(env, value, index++, jsTaskState);
in Convert2JSValue() 259 napi_set_named_property(env, value, "index", Convert2JSValue(env, progress.index));
in Convert2JSValue() [all...] |
/foundation/graphic/graphic_3d/lume/scenewidgetplugin/plugin/src/ |
H A D | node_impl.cpp | 144 size_t index = SIZE_MAX; in Activate() local 148 index = GetChildIndex(*parent, *this); in Activate() 152 [path, index, e = ecsObject_->GetEntity(), weak_sh = BASE_NS::weak_ptr(sceneHolder)] { in Activate() 156 sh->ReparentEntity(e, path, index); in Activate() 437 void NodeImpl::RemoveIndex(size_t index) in RemoveIndex() argument 439 SCENE_PLUGIN_VERBOSE_LOG("remove node from %zu", index); in RemoveIndex() 440 removeIndex_ = index; in RemoveIndex() 443 void NodeImpl::SetIndex(size_t index) in SetIndex() argument 445 if (removeIndex_ == index) { in SetIndex() 449 if (removeIndex_ != SIZE_MAX && removeIndex_ < index) { in SetIndex() [all...] |
/foundation/graphic/graphic_2d/rosen/modules/graphics_effect/src/ |
H A D | ge_mesa_blur_shader_filter.cpp | 126 int index; in SetBlurParamsFivePassSmall() local 132 index = 0; in SetBlurParamsFivePassSmall() 137 index = (BLUR_RADIUS_21 - BLUR_RADIUS_20) / 8; in SetBlurParamsFivePassSmall() 142 index = floor(findex); in SetBlurParamsFivePassSmall() 143 w1 = findex - index; in SetBlurParamsFivePassSmall() 147 bParam.offsets[stride * i] = scale * offsetTableFivePasses[index][stride * i]; in SetBlurParamsFivePassSmall() 148 bParam.offsets[stride * i + 1] = scale * offsetTableFivePasses[index][stride * i + 1]; in SetBlurParamsFivePassSmall() 153 bParam.offsets[stride * i] = w2 * offsetTableFivePasses[index][stride * i] + in SetBlurParamsFivePassSmall() 154 w1 * offsetTableFivePasses[index + 1][stride * i]; in SetBlurParamsFivePassSmall() 155 bParam.offsets[stride * i + 1] = w2 * offsetTableFivePasses[index][strid in SetBlurParamsFivePassSmall() 176 int index = (BLUR_RADIUS_21 - BLUR_RADIUS_20) / 8; SetBlurParamsFivePassLarge() local [all...] |
/foundation/multimedia/av_codec/test/moduletest/audio_decoder/Avbuffer/src/ |
H A D | param_check_test.cpp | 862 * @tc.name : FreeOutputData - index param check 871 uint32_t index; in HWTEST_F() local 882 index = aDecBufferDemo->GetInputIndex(); in HWTEST_F() 883 index = 8; in HWTEST_F() 884 result0 = aDecBufferDemo->PushInputData(codec, index); in HWTEST_F() 886 index = aDecBufferDemo->GetOutputIndex(); in HWTEST_F() 887 index = -1; in HWTEST_F() 888 result0 = aDecBufferDemo->FreeOutputData(codec, index); in HWTEST_F() 897 * @tc.name : PushInputDataEOS - index param check 906 uint32_t index; in HWTEST_F() local [all...] |
/foundation/multimedia/av_codec/test/moduletest/audio_encoder/NativeAPI/ |
H A D | NativeParamCheckTest.cpp | 451 * @tc.name : OH_AudioEncoder_PushInputData - index check 488 uint32_t index = encoderDemo->NativeGetInputIndex(); in HWTEST_F() local 489 ret = encoderDemo->NativePushInputData(handle, index, info); in HWTEST_F() 539 uint32_t index = encoderDemo->NativeGetInputIndex(); in HWTEST_F() local 540 ret = encoderDemo->NativePushInputData(handle, index, info); in HWTEST_F() 543 index = encoderDemo->NativeGetInputIndex(); in HWTEST_F() 545 ret = encoderDemo->NativePushInputData(handle, index, info); in HWTEST_F() 592 uint32_t index = encoderDemo->NativeGetInputIndex(); in HWTEST_F() local 593 ret = encoderDemo->NativePushInputData(handle, index, info); in HWTEST_F() 596 index in HWTEST_F() 645 uint32_t index = encoderDemo->NativeGetInputIndex(); HWTEST_F() local [all...] |
/foundation/resourceschedule/resource_schedule_service/ressched/services/resschedmgr/resschedfwk/src/ |
H A D | plugin_mgr.cpp | 109 for (int index = 0; index < configStrsSize; index++) {
in ParseConfigReader() 110 if (configStrs[index].empty()) {
in ParseConfigReader() 113 if (!configReader_->LoadFromConfigContent(configStrs[index])) {
in ParseConfigReader() 114 RESSCHED_LOGW("%{public}s, PluginMgr load config file index:%{public}d failed!", __func__, index);
in ParseConfigReader() 121 RESSCHED_LOGI("PluginMgr load config file index:%{public}d success!", index);
in ParseConfigReader() 134 for (int32_t index in ParsePluginSwitch() [all...] |
/foundation/distributedhardware/device_manager/test/commonunittest/ |
H A D | UTTest_dm_deviceprofile_connector.cpp | 344 uint32_t index = 0; in HWTEST_F() local 345 DeviceProfileConnector::GetInstance().ProcessBindType(profiles, paramInfo, sinkBindType, bindTypeIndex, index); in HWTEST_F() 357 uint32_t index = 0; in HWTEST_F() local 358 DeviceProfileConnector::GetInstance().ProcessBindType(profiles, paramInfo, sinkBindType, bindTypeIndex, index); in HWTEST_F() 374 uint32_t index = 0; in HWTEST_F() local 375 DeviceProfileConnector::GetInstance().ProcessBindType(profiles, paramInfo, sinkBindType, bindTypeIndex, index); in HWTEST_F() 391 uint32_t index = 0; in HWTEST_F() local 392 DeviceProfileConnector::GetInstance().ProcessBindType(profiles, paramInfo, sinkBindType, bindTypeIndex, index); in HWTEST_F() 404 uint32_t index = 0; in HWTEST_F() local 405 DeviceProfileConnector::GetInstance().ProcessBindType(profiles, paramInfo, sinkBindType, bindTypeIndex, index); in HWTEST_F() 421 uint32_t index = 0; HWTEST_F() local 438 uint32_t index = 0; HWTEST_F() local [all...] |
/foundation/communication/bluetooth_service/services/bluetooth/stack/src/gap/ |
H A D | gap_hci_receive.c | 738 int index; in GapRecvLeAdvertisingReportEvent() local 749 for (index = 0; index < hciParam.numReports; index++) { in GapRecvLeAdvertisingReportEvent() 750 hciParam.reports[index].data = MEM_MALLOC.alloc(hciParam.reports[index].lengthData); in GapRecvLeAdvertisingReportEvent() 751 if (hciParam.reports[index].data == NULL) { in GapRecvLeAdvertisingReportEvent() 755 (void)memcpy_s(hciParam.reports[index].data, in GapRecvLeAdvertisingReportEvent() 756 hciParam.reports[index].lengthData, in GapRecvLeAdvertisingReportEvent() 757 eventParam->reports[index] in GapRecvLeAdvertisingReportEvent() [all...] |
/kernel/linux/linux-5.10/drivers/clk/ |
H A D | clk-si5351.c | 397 static int si5351_pll_set_parent(struct clk_hw *hw, u8 index) in si5351_pll_set_parent() argument 403 index > 0) in si5351_pll_set_parent() 406 if (index > 1) in si5351_pll_set_parent() 410 (index == 0) ? SI5351_PLL_SRC_XTAL : in si5351_pll_set_parent() 589 static int si5351_msynth_set_parent(struct clk_hw *hw, u8 index) in si5351_msynth_set_parent() argument 595 (index == 0) ? SI5351_MULTISYNTH_SRC_VCO0 : in si5351_msynth_set_parent() 958 int index = 0; in si5351_clkout_get_parent() local 964 index = 0; in si5351_clkout_get_parent() 967 index = 1; in si5351_clkout_get_parent() 970 index in si5351_clkout_get_parent() 980 si5351_clkout_set_parent(struct clk_hw *hw, u8 index) si5351_clkout_set_parent() argument [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/amdgpu/ |
H A D | atom.c | 70 static int amdgpu_atom_execute_table_locked(struct atom_context *ctx, int index, uint32_t * params); 71 int amdgpu_atom_execute_table(struct atom_context *ctx, int index, uint32_t * params); 107 uint32_t index, uint32_t data) in atom_iio_execute() 141 ((index >> CU8(base + 2)) & in atom_iio_execute() 1204 static int amdgpu_atom_execute_table_locked(struct atom_context *ctx, int index, uint32_t * params) in amdgpu_atom_execute_table_locked() argument 1206 int base = CU16(ctx->cmd_table + 4 + 2 * index); in amdgpu_atom_execute_table_locked() 1265 int amdgpu_atom_execute_table(struct atom_context *ctx, int index, uint32_t * params) in amdgpu_atom_execute_table() argument 1281 r = amdgpu_atom_execute_table_locked(ctx, index, params); in amdgpu_atom_execute_table() 1390 bool amdgpu_atom_parse_data_header(struct atom_context *ctx, int index, in amdgpu_atom_parse_data_header() argument 1394 int offset = index * in amdgpu_atom_parse_data_header() 106 atom_iio_execute(struct atom_context *ctx, int base, uint32_t index, uint32_t data) atom_iio_execute() argument 1411 amdgpu_atom_parse_cmd_header(struct atom_context *ctx, int index, uint8_t * frev, uint8_t * crev) amdgpu_atom_parse_cmd_header() argument [all...] |