Home
last modified time | relevance | path

Searched refs:sortedArgs (Results 1 – 4 of 4) sorted by relevance

/dports/audio/supercollider/SuperCollider-3.11.0-Source/SCClassLibrary/Common/Audio/
H A DBasicOpsUGen.sc454 var argArray, rate, sortedArgs;
461 sortedArgs = argArray.sort {|a b| a.rate < b.rate};
463 ^super.new1(rate, *sortedArgs)
473 var argArray, rate, sortedArgs;
482 sortedArgs = argArray.sort {|a b| a.rate < b.rate};
484 ^super.new1(rate, *sortedArgs)
/dports/math/speedcrunch/heldercorreia-speedcrunch-c0fc9c68d292/src/core/
H A Dfunctions.cpp525 Function::ArgumentList sortedArgs = args; in function_median()
526 std::sort(sortedArgs.begin(), sortedArgs.end()); in function_median()
529 return sortedArgs.at((args.count() - 1) / 2); in function_median()
532 return (sortedArgs.at(centerLeft) + sortedArgs.at(centerLeft + 1)) / Quantity(2); in function_median()
/dports/multimedia/libva-intel-media-driver/media-driver-intel-media-22.1.1/media_driver/agnostic/common/cm/
H A Dcm_kernel_rt.cpp2486 PCM_ARG* sortedArgs = MOS_NewArray(PCM_ARG,numArgs); in CreateMovInstructions() local
2487 if( !sortedArgs ) in CreateMovInstructions()
2494 sortedArgs[ j ] = tempArgs + j; in CreateMovInstructions()
2497 QuickSort( sortedArgs, 0, numArgs - 1 ); in CreateMovInstructions()
2504 MosSafeDeleteArray(sortedArgs); in CreateMovInstructions()
2516 if( sortedArgs[j]->unitCount == 1 ) in CreateMovInstructions()
2521 kernelArgEnd = sortedArgs[j]->unitOffsetInPayload + sortedArgs[j]->unitSize; in CreateMovInstructions()
2544 if (sortedArgs[j]->unitCount > 1) // per thread in CreateMovInstructions()
2547 threadArgStart += sortedArgs[j]->unitSize; in CreateMovInstructions()
2577 if (sortedArgs[j]->unitCount == 1) in CreateMovInstructions()
[all …]
/dports/multimedia/cmrtlib/media-driver-intel-media-20.1.1/media_driver/agnostic/common/cm/
H A Dcm_kernel_rt.cpp2477 PCM_ARG* sortedArgs = MOS_NewArray(PCM_ARG,numArgs); in CreateMovInstructions() local
2478 if( !sortedArgs ) in CreateMovInstructions()
2485 sortedArgs[ j ] = tempArgs + j; in CreateMovInstructions()
2488 QuickSort( sortedArgs, 0, numArgs - 1 ); in CreateMovInstructions()
2495 MosSafeDeleteArray(sortedArgs); in CreateMovInstructions()
2507 if( sortedArgs[j]->unitCount == 1 ) in CreateMovInstructions()
2512 kernelArgEnd = sortedArgs[j]->unitOffsetInPayload + sortedArgs[j]->unitSize; in CreateMovInstructions()
2535 if (sortedArgs[j]->unitCount > 1) // per thread in CreateMovInstructions()
2538 threadArgStart += sortedArgs[j]->unitSize; in CreateMovInstructions()
2568 if (sortedArgs[j]->unitCount == 1) in CreateMovInstructions()
[all …]