Home
last modified time | relevance | path

Searched refs:groupSize (Results 1 – 25 of 977) sorted by relevance

12345678910>>...40

/dports/games/libretro-fbneo/FBNeo-bbe3c05/src/dep/libs/lib7z/
H A DBwtSort.c71 if (groupSize <= 1) in SortGroup()
183 if (j == groupSize) in SortGroup()
208 j = groupSize; in SortGroup()
433 UInt32 groupSize; in BlockSort() local
443 groupSize++); in BlockSort()
445 groupSize++; in BlockSort()
458 groupSize++; in BlockSort()
469 i += groupSize; in BlockSort()
494 i += groupSize; in BlockSort()
510 groupSize++; in BlockSort()
[all …]
/dports/archivers/ppmd-7z/p7zip_9.04/C/
H A DBwtSort.c71 if (groupSize <= 1) in SortGroup()
183 if (j == groupSize) in SortGroup()
208 j = groupSize; in SortGroup()
433 UInt32 groupSize; in BlockSort() local
443 groupSize++); in BlockSort()
445 groupSize++; in BlockSort()
458 groupSize++; in BlockSort()
469 i += groupSize; in BlockSort()
494 i += groupSize; in BlockSort()
510 groupSize++; in BlockSort()
[all …]
/dports/archivers/maxcso/maxcso-1.10.0/7zip/C/
H A DBwtSort.c71 if (groupSize <= 1) in SortGroup()
183 if (j == groupSize) in SortGroup()
208 j = groupSize; in SortGroup()
433 UInt32 groupSize; in BlockSort() local
443 groupSize++); in BlockSort()
445 groupSize++; in BlockSort()
458 groupSize++; in BlockSort()
469 i += groupSize; in BlockSort()
494 i += groupSize; in BlockSort()
510 groupSize++; in BlockSort()
[all …]
/dports/archivers/7-zip/7-zip-21.07/C/
H A DBwtSort.c71 if (groupSize <= 1) in SortGroup()
183 if (j == groupSize) in SortGroup()
208 j = groupSize; in SortGroup()
433 UInt32 groupSize; in BlockSort() local
443 groupSize++); in BlockSort()
445 groupSize++; in BlockSort()
458 groupSize++; in BlockSort()
469 i += groupSize; in BlockSort()
494 i += groupSize; in BlockSort()
510 groupSize++; in BlockSort()
[all …]
/dports/net/norm/norm-1.5r6/src/sim/ns/
H A Dsuppress.tcl39 foreach groupSize $sizeList {
40 set lambda [expr log($groupSize) + 1.0]
42 set alpha [expr $N / $groupSize]
43 puts $outFile "Receivers:$groupSize alpha:$alpha"
51 foreach groupSize $sizeList {
52 set lambda [expr log($groupSize) + 1.0]
54 set alpha [expr $N / $groupSize]
55 puts $outFile "Receivers:$groupSize alpha:$alpha"
64 foreach groupSize $sizeList {
65 puts "Starting simulation run for groupSize:$groupSize ..."
[all …]
H A Dsimplenorm.tcl8 set groupSize "10"
35 set groupSize $option
73 set numNodes [expr $groupSize + 1]
90 set linkRate [expr $groupSize * [bw_parse $sendRate]]
123 $norm(1) gsize $groupSize
133 $norm($i) gsize $groupSize
148 puts "simplenorm: Running simulation (gsize:$groupSize rate:$sendRate backoff $backoffFactor durati…
/dports/science/silo/silo-4.10.2-bsd/src/silo/
H A Dpmpio.h208 int groupSize; member
290 int groupSize, numGroupsWithExtraProc, commSplit, in PMPIO_Init() local
300 groupSize = commSize / numGroups; in PMPIO_Init()
302 commSplit = numGroupsWithExtraProc * (groupSize + 1); in PMPIO_Init()
306 groupRank = rankInComm / (groupSize + 1); in PMPIO_Init()
307 rankInGroup = rankInComm % (groupSize + 1); in PMPIO_Init()
308 if (rankInGroup < groupSize) in PMPIO_Init()
315 if (rankInGroup < groupSize - 1) in PMPIO_Init()
329 ret->groupSize = groupSize; in PMPIO_Init()
450 retval = rankInComm / (Bat->groupSize + 1); in PMPIO_GroupRank()
[all …]
/dports/devel/okteta/okteta-0.26.6/kasten/controllers/view/libbytearrayfilter/filter/
H A Drotatebytearrayfilter.cpp35 const int groupSize = mParameterSet.groupSize(); in filter() local
36 const int groupBitCount = (groupSize * RotateBitsPerByte); in filter()
51 while (g < shiftByteWidth && m + groupSize <= range.end()) { in filter()
52 result[r++] = model->byte((m++) + groupSize - shiftByteWidth); in filter()
56 while (g < groupSize && m <= range.end()) { in filter()
67 } else if (g == groupSize) { in filter()
84 while (g + shiftByteWidth < groupSize && m + shiftByteWidth <= range.end()) { in filter()
89 while (g < groupSize && m <= range.end()) { in filter()
90 result[r++] = model->byte((m++) + shiftByteWidth - groupSize); in filter()
100 } else if (g == groupSize) { in filter()
H A Dshiftbytearrayfilter.cpp36 const int groupSize = mParameterSet.groupSize(); in filter() local
37 const int groupBitCount = (groupSize * ShiftBitsPerByte); in filter()
58 while (g < groupSize && m <= range.end()) { in filter()
82 while (g + shiftByteWidth < groupSize && m + shiftByteWidth <= range.end()) { in filter()
87 while (g < groupSize && m <= range.end()) { in filter()
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/level_zero/core/test/aub_tests/cmdlist/
H A Dappend_kernel_indirect_aub_tests.cpp49 const uint32_t groupSize[] = {1, 2, 3}; in TEST_F() local
51 const uint32_t expectedGlobalWorkSize[] = {groupSize[0] * groupCount[0], in TEST_F()
52 groupSize[1] * groupCount[1], in TEST_F()
53 groupSize[2] * groupCount[2]}; in TEST_F()
79 …EXPECT_EQ(ZE_RESULT_SUCCESS, zeKernelSetGroupSize(kernel, groupSize[0], groupSize[1], groupSize[2]… in TEST_F()
96 const uint32_t groupSize[] = {1, 2, 3}; in TEST_F() local
123 …EXPECT_EQ(ZE_RESULT_SUCCESS, zeKernelSetGroupSize(kernel, groupSize[0], groupSize[1], groupSize[2]… in TEST_F()
171 std::array<uint32_t, 3> groupSize; in TEST_F() local
175 std::tie(groupSize, groupCount, expectedWorkDim) = testData[i]; in TEST_F()
191 …EXPECT_EQ(ZE_RESULT_SUCCESS, zeKernelSetGroupSize(kernel, groupSize[0], groupSize[1], groupSize[2]… in TEST_F()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/xphoto/src/
H A Dbm3d_image_denoising.cpp70 const int &groupSize, in bm3dDenoising_() argument
126 int groupSize, in bm3dDenoising() argument
176 groupSize, in bm3dDenoising()
198 groupSize, in bm3dDenoising()
213 groupSize, in bm3dDenoising()
237 int groupSize, in bm3dDenoising() argument
259 groupSize, in bm3dDenoising()
281 int groupSize,
298 CV_UNUSED(groupSize);
318 int groupSize,
[all …]
/dports/www/firefox-esr/firefox-91.8.0/dom/xslt/xslt/
H A DtxFormatNumberFunctionCall.cpp108 int groupSize = -1; in evaluate() local
176 groupSize = 0; in evaluate()
178 if (groupSize >= 0) groupSize++; in evaluate()
187 groupSize = 0; in evaluate()
189 if (groupSize >= 0) groupSize++; in evaluate()
225 groupSize == 0) { in evaluate()
265 if (groupSize < 0) groupSize = intDigits + 10; // to simplify grouping in evaluate()
271 (intDigits - 1) / groupSize); // group separators in evaluate()
338 if (i != 0 && i % groupSize == 0) { in evaluate()
349 if (i % groupSize == 0) { in evaluate()
/dports/lang/spidermonkey78/firefox-78.9.0/dom/xslt/xslt/
H A DtxFormatNumberFunctionCall.cpp109 int groupSize = -1; in evaluate() local
177 groupSize = 0; in evaluate()
179 if (groupSize >= 0) groupSize++; in evaluate()
188 groupSize = 0; in evaluate()
190 if (groupSize >= 0) groupSize++; in evaluate()
226 groupSize == 0) { in evaluate()
266 if (groupSize < 0) groupSize = intDigits + 10; // to simplify grouping in evaluate()
272 (intDigits - 1) / groupSize); // group separators in evaluate()
339 if (i != 0 && i % groupSize == 0) { in evaluate()
350 if (i % groupSize == 0) { in evaluate()
/dports/www/firefox/firefox-99.0/dom/xslt/xslt/
H A DtxFormatNumberFunctionCall.cpp108 int groupSize = -1; in evaluate() local
176 groupSize = 0; in evaluate()
178 if (groupSize >= 0) groupSize++; in evaluate()
187 groupSize = 0; in evaluate()
189 if (groupSize >= 0) groupSize++; in evaluate()
225 groupSize == 0) { in evaluate()
265 if (groupSize < 0) groupSize = intDigits + 10; // to simplify grouping in evaluate()
271 (intDigits - 1) / groupSize); // group separators in evaluate()
338 if (i != 0 && i % groupSize == 0) { in evaluate()
349 if (i % groupSize == 0) { in evaluate()
/dports/mail/thunderbird/thunderbird-91.8.0/dom/xslt/xslt/
H A DtxFormatNumberFunctionCall.cpp108 int groupSize = -1; in evaluate() local
176 groupSize = 0; in evaluate()
178 if (groupSize >= 0) groupSize++; in evaluate()
187 groupSize = 0; in evaluate()
189 if (groupSize >= 0) groupSize++; in evaluate()
225 groupSize == 0) { in evaluate()
265 if (groupSize < 0) groupSize = intDigits + 10; // to simplify grouping in evaluate()
271 (intDigits - 1) / groupSize); // group separators in evaluate()
338 if (i != 0 && i % groupSize == 0) { in evaluate()
349 if (i % groupSize == 0) { in evaluate()
/dports/www/firefox-legacy/firefox-52.8.0esr/dom/xslt/xslt/
H A DtxFormatNumberFunctionCall.cpp107 int groupSize=-1; in evaluate() local
194 groupSize=0; in evaluate()
196 if (groupSize >= 0) in evaluate()
197 groupSize++; in evaluate()
207 groupSize = 0; in evaluate()
209 if (groupSize >= 0) in evaluate()
210 groupSize++; in evaluate()
250 groupSize == 0) { in evaluate()
286 if (groupSize < 0) in evaluate()
350 if (i != 0 && i%groupSize == 0) { in evaluate()
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/dom/xslt/xslt/
H A DtxFormatNumberFunctionCall.cpp100 int groupSize = -1; in evaluate() local
178 groupSize = 0; in evaluate()
180 if (groupSize >= 0) groupSize++; in evaluate()
189 groupSize = 0; in evaluate()
191 if (groupSize >= 0) groupSize++; in evaluate()
227 groupSize == 0) { in evaluate()
267 if (groupSize < 0) groupSize = intDigits + 10; // to simplify grouping in evaluate()
273 (intDigits - 1) / groupSize); // group separators in evaluate()
324 if (i != 0 && i % groupSize == 0) { in evaluate()
332 if (i % groupSize == 0) { in evaluate()
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/level_zero/core/test/unit_tests/sources/cmdlist/
H A Dtest_cmdlist_fill.cpp246 uint32_t groupSize[] = {groupSizeX, 1u, 1u}; in HWTEST2_F() local
249 builtInFunction->suggestGroupSize(groupSize[0], groupSize[1], groupSize[2], in HWTEST2_F()
250 &groupSize[0], &groupSize[1], &groupSize[2]); in HWTEST2_F()
254 EXPECT_EQ(commandList->groupSizeX[0], groupSize[0]); in HWTEST2_F()
270 uint32_t groupSize[] = {groupSizeX, 1u, 1u}; in HWTEST2_F() local
273 builtInFunction->suggestGroupSize(groupSize[0], groupSize[1], groupSize[2], in HWTEST2_F()
274 &groupSize[0], &groupSize[1], &groupSize[2]); in HWTEST2_F()
278 EXPECT_EQ(commandList->groupSizeX[0], groupSize[0]); in HWTEST2_F()
/dports/lang/pocl/pocl-1.8/tests/regression/
H A Dtest_flatten_barrier_subs.cl68 if (localId < groupSize/(2*stride))\
76 sum = shmem[groupSize - 1];\
77 shmem[groupSize - 1] = 0;\
80 for (int stride = (groupSize >> 1); stride > 0; stride >>= 1)\
82 if (localId < groupSize/(2*stride))\
102 int groupSize = get_local_size(0);\
131 if (localId < groupSize/(2*stride))\
138 shmem[groupSize - 1] = 0;\
142 if (localId < groupSize/(2*stride))\
160 int groupSize = get_local_size(0);\
[all …]
/dports/math/gap/gap-4.11.0/pkg/images-1.3.0/tst/
H A Dtest_functions.g46 FERRET_TEST_LIMIT := rec(count := 100, groupSize := 8);
133 CheckMinimalImageTest(randomGroup(Random([2..FERRET_TEST_LIMIT.groupSize])),
158 CheckMinimalImageTest(randomGroup(Random([2..FERRET_TEST_LIMIT.groupSize])),
169 CheckMinimalImageTest(randomGroup(Random([2..FERRET_TEST_LIMIT.groupSize])),
181 CheckMinimalImageTest(randomGroup(Random([2..FERRET_TEST_LIMIT.groupSize + 1])),
192 CheckMinimalImageTest(randomGroup(Random([2..FERRET_TEST_LIMIT.groupSize])),
200 CheckMinimalImageTest(randomGroup(Random([2..FERRET_TEST_LIMIT.groupSize])),
201 List([1..Random([1..FERRET_TEST_LIMIT.groupSize/2])],
212 CheckMinimalImageTest(randomGroup(Random([2..FERRET_TEST_LIMIT.groupSize])),
223 CheckMinimalImageTest(randomGroup(Random([2..FERRET_TEST_LIMIT.groupSize])),
[all …]
/dports/science/dftbplus/dftbplus-19.1/prog/dftb+/lib_common/
H A Dmpienv.F9032 integer :: groupSize component
68 this%groupSize = this%globalComm%size / this%nGroup
69 if (this%nGroup * this%groupSize /= this%globalComm%size) then
75 this%myGroup = this%globalComm%rank / this%groupSize
76 myRank = mod(this%globalComm%rank, this%groupSize)
78 allocate(this%groupMembers(this%groupSize))
/dports/cad/ldview/ldview-4.4/
H A DExportOptionsDialog.cpp48 int groupSize = 0; in initCanvasOptions() local
54 bool inGroup = groupSize > 0; in initCanvasOptions()
56 if (groupSize > 0) in initCanvasOptions()
58 groupSize--; in initCanvasOptions()
59 if (groupSize == 0) in initCanvasOptions()
63 groupSize = groupSizes.top(); in initCanvasOptions()
83 groupSizes.push(groupSize); in initCanvasOptions()
85 groupSize = it->getGroupSize(); in initCanvasOptions()
/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/SourceFiles/countries/
H A Dcountries_instance.cpp362 auto groupSize = 0; in format() local
370 groupSize++; in format()
373 if (groupSize) { in format()
374 groups.push_back(base::take(groupSize)); in format()
389 auto groupSize = 0; in format() local
395 resultGroups.push_back(groupSize); in format()
396 groupSize = 0; in format()
410 groupSize++; in format()
419 groupSize++; in format()
429 if (groupSize) { in format()
[all …]
/dports/net-im/tut/tut-0.0.17/vendor/github.com/icza/gox/fmtx/
H A Dfmtx.go17 func FormatInt(n int64, groupSize int, grouping byte) string {
18 if groupSize < 1 {
19 groupSize = 3
27 numOfCommas := (numOfDigits - 1) / groupSize
39 if k++; k == groupSize {
/dports/misc/mnn/MNN-1.2.0/source/backend/opencl/execution/image/
H A DRoiPoolingExecution.cpp90 int remain = gws[i] % coreNum, groupSize = gws[i] / coreNum; in roiPoolingLocalWS() local
92 lws[i] = groupSize; in roiPoolingLocalWS()
94 while(groupSize) { in roiPoolingLocalWS()
95 int remain = gws[i] % groupSize; in roiPoolingLocalWS()
96 if (remain == 0 && (i > 0 || groupSize <= maxWorkGroupSize)) { in roiPoolingLocalWS()
97 lws[i] = groupSize; in roiPoolingLocalWS()
100 --groupSize; in roiPoolingLocalWS()

12345678910>>...40