Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dunicodedata.c633 int f,l,index,index1,comb; in nfc_nfkc() local
689 comb = 0; in nfc_nfkc()
692 if (comb) { in nfc_nfkc()
695 if (comb >= comb1) { in nfc_nfkc()
709 comb = comb1; in nfc_nfkc()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dunicodedata.c626 int f,l,index,index1,comb; in nfc_nfkc() local
682 comb = 0; in nfc_nfkc()
685 if (comb) { in nfc_nfkc()
688 if (comb >= comb1) { in nfc_nfkc()
702 comb = comb1; in nfc_nfkc()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_itertools.py288 comb = list(combinations(s, r))
294 self.assertEqual(len(comb), 0 if r>n else fact(n) // fact(r) // fact(n-r))
300 self.assertEqual(comb, sorted(set(comb)))
305 … self.assertEqual(comb, [t for t in perm if sorted(t)==list(t)]) # comb: perms that are sorted
306 … self.assertEqual(comb, [t for t in cwr if len(set(t))==r]) # comb: cwrs without dups
307 … self.assertEqual(comb, filter(set(cwr).__contains__, perm)) # comb: perm that is a cwr
308 … self.assertEqual(comb, filter(set(perm).__contains__, cwr)) # comb: cwr that is a perm
309 … self.assertEqual(comb, sorted(set(cwr) & set(perm))) # comb: both a cwr and a perm
/device/google/marlin/camera/QCamera2/HAL3/
DQCamera3HWI.cpp8679 const camera_stream_combination_t *comb) in isStreamCombinationSupported() argument
8692 camera3_stream_configuration_t streamList = {comb->num_streams, /*streams*/ nullptr, in isStreamCombinationSupported()
8693 comb->operation_mode, /*session_parameters*/ nullptr}; in isStreamCombinationSupported()
8694 streamList.streams = new camera3_stream_t * [comb->num_streams]; in isStreamCombinationSupported()
8695 camera3_stream_t *streamBuffer = new camera3_stream_t[comb->num_streams]; in isStreamCombinationSupported()
8696 for (size_t i = 0; i < comb->num_streams; i++) { in isStreamCombinationSupported()
8697 streamBuffer[i] = {comb->streams[i].stream_type, comb->streams[i].width, in isStreamCombinationSupported()
8698 comb->streams[i].height, comb->streams[i].format, comb->streams[i].usage, in isStreamCombinationSupported()
8699 /*max_buffers*/ 0, /*priv*/ nullptr, comb->streams[i].data_space, in isStreamCombinationSupported()
8700 comb->streams[i].rotation, comb->streams[i].physical_camera_id, /*reserved*/ {nullptr}}; in isStreamCombinationSupported()