Searched refs:__cnt (Results 1 – 6 of 6) sorted by relevance
/external/llvm-project/pstl/include/pstl/internal/ |
D | unseq_backend_simd.h | 239 _DifferenceType __cnt = 1; in __simd_unique_copy() local 245 _PSTL_PRAGMA_SIMD_ORDERED_MONOTONIC(__cnt : 1) in __simd_unique_copy() 248 __result[__cnt] = __first[__i]; in __simd_unique_copy() 249 ++__cnt; in __simd_unique_copy() 252 return __result + __cnt; in __simd_unique_copy() 270 _DifferenceType __cnt = 0; in __simd_copy_if() local 275 _PSTL_PRAGMA_SIMD_ORDERED_MONOTONIC(__cnt : 1) in __simd_copy_if() 278 __result[__cnt] = __first[__i]; in __simd_copy_if() 279 ++__cnt; in __simd_copy_if() 282 return __result + __cnt; in __simd_copy_if() [all …]
|
/external/llvm-project/libcxx/include/ |
D | bit | 210 _Tp __rotl(_Tp __t, unsigned int __cnt) _NOEXCEPT 214 if ((__cnt % __dig) == 0) 216 return (__t << (__cnt % __dig)) | (__t >> (__dig - (__cnt % __dig))); 222 _Tp __rotr(_Tp __t, unsigned int __cnt) _NOEXCEPT 226 if ((__cnt % __dig) == 0) 228 return (__t >> (__cnt % __dig)) | (__t << (__dig - (__cnt % __dig))); 363 rotl(_Tp __t, unsigned int __cnt) noexcept 365 return __rotl(__t, __cnt); 373 rotr(_Tp __t, unsigned int __cnt) noexcept 375 return __rotr(__t, __cnt);
|
/external/mesa3d/src/freedreno/ir3/ |
D | ir3.h | 1146 for (unsigned __cnt = (__instr)->regs_count - 1, __n = 0; __n < __cnt; __n++) \ 1184 for (unsigned __cnt = __ssa_src_cnt(__instr), __n = 0; __n < __cnt; __n++) \ 1201 #define foreach_input_n(__ininstr, __cnt, __ir) \ argument 1203 for (unsigned __cnt = 0; __cnt < (__ir)->inputs_count; __cnt++) \ 1204 if ((__ininstr = (__ir)->inputs[__cnt])) 1209 #define foreach_output_n(__outinstr, __cnt, __ir) \ argument 1211 for (unsigned __cnt = 0; __cnt < (__ir)->outputs_count; __cnt++) \ 1212 if ((__outinstr = (__ir)->outputs[__cnt]))
|
D | ir3_ra.h | 257 for (unsigned __cnt = __ra_name_cnt(__ctx, __instr), __n = 0, __name; \ 258 (__n < __cnt) && ({__name = scalar_name(__ctx, __instr, __n); 1;}); __n++)
|
/external/elfutils/libelf/ |
D | libelf.h | 276 extern Elf32_Phdr *elf32_newphdr (Elf *__elf, size_t __cnt); 278 extern Elf64_Phdr *elf64_newphdr (Elf *__elf, size_t __cnt);
|
D | libelfP.h | 496 extern Elf32_Phdr *__elf32_newphdr_internal (Elf *__elf, size_t __cnt) 498 extern Elf64_Phdr *__elf64_newphdr_internal (Elf *__elf, size_t __cnt)
|