Home
last modified time | relevance | path

Searched refs:group (Results 126 - 150 of 4116) sorted by relevance

12345678910>>...165

/third_party/musl/include/
H A Dgrp.h19 struct group { struct
26 struct group *getgrgid(gid_t);
27 struct group *getgrnam(const char *);
29 int getgrgid_r(gid_t, struct group *, char *, size_t, struct group **);
30 int getgrnam_r(const char *, struct group *, char *, size_t, struct group **);
33 struct group *getgrent(void);
39 struct group *fgetgrent(FILE *);
40 int putgrent(const struct group *, FIL
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/binding_model/
H A DvktBindingModelTests.cpp46 void createChildren (tcu::TestCaseGroup* group) in createChildren() argument
48 tcu::TestContext& testCtx = group->getTestContext(); in createChildren()
50 group->addChild(createShaderAccessTests(testCtx)); in createChildren()
51 group->addChild(createDescriptorUpdateTests(testCtx)); in createChildren()
52 group->addChild(createDescriptorSetRandomTests(testCtx)); in createChildren()
53 group->addChild(createDescriptorCopyTests(testCtx)); in createChildren()
54 group->addChild(createBufferDeviceAddressTests(testCtx)); in createChildren()
56 group->addChild(createDynamicOffsetTests(testCtx)); in createChildren()
57 group->addChild(createDescriptorMutableTests(testCtx)); in createChildren()
58 group in createChildren()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/binding_model/
H A DvktBindingModelTests.cpp46 void createChildren (tcu::TestCaseGroup* group) in createChildren() argument
48 tcu::TestContext& testCtx = group->getTestContext(); in createChildren()
50 group->addChild(createShaderAccessTests(testCtx)); in createChildren()
51 group->addChild(createDescriptorUpdateTests(testCtx)); in createChildren()
52 group->addChild(createDescriptorSetRandomTests(testCtx)); in createChildren()
53 group->addChild(createDescriptorCopyTests(testCtx)); in createChildren()
54 group->addChild(createBufferDeviceAddressTests(testCtx)); in createChildren()
56 group->addChild(createDynamicOffsetTests(testCtx)); in createChildren()
57 group->addChild(createDescriptorMutableTests(testCtx)); in createChildren()
58 group in createChildren()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/
H A DvktSpvAsmIntegerDotProductTests.cpp512 void addOpSDotKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, in addOpSDotKHRComputeTests() argument
535 group->addChild(new SpvAsmComputeShaderCase(testCtx, qualTestName.data(), spec)); in addOpSDotKHRComputeTests()
539 void addOpSDotKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, in addOpSDotKHRComputeTests() argument
568 addOpSDotKHRComputeTests<InBufferT, Int32Buffer, deInt32>(testCtx, group, numElements, inputInts1, inputInts2, inputInfo, packingInfo, vectorInfo); in addOpSDotKHRComputeTests()
570 addOpSDotKHRComputeTests<InBufferT, Int16Buffer, deInt16>(testCtx, group, numElements, inputInts1, inputInts2, inputInfo, packingInfo, vectorInfo); in addOpSDotKHRComputeTests()
572 addOpSDotKHRComputeTests<InBufferT, Int8Buffer, deInt8> (testCtx, group, numElements, inputInts1, inputInts2, inputInfo, packingInfo, vectorInfo); in addOpSDotKHRComputeTests()
578 void add32bitOpSDotKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, T vecMin, T vecMax) in add32bitOpSDotKHRComputeTests() argument
580 addOpSDotKHRComputeTests<Int32Buffer>(testCtx, group, rnd, name, dotProductPacking, DE_LENGTH_OF_ARRAY(dotProductPacking), in add32bitOpSDotKHRComputeTests()
585 void add16bitOpSDotKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, T vecMin, T vecMax) in add16bitOpSDotKHRComputeTests() argument
587 addOpSDotKHRComputeTests<Int16Buffer>(testCtx, group, rn in add16bitOpSDotKHRComputeTests()
592 add8bitOpSDotKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, T vecMin, T vecMax) add8bitOpSDotKHRComputeTests() argument
599 addOpUDotKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, int numElements, vector<OperandT> &inputInts1, vector<OperandT> &inputInts2, const struct DotProductInputInfo &inputInfo, const struct DotProductPackingInfo &packingInfo, const struct DotProductVectorInfo &vectorInfo) addOpUDotKHRComputeTests() argument
627 addOpUDotKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, const struct DotProductPackingInfo dotProductPackingInfo[], unsigned dotProductPackingInfoSize, const struct DotProductVectorInfo dotProductVectorInfo[], unsigned dotProductVectorInfoSize, T vecMin, T vecMax) addOpUDotKHRComputeTests() argument
666 add32bitOpUDotKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, T vecMin, T vecMax) add32bitOpUDotKHRComputeTests() argument
673 add16bitOpUDotKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, T vecMin, T vecMax) add16bitOpUDotKHRComputeTests() argument
680 add8bitOpUDotKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, T vecMin, T vecMax) add8bitOpUDotKHRComputeTests() argument
687 addOpSUDotKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, int numElements, vector<LHSOperandT> &inputInts1, vector<RHSOperandT> &inputInts2, const struct DotProductInputInfo &inputInfo, const struct DotProductPackingInfo &packingInfo, const struct DotProductVectorInfo &vectorInfo) addOpSUDotKHRComputeTests() argument
714 addOpSUDotKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, const struct DotProductPackingInfo dotProductPackingInfo[], unsigned dotProductPackingInfoSize, const struct DotProductVectorInfo dotProductVectorInfo[], unsigned dotProductVectorInfoSize, LHSOperandT lhsVecMin, LHSOperandT lhsVecMax, RHSOperandT rhsVecMin, RHSOperandT rhsVecMax) addOpSUDotKHRComputeTests() argument
754 add32bitOpSUDotKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, LHSOperandT lhsVecMin, LHSOperandT lhsVecMax, RHSOperandT rhsVecMin, RHSOperandT rhsVecMax) add32bitOpSUDotKHRComputeTests() argument
761 add16bitOpSUDotKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, LHSOperandT lhsVecMin, LHSOperandT lhsVecMax, RHSOperandT rhsVecMin, RHSOperandT rhsVecMax) add16bitOpSUDotKHRComputeTests() argument
768 add8bitOpSUDotKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, LHSOperandT lhsVecMin, LHSOperandT lhsVecMax, RHSOperandT rhsVecMin, RHSOperandT rhsVecMax) add8bitOpSUDotKHRComputeTests() argument
775 addOpSDotAccSatKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, int numElements, vector<OperandT> &inputInts1, vector<OperandT> &inputInts2, const struct DotProductInputInfo &inputInfo, const struct DotProductPackingInfo &packingInfo, const struct DotProductVectorInfo &vectorInfo, bool useMaxAddend) addOpSDotAccSatKHRComputeTests() argument
810 addOpSDotAccSatKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, const struct DotProductPackingInfo dotProductPackingInfo[], unsigned dotProductPackingInfoSize, const struct DotProductVectorInfo dotProductVectorInfo[], unsigned dotProductVectorInfoSize, T vecMin, T vecMax, bool useMaxAddend) addOpSDotAccSatKHRComputeTests() argument
850 add32bitOpSDotAccSatKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, T vecMin, T vecMax, bool useMaxAddend = true) add32bitOpSDotAccSatKHRComputeTests() argument
857 add16bitOpSDotAccSatKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, T vecMin, T vecMax, bool useMaxAddend = true) add16bitOpSDotAccSatKHRComputeTests() argument
864 add8bitOpSDotAccSatKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, T vecMin, T vecMax, bool useMaxAddend = true) add8bitOpSDotAccSatKHRComputeTests() argument
871 addOpUDotAccSatKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, int numElements, vector<OperandT> &inputInts1, vector<OperandT> &inputInts2, const struct DotProductInputInfo &inputInfo, const struct DotProductPackingInfo &packingInfo, const struct DotProductVectorInfo &vectorInfo, bool useMaxAddend) addOpUDotAccSatKHRComputeTests() argument
906 addOpUDotAccSatKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, const struct DotProductPackingInfo dotProductPackingInfo[], unsigned dotProductPackingInfoSize, const struct DotProductVectorInfo dotProductVectorInfo[], unsigned dotProductVectorInfoSize, T vecMin, T vecMax, bool useMaxAddend) addOpUDotAccSatKHRComputeTests() argument
946 add32bitOpUDotAccSatKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, T vecMin, T vecMax, bool useMaxAddend = true) add32bitOpUDotAccSatKHRComputeTests() argument
953 add16bitOpUDotAccSatKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, T vecMin, T vecMax, bool useMaxAddend = true) add16bitOpUDotAccSatKHRComputeTests() argument
960 add8bitOpUDotAccSatKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, T vecMin, T vecMax, bool useMaxAddend = true) add8bitOpUDotAccSatKHRComputeTests() argument
967 addOpSUDotAccSatKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, int numElements, vector<LHSOperandT> &inputInts1, vector<RHSOperandT> &inputInts2, const struct DotProductInputInfo &inputInfo, const struct DotProductPackingInfo &packingInfo, const struct DotProductVectorInfo &vectorInfo, bool useMaxAddend) addOpSUDotAccSatKHRComputeTests() argument
1002 addOpSUDotAccSatKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, const struct DotProductPackingInfo dotProductPackingInfo[], unsigned dotProductPackingInfoSize, const struct DotProductVectorInfo dotProductVectorInfo[], unsigned dotProductVectorInfoSize, LHSOperandT lhsVecMin, LHSOperandT lhsVecMax, RHSOperandT rhsVecMin, RHSOperandT rhsVecMax, bool useMaxAddend) addOpSUDotAccSatKHRComputeTests() argument
1042 add32bitOpSUDotAccSatKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, LHSOperandT lhsVecMin, LHSOperandT lhsVecMax, RHSOperandT rhsVecMin, RHSOperandT rhsVecMax, bool useMaxAddend = true) add32bitOpSUDotAccSatKHRComputeTests() argument
1049 add16bitOpSUDotAccSatKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, LHSOperandT lhsVecMin, LHSOperandT lhsVecMax, RHSOperandT rhsVecMin, RHSOperandT rhsVecMax, bool useMaxAddend = true) add16bitOpSUDotAccSatKHRComputeTests() argument
1056 add8bitOpSUDotAccSatKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, LHSOperandT lhsVecMin, LHSOperandT lhsVecMax, RHSOperandT rhsVecMin, RHSOperandT rhsVecMax, bool useMaxAddend = true) add8bitOpSUDotAccSatKHRComputeTests() argument
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/spirv_assembly/
H A DvktSpvAsmIntegerDotProductTests.cpp512 void addOpSDotKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, in addOpSDotKHRComputeTests() argument
535 group->addChild(new SpvAsmComputeShaderCase(testCtx, qualTestName.data(), "", spec)); in addOpSDotKHRComputeTests()
539 void addOpSDotKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, in addOpSDotKHRComputeTests() argument
568 addOpSDotKHRComputeTests<InBufferT, Int32Buffer, deInt32>(testCtx, group, numElements, inputInts1, inputInts2, inputInfo, packingInfo, vectorInfo); in addOpSDotKHRComputeTests()
570 addOpSDotKHRComputeTests<InBufferT, Int16Buffer, deInt16>(testCtx, group, numElements, inputInts1, inputInts2, inputInfo, packingInfo, vectorInfo); in addOpSDotKHRComputeTests()
572 addOpSDotKHRComputeTests<InBufferT, Int8Buffer, deInt8> (testCtx, group, numElements, inputInts1, inputInts2, inputInfo, packingInfo, vectorInfo); in addOpSDotKHRComputeTests()
578 void add32bitOpSDotKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, T vecMin, T vecMax) in add32bitOpSDotKHRComputeTests() argument
580 addOpSDotKHRComputeTests<Int32Buffer>(testCtx, group, rnd, name, dotProductPacking, DE_LENGTH_OF_ARRAY(dotProductPacking), in add32bitOpSDotKHRComputeTests()
585 void add16bitOpSDotKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, T vecMin, T vecMax) in add16bitOpSDotKHRComputeTests() argument
587 addOpSDotKHRComputeTests<Int16Buffer>(testCtx, group, rn in add16bitOpSDotKHRComputeTests()
592 add8bitOpSDotKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, T vecMin, T vecMax) add8bitOpSDotKHRComputeTests() argument
599 addOpUDotKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, int numElements, vector<OperandT> &inputInts1, vector<OperandT> &inputInts2, const struct DotProductInputInfo &inputInfo, const struct DotProductPackingInfo &packingInfo, const struct DotProductVectorInfo &vectorInfo) addOpUDotKHRComputeTests() argument
627 addOpUDotKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, const struct DotProductPackingInfo dotProductPackingInfo[], unsigned dotProductPackingInfoSize, const struct DotProductVectorInfo dotProductVectorInfo[], unsigned dotProductVectorInfoSize, T vecMin, T vecMax) addOpUDotKHRComputeTests() argument
666 add32bitOpUDotKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, T vecMin, T vecMax) add32bitOpUDotKHRComputeTests() argument
673 add16bitOpUDotKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, T vecMin, T vecMax) add16bitOpUDotKHRComputeTests() argument
680 add8bitOpUDotKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, T vecMin, T vecMax) add8bitOpUDotKHRComputeTests() argument
687 addOpSUDotKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, int numElements, vector<LHSOperandT> &inputInts1, vector<RHSOperandT> &inputInts2, const struct DotProductInputInfo &inputInfo, const struct DotProductPackingInfo &packingInfo, const struct DotProductVectorInfo &vectorInfo) addOpSUDotKHRComputeTests() argument
714 addOpSUDotKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, const struct DotProductPackingInfo dotProductPackingInfo[], unsigned dotProductPackingInfoSize, const struct DotProductVectorInfo dotProductVectorInfo[], unsigned dotProductVectorInfoSize, LHSOperandT lhsVecMin, LHSOperandT lhsVecMax, RHSOperandT rhsVecMin, RHSOperandT rhsVecMax) addOpSUDotKHRComputeTests() argument
754 add32bitOpSUDotKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, LHSOperandT lhsVecMin, LHSOperandT lhsVecMax, RHSOperandT rhsVecMin, RHSOperandT rhsVecMax) add32bitOpSUDotKHRComputeTests() argument
761 add16bitOpSUDotKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, LHSOperandT lhsVecMin, LHSOperandT lhsVecMax, RHSOperandT rhsVecMin, RHSOperandT rhsVecMax) add16bitOpSUDotKHRComputeTests() argument
768 add8bitOpSUDotKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, LHSOperandT lhsVecMin, LHSOperandT lhsVecMax, RHSOperandT rhsVecMin, RHSOperandT rhsVecMax) add8bitOpSUDotKHRComputeTests() argument
775 addOpSDotAccSatKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, int numElements, vector<OperandT> &inputInts1, vector<OperandT> &inputInts2, const struct DotProductInputInfo &inputInfo, const struct DotProductPackingInfo &packingInfo, const struct DotProductVectorInfo &vectorInfo, bool useMaxAddend) addOpSDotAccSatKHRComputeTests() argument
810 addOpSDotAccSatKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, const struct DotProductPackingInfo dotProductPackingInfo[], unsigned dotProductPackingInfoSize, const struct DotProductVectorInfo dotProductVectorInfo[], unsigned dotProductVectorInfoSize, T vecMin, T vecMax, bool useMaxAddend) addOpSDotAccSatKHRComputeTests() argument
850 add32bitOpSDotAccSatKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, T vecMin, T vecMax, bool useMaxAddend = true) add32bitOpSDotAccSatKHRComputeTests() argument
857 add16bitOpSDotAccSatKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, T vecMin, T vecMax, bool useMaxAddend = true) add16bitOpSDotAccSatKHRComputeTests() argument
864 add8bitOpSDotAccSatKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, T vecMin, T vecMax, bool useMaxAddend = true) add8bitOpSDotAccSatKHRComputeTests() argument
871 addOpUDotAccSatKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, int numElements, vector<OperandT> &inputInts1, vector<OperandT> &inputInts2, const struct DotProductInputInfo &inputInfo, const struct DotProductPackingInfo &packingInfo, const struct DotProductVectorInfo &vectorInfo, bool useMaxAddend) addOpUDotAccSatKHRComputeTests() argument
906 addOpUDotAccSatKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, const struct DotProductPackingInfo dotProductPackingInfo[], unsigned dotProductPackingInfoSize, const struct DotProductVectorInfo dotProductVectorInfo[], unsigned dotProductVectorInfoSize, T vecMin, T vecMax, bool useMaxAddend) addOpUDotAccSatKHRComputeTests() argument
946 add32bitOpUDotAccSatKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, T vecMin, T vecMax, bool useMaxAddend = true) add32bitOpUDotAccSatKHRComputeTests() argument
953 add16bitOpUDotAccSatKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, T vecMin, T vecMax, bool useMaxAddend = true) add16bitOpUDotAccSatKHRComputeTests() argument
960 add8bitOpUDotAccSatKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, T vecMin, T vecMax, bool useMaxAddend = true) add8bitOpUDotAccSatKHRComputeTests() argument
967 addOpSUDotAccSatKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, int numElements, vector<LHSOperandT> &inputInts1, vector<RHSOperandT> &inputInts2, const struct DotProductInputInfo &inputInfo, const struct DotProductPackingInfo &packingInfo, const struct DotProductVectorInfo &vectorInfo, bool useMaxAddend) addOpSUDotAccSatKHRComputeTests() argument
1002 addOpSUDotAccSatKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, const struct DotProductPackingInfo dotProductPackingInfo[], unsigned dotProductPackingInfoSize, const struct DotProductVectorInfo dotProductVectorInfo[], unsigned dotProductVectorInfoSize, LHSOperandT lhsVecMin, LHSOperandT lhsVecMax, RHSOperandT rhsVecMin, RHSOperandT rhsVecMax, bool useMaxAddend) addOpSUDotAccSatKHRComputeTests() argument
1042 add32bitOpSUDotAccSatKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, LHSOperandT lhsVecMin, LHSOperandT lhsVecMax, RHSOperandT rhsVecMin, RHSOperandT rhsVecMax, bool useMaxAddend = true) add32bitOpSUDotAccSatKHRComputeTests() argument
1049 add16bitOpSUDotAccSatKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, LHSOperandT lhsVecMin, LHSOperandT lhsVecMax, RHSOperandT rhsVecMin, RHSOperandT rhsVecMax, bool useMaxAddend = true) add16bitOpSUDotAccSatKHRComputeTests() argument
1056 add8bitOpSUDotAccSatKHRComputeTests(tcu::TestContext& testCtx, tcu::TestCaseGroup *group, de::Random &rnd, string name, LHSOperandT lhsVecMin, LHSOperandT lhsVecMax, RHSOperandT rhsVecMin, RHSOperandT rhsVecMax, bool useMaxAddend = true) add8bitOpSUDotAccSatKHRComputeTests() argument
[all...]
/third_party/skia/tools/skpbench/
H A D_benchresult.py43 self.accum = float(match.group('accum'))
44 self.median = float(match.group('median'))
45 self.max = float(match.group('max'))
46 self.min = float(match.group('min'))
47 self.stddev = float(match.group('stddev')[:-1]) # Drop '%' sign.
48 self.samples = int(match.group('samples'))
49 self.sample_ms = int(match.group('sample_ms'))
50 self.clock = match.group('clock')
51 self.metric = match.group('metric')
52 self.config = match.group('confi
[all...]
/kernel/linux/linux-6.6/fs/notify/
H A Dmark.c10 * The group->recnt and mark->refcnt tell how many "things" in the kernel
13 * the reference a group and a mark hold to each other.
21 * group->mark_mutex
25 * group->mark_mutex protects the marks_list anchored inside a given group and
27 * data (i.e group limits).
30 * Furthermore it protects the access to a reference of the group that the mark
45 * mark->connector set until we drop group->mark_mutex.
182 * this by holding a mark->lock or mark->group->mark_mutex for a mark on this
274 struct fsnotify_group *group in fsnotify_final_mark_destroy() local
382 struct fsnotify_group *group = mark->group; fsnotify_put_mark_wake() local
473 struct fsnotify_group *group = mark->group; fsnotify_free_mark() local
493 fsnotify_destroy_mark(struct fsnotify_mark *mark, struct fsnotify_group *group) fsnotify_destroy_mark() argument
708 struct fsnotify_group *group = mark->group; fsnotify_add_mark_locked() local
749 struct fsnotify_group *group = mark->group; fsnotify_add_mark() local
762 fsnotify_find_mark(fsnotify_connp_t *connp, struct fsnotify_group *group) fsnotify_find_mark() argument
786 fsnotify_clear_marks_by_group(struct fsnotify_group *group, unsigned int obj_type) fsnotify_clear_marks_by_group() argument
872 fsnotify_init_mark(struct fsnotify_mark *mark, struct fsnotify_group *group) fsnotify_init_mark() argument
[all...]
/kernel/linux/linux-5.10/arch/mips/rb532/
H A Dirq.c86 static inline int group_to_ip(unsigned int group) in group_to_ip() argument
88 return group + 2; in group_to_ip()
114 unsigned int group, intr_bit, irq_nr = d->irq; in rb532_enable_irq() local
121 group = ip >> 5; in rb532_enable_irq()
126 enable_local_irq(group_to_ip(group)); in rb532_enable_irq()
128 addr = intr_group[group].base_addr; in rb532_enable_irq()
135 unsigned int group, intr_bit, mask, irq_nr = d->irq; in rb532_disable_irq() local
142 group = ip >> 5; in rb532_disable_irq()
146 addr = intr_group[group].base_addr; in rb532_disable_irq()
152 if (group in rb532_disable_irq()
173 int group = irq_to_group(d->irq); rb532_set_type() local
215 unsigned int ip, pend, group; plat_irq_dispatch() local
[all...]
/kernel/linux/linux-6.6/arch/mips/rb532/
H A Dirq.c86 static inline int group_to_ip(unsigned int group) in group_to_ip() argument
88 return group + 2; in group_to_ip()
114 unsigned int group, intr_bit, irq_nr = d->irq; in rb532_enable_irq() local
121 group = ip >> 5; in rb532_enable_irq()
126 enable_local_irq(group_to_ip(group)); in rb532_enable_irq()
128 addr = intr_group[group].base_addr; in rb532_enable_irq()
135 unsigned int group, intr_bit, mask, irq_nr = d->irq; in rb532_disable_irq() local
142 group = ip >> 5; in rb532_disable_irq()
146 addr = intr_group[group].base_addr; in rb532_disable_irq()
152 if (group in rb532_disable_irq()
173 int group = irq_to_group(d->irq); rb532_set_type() local
215 unsigned int ip, pend, group; plat_irq_dispatch() local
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/fst/
H A Dfst.c43 struct fst_group *group = NULL; in fst_attach() local
53 group = g; in fst_attach()
58 if (!group) { in fst_attach()
59 group = fst_group_create(cfg->group_id); in fst_attach()
60 if (!group) { in fst_attach()
61 fst_printf(MSG_ERROR, "%s: FST group cannot be created", in fst_attach()
68 iface = fst_iface_create(group, ifname, own_addr, iface_obj, cfg); in fst_attach()
70 fst_printf_group(group, MSG_ERROR, "cannot create iface for %s", in fst_attach()
73 fst_group_delete(group); in fst_attach()
77 fst_group_attach_iface(group, ifac in fst_attach()
92 struct fst_group *group = fst_iface_get_group(iface); fst_detach() local
117 struct fst_group *group; fst_global_deinit() local
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/fst/
H A Dfst.c43 struct fst_group *group = NULL; in fst_attach() local
53 group = g; in fst_attach()
58 if (!group) { in fst_attach()
59 group = fst_group_create(cfg->group_id); in fst_attach()
60 if (!group) { in fst_attach()
61 fst_printf(MSG_ERROR, "%s: FST group cannot be created", in fst_attach()
68 iface = fst_iface_create(group, ifname, own_addr, iface_obj, cfg); in fst_attach()
70 fst_printf_group(group, MSG_ERROR, "cannot create iface for %s", in fst_attach()
73 fst_group_delete(group); in fst_attach()
77 fst_group_attach_iface(group, ifac in fst_attach()
92 struct fst_group *group = fst_iface_get_group(iface); fst_detach() local
117 struct fst_group *group; fst_global_deinit() local
[all...]
/third_party/mesa3d/src/broadcom/cle/
H A Dv3d_decoder.c73 struct v3d_group *group; member
88 v3d_group_get_name(struct v3d_group *group) in v3d_group_get_name() argument
90 return group->name; in v3d_group_get_name()
94 v3d_group_get_opcode(struct v3d_group *group) in v3d_group_get_opcode() argument
96 return group->opcode; in v3d_group_get_opcode()
220 struct v3d_group *group; in create_group() local
222 group = xzalloc(sizeof(*group)); in create_group()
224 group->name = xstrdup(name); in create_group()
226 group in create_group()
378 set_group_opcode(struct v3d_group *group, const char **atts) set_group_opcode() argument
467 struct v3d_group *group = create_group(ctx, "", atts, start_element() local
508 struct v3d_group *group = ctx->group; end_element() local
700 struct v3d_group *group = spec->commands[i]; v3d_spec_find_instruction() local
730 v3d_group_get_length(struct v3d_group *group) v3d_group_get_length() argument
742 v3d_field_iterator_init(struct v3d_field_iterator *iter, struct v3d_group *group, const uint8_t *p) v3d_field_iterator_init() argument
956 v3d_print_group(struct clif_dump *clif, struct v3d_group *group, uint64_t offset, const uint8_t *p) v3d_print_group() argument
[all...]
/kernel/linux/linux-5.10/fs/ext4/
H A Dresize.c106 ext4_group_t group) { in ext4_meta_bg_first_group()
107 return (group >> EXT4_DESC_PER_BLOCK_BITS(sb)) << in ext4_meta_bg_first_group()
112 ext4_group_t group) { in ext4_meta_bg_first_block_no()
113 group = ext4_meta_bg_first_group(sb, group); in ext4_meta_bg_first_block_no()
114 return ext4_group_first_block_no(sb, group); in ext4_meta_bg_first_block_no()
118 ext4_group_t group) { in ext4_group_overhead_blocks()
120 overhead = ext4_bg_num_gdb(sb, group); in ext4_group_overhead_blocks()
121 if (ext4_bg_has_super(sb, group)) in ext4_group_overhead_blocks()
137 ext4_group_t group in verify_group_input() local
105 ext4_meta_bg_first_group(struct super_block *sb, ext4_group_t group) ext4_meta_bg_first_group() argument
111 ext4_meta_bg_first_block_no(struct super_block *sb, ext4_group_t group) ext4_meta_bg_first_block_no() argument
117 ext4_group_overhead_blocks(struct super_block *sb, ext4_group_t group) ext4_group_overhead_blocks() argument
315 ext4_group_t group; ext4_alloc_group_tables() local
473 ext4_group_t group; set_flexbg_block_bitmap() local
541 ext4_group_t group, count; setup_new_flex_group_blocks() local
809 add_new_gdb(handle_t *handle, struct inode *inode, ext4_group_t group) add_new_gdb() argument
944 add_new_gdb_meta_bg(struct super_block *sb, handle_t *handle, ext4_group_t group) add_new_gdb_meta_bg() argument
1001 reserve_backup_gdb(handle_t *handle, struct inode *inode, ext4_group_t group) reserve_backup_gdb() argument
1124 ext4_group_t group = 0; update_backups() local
1223 ext4_add_new_descs(handle_t *handle, struct super_block *sb, ext4_group_t group, struct inode *resize_inode, ext4_group_t count) ext4_add_new_descs() argument
1281 ext4_set_bitmap_checksums(struct super_block *sb, ext4_group_t group, struct ext4_group_desc *gdp, struct ext4_new_group_data *group_data) ext4_set_bitmap_checksums() argument
1317 ext4_group_t group; ext4_setup_new_descs() local
1496 ext4_group_t group; ext4_flex_group_add() local
1590 ext4_group_t group; ext4_setup_next_flex_gd() local
1797 ext4_group_t group; ext4_group_extend() local
[all...]
H A Dialloc.c42 * blocks groups. Each group contains 1 bitmap block for blocks, 1 bitmap
45 * The file system contains group descriptors which are located after the
371 * for a particular block group or flex_bg. If flex_size is 1, then g
372 * is a block group number; otherwise it is flex_bg number.
407 * Otherwise we simply return a random group.
411 * It's OK to put directory into a group unless
415 * Parent's group is preferred, if it doesn't satisfy these
417 * of the groups look good we just look for a group with more
418 * free inodes than average (starting at parent's group).
422 ext4_group_t *group, umode_ in find_group_orlov()
421 find_group_orlov(struct super_block *sb, struct inode *parent, ext4_group_t *group, umode_t mode, const struct qstr *qstr) find_group_orlov() argument
568 find_group_other(struct super_block *sb, struct inode *parent, ext4_group_t *group, umode_t mode) find_group_other() argument
673 recently_deleted(struct super_block *sb, ext4_group_t group, int ino) recently_deleted() argument
716 find_inode_bit(struct super_block *sb, ext4_group_t group, struct buffer_head *bitmap, unsigned long *ino) find_inode_bit() argument
755 ext4_group_t group; ext4_mark_inode_used() local
932 ext4_group_t ngroups, group = 0; __ext4_new_inode() local
1511 ext4_init_inode_table(struct super_block *sb, ext4_group_t group, int barrier) ext4_init_inode_table() argument
[all...]
/kernel/linux/linux-6.6/fs/ext4/
H A Dresize.c110 ext4_group_t group) { in ext4_meta_bg_first_group()
111 return (group >> EXT4_DESC_PER_BLOCK_BITS(sb)) << in ext4_meta_bg_first_group()
116 ext4_group_t group) { in ext4_meta_bg_first_block_no()
117 group = ext4_meta_bg_first_group(sb, group); in ext4_meta_bg_first_block_no()
118 return ext4_group_first_block_no(sb, group); in ext4_meta_bg_first_block_no()
122 ext4_group_t group) { in ext4_group_overhead_blocks()
124 overhead = ext4_bg_num_gdb(sb, group); in ext4_group_overhead_blocks()
125 if (ext4_bg_has_super(sb, group)) in ext4_group_overhead_blocks()
141 ext4_group_t group in verify_group_input() local
109 ext4_meta_bg_first_group(struct super_block *sb, ext4_group_t group) ext4_meta_bg_first_group() argument
115 ext4_meta_bg_first_block_no(struct super_block *sb, ext4_group_t group) ext4_meta_bg_first_block_no() argument
121 ext4_group_overhead_blocks(struct super_block *sb, ext4_group_t group) ext4_group_overhead_blocks() argument
316 ext4_group_t group; ext4_alloc_group_tables() local
475 ext4_group_t group; set_flexbg_block_bitmap() local
544 ext4_group_t group, count; setup_new_flex_group_blocks() local
824 add_new_gdb(handle_t *handle, struct inode *inode, ext4_group_t group) add_new_gdb() argument
960 add_new_gdb_meta_bg(struct super_block *sb, handle_t *handle, ext4_group_t group) add_new_gdb_meta_bg() argument
1017 reserve_backup_gdb(handle_t *handle, struct inode *inode, ext4_group_t group) reserve_backup_gdb() argument
1116 ext4_set_block_group_nr(struct super_block *sb, char *data, ext4_group_t group) ext4_set_block_group_nr() argument
1151 ext4_group_t group = 0; update_backups() local
1254 ext4_add_new_descs(handle_t *handle, struct super_block *sb, ext4_group_t group, struct inode *resize_inode, ext4_group_t count) ext4_add_new_descs() argument
1348 ext4_group_t group; ext4_setup_new_descs() local
1546 ext4_group_t group; ext4_flex_group_add() local
1641 ext4_group_t group; ext4_setup_next_flex_gd() local
1848 ext4_group_t group; ext4_group_extend() local
[all...]
/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_p2p/
H A Dp2p_group_operating_state.cpp95 WIFI_LOGI("Create rpt group."); in ProcessCmdCreateRptGroup()
127 // Restart the group using an existing network ID. in ProcessCmdCreateGroup()
128 WIFI_LOGE("Restart the group using an existing network ID."); in ProcessCmdCreateGroup()
140 // Create a new persistence group. in ProcessCmdCreateGroup()
141 WIFI_LOGE("Create a new %{public}s group.", (netId == PERSISTENT_NET_ID) ? "persistence" : "temporary"); in ProcessCmdCreateGroup()
174 WifiP2pGroupInfo group; in ProcessGroupStartedEvt() local
175 msg->GetMessageObj(group); in ProcessGroupStartedEvt()
176 WIFI_LOGI("P2P_EVENT_GROUP_STARTED create group interface name : %{private}s, network name : %{private}s, owner " in ProcessGroupStartedEvt()
178 group.GetInterface().c_str(), group in ProcessGroupStartedEvt()
288 WifiP2pGroupInfo group = groupManager.GetCurrentGroup(); ProcessCmdRemoveGroup() local
346 WifiP2pGroupInfo group; ProcessCmdDeleteGroup() local
[all...]
/foundation/arkui/ui_lite/test/uitest/test_view_group/
H A Dui_test_view_group.cpp45 UIViewGroup* group = new UIViewGroup(); in CreateTestCaseGroup() local
46 group->Resize(Screen::GetInstance().GetWidth(), 200); // 200: height in CreateTestCaseGroup()
47 return group; in CreateTestCaseGroup()
80 UIViewGroup* group = CreateTestCaseGroup(); in UIKitViewGroupTestAddRemove001() local
81 group->SetViewId("UIKit_ViewGroup_Test_AddRemove_001"); in UIKitViewGroupTestAddRemove001()
82 group->SetPosition(0, 0); in UIKitViewGroupTestAddRemove001()
85 group->Add(label); in UIKitViewGroupTestAddRemove001()
90 group->Add(addBtn_); in UIKitViewGroupTestAddRemove001()
97 group->Add(removeBtn_); in UIKitViewGroupTestAddRemove001()
104 group in UIKitViewGroupTestAddRemove001()
119 UIViewGroup* group = CreateTestCaseGroup(); UIKitViewGroupTestAddError001() local
159 UIViewGroup* group = CreateTestCaseGroup(); UIKitViewGroupTestInsertError001() local
[all...]
/kernel/linux/linux-5.10/arch/s390/tools/
H A Dgen_opcode_table.c46 struct insn_group *group; member
248 struct insn_group *group; in add_to_group() local
250 group = desc->group ? &desc->group[desc->nr_groups - 1] : NULL; in add_to_group()
251 if (group && (!strncmp(group->opcode, insn->opcode, 2) || group->type->byte == 0)) { in add_to_group()
252 group->count++; in add_to_group()
256 desc->group in add_to_group()
306 struct insn_group *group; print_opcode_table_offsets() local
[all...]
/kernel/linux/linux-6.6/arch/s390/tools/
H A Dgen_opcode_table.c46 struct insn_group *group; member
248 struct insn_group *group; in add_to_group() local
250 group = desc->group ? &desc->group[desc->nr_groups - 1] : NULL; in add_to_group()
251 if (group && (!strncmp(group->opcode, insn->opcode, 2) || group->type->byte == 0)) { in add_to_group()
252 group->count++; in add_to_group()
256 desc->group in add_to_group()
306 struct insn_group *group; print_opcode_table_offsets() local
[all...]
/third_party/node/deps/openssl/openssl/crypto/ec/
H A Dec2_oct.c39 int ossl_ec_GF2m_simple_set_compressed_coordinates(const EC_GROUP *group, in ossl_ec_GF2m_simple_set_compressed_coordinates() argument
66 if (!BN_GF2m_mod_arr(x, x_, group->poly)) in ossl_ec_GF2m_simple_set_compressed_coordinates()
69 if (!BN_GF2m_mod_sqrt_arr(y, group->b, group->poly, ctx)) in ossl_ec_GF2m_simple_set_compressed_coordinates()
72 if (!group->meth->field_sqr(group, tmp, x, ctx)) in ossl_ec_GF2m_simple_set_compressed_coordinates()
74 if (!group->meth->field_div(group, tmp, group->b, tmp, ctx)) in ossl_ec_GF2m_simple_set_compressed_coordinates()
76 if (!BN_GF2m_add(tmp, group in ossl_ec_GF2m_simple_set_compressed_coordinates()
125 ossl_ec_GF2m_simple_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, unsigned char *buf, size_t len, BN_CTX *ctx) ossl_ec_GF2m_simple_point2oct() argument
256 ossl_ec_GF2m_simple_oct2point(const EC_GROUP *group, EC_POINT *point, const unsigned char *buf, size_t len, BN_CTX *ctx) ossl_ec_GF2m_simple_oct2point() argument
[all...]
/third_party/openssl/crypto/ec/
H A Dec2_oct.c39 int ossl_ec_GF2m_simple_set_compressed_coordinates(const EC_GROUP *group, in ossl_ec_GF2m_simple_set_compressed_coordinates() argument
66 if (!BN_GF2m_mod_arr(x, x_, group->poly)) in ossl_ec_GF2m_simple_set_compressed_coordinates()
69 if (!BN_GF2m_mod_sqrt_arr(y, group->b, group->poly, ctx)) in ossl_ec_GF2m_simple_set_compressed_coordinates()
72 if (!group->meth->field_sqr(group, tmp, x, ctx)) in ossl_ec_GF2m_simple_set_compressed_coordinates()
74 if (!group->meth->field_div(group, tmp, group->b, tmp, ctx)) in ossl_ec_GF2m_simple_set_compressed_coordinates()
76 if (!BN_GF2m_add(tmp, group in ossl_ec_GF2m_simple_set_compressed_coordinates()
125 ossl_ec_GF2m_simple_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, unsigned char *buf, size_t len, BN_CTX *ctx) ossl_ec_GF2m_simple_point2oct() argument
256 ossl_ec_GF2m_simple_oct2point(const EC_GROUP *group, EC_POINT *point, const unsigned char *buf, size_t len, BN_CTX *ctx) ossl_ec_GF2m_simple_oct2point() argument
[all...]
/third_party/python/Tools/msi/
H A Dpurge.py27 URL = "https://www.python.org/ftp/python/{}/".format(m.group(1))
28 REL = m.group(2) or ''
64 "python-{}.exe".format(m.group(0)),
65 "python-{}-webinstall.exe".format(m.group(0)),
66 "python-{}-amd64.exe".format(m.group(0)),
67 "python-{}-amd64-webinstall.exe".format(m.group(0)),
68 "python-{}-arm64.exe".format(m.group(0)),
69 "python-{}-arm64-webinstall.exe".format(m.group(0)),
70 "python-{}-embed-amd64.zip".format(m.group(0)),
71 "python-{}-embed-win32.zip".format(m.group(
[all...]
/kernel/linux/linux-5.10/drivers/pinctrl/sirf/
H A Dpinctrl-atlas6.c5 * Copyright (c) 2011 - 2014 Cambridge Silicon Radio Limited, a CSR plc group
132 .group = 1,
135 .group = 2,
156 .group = 2,
162 .group = 1,
165 .group = 0,
183 .group = 2,
189 .group = 1,
192 .group = 0,
212 .group
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/
H A Dwpa_auth.c60 struct wpa_group *group);
63 struct wpa_group *group);
65 struct wpa_group *group);
70 struct wpa_group *group);
72 struct wpa_group *group);
74 struct wpa_group *group);
332 if (random_get_bytes(wpa_auth->group->GMK, WPA_GMK_LEN)) { in wpa_rekey_gmk()
338 wpa_auth->group->GMK, WPA_GMK_LEN); in wpa_rekey_gmk()
351 struct wpa_group *group, *next; in wpa_rekey_gtk() local
354 group in wpa_rekey_gtk()
416 wpa_group_init_gmk_and_counter(struct wpa_authenticator *wpa_auth, struct wpa_group *group) wpa_group_init_gmk_and_counter() argument
455 struct wpa_group *group; wpa_group_init() local
582 struct wpa_group *group = wpa_auth->group; wpa_init_keys() local
601 struct wpa_group *group, *prev; wpa_deinit() local
640 struct wpa_group *group; wpa_reconfig() local
926 wpa_receive_error_report(struct wpa_authenticator *wpa_auth, struct wpa_state_machine *sm, int group) wpa_receive_error_report() argument
1029 struct wpa_group *group; wpa_auth_gtk_rekey_in_process() local
2028 wpa_group_ensure_init(struct wpa_authenticator *wpa_auth, struct wpa_group *group) wpa_group_ensure_init() argument
4088 wpa_gtk_update(struct wpa_authenticator *wpa_auth, struct wpa_group *group) wpa_gtk_update() argument
4133 wpa_group_gtk_init(struct wpa_authenticator *wpa_auth, struct wpa_group *group) wpa_group_gtk_init() argument
4325 wpa_group_setkeys(struct wpa_authenticator *wpa_auth, struct wpa_group *group) wpa_group_setkeys() argument
4362 wpa_group_config_group_keys(struct wpa_authenticator *wpa_auth, struct wpa_group *group) wpa_group_config_group_keys() argument
4414 wpa_group_fatal_failure(struct wpa_authenticator *wpa_auth, struct wpa_group *group) wpa_group_fatal_failure() argument
4425 wpa_group_setkeysdone(struct wpa_authenticator *wpa_auth, struct wpa_group *group) wpa_group_setkeysdone() argument
4443 wpa_group_sm_step(struct wpa_authenticator *wpa_auth, struct wpa_group *group) wpa_group_sm_step() argument
4525 struct wpa_group *group; wpa_gtk_rekey() local
5010 wpa_group_free(struct wpa_authenticator *wpa_auth, struct wpa_group *group) wpa_group_free() argument
5032 wpa_group_get(struct wpa_authenticator *wpa_auth, struct wpa_group *group) wpa_group_get() argument
5044 wpa_group_put(struct wpa_authenticator *wpa_auth, struct wpa_group *group) wpa_group_put() argument
5065 struct wpa_group *group; wpa_auth_add_group() local
5091 struct wpa_group *group; wpa_auth_ensure_group() local
5131 struct wpa_group *group; wpa_auth_release_group() local
5177 struct wpa_group *group; wpa_auth_sta_set_vlan() local
5287 struct wpa_group *group; wpa_auth_reconfig_group_keys() local
[all...]
/third_party/node/deps/openssl/openssl/include/openssl/
H A Dec.h174 * \param group EC_GROUP object to be cleared and freed.
176 OSSL_DEPRECATEDIN_3_0 void EC_GROUP_clear_free(EC_GROUP *group);
179 * \param group EC_GROUP object
182 OSSL_DEPRECATEDIN_3_0 const EC_METHOD *EC_GROUP_method_of(const EC_GROUP *group);
192 * \param group EC_GROUP object to be freed.
194 void EC_GROUP_free(EC_GROUP *group);
211 * \param group EC_GROUP object
213 * \param order the order of the group generated by the generator.
214 * \param cofactor the index of the sub-group generated by the generator
215 * in the group o
[all...]

Completed in 19 milliseconds

12345678910>>...165