HomeSort by relevance Sort by last modified time
    Searched refs:setsize (Results 1 - 8 of 8) sorted by null

  /bionic/libc/bionic/
sched_cpucount.c 31 int __sched_cpucount(size_t setsize, const cpu_set_t* set) {
33 int nn_max = setsize / sizeof(__CPU_BITTYPE);
  /bionic/libc/include/
sched.h 104 #define CPU_ZERO_S(setsize, set) __builtin_memset(set, 0, setsize)
106 #define CPU_SET_S(cpu, setsize, set) \
109 if (__cpu < 8 * (setsize)) \
113 #define CPU_CLR_S(cpu, setsize, set) \
116 if (__cpu < 8 * (setsize)) \
120 #define CPU_ISSET_S(cpu, setsize, set) \
123 (__cpu < 8 * (setsize)) \
128 #define CPU_EQUAL_S(setsize, set1, set2) (__builtin_memcmp(set1, set2, setsize) == 0
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
random.py 327 setsize = 21 # size of a small set minus size of an empty list
329 setsize += 4 ** _ceil(_log(k * 3, 4)) # table size for big sets
330 if n <= setsize or hasattr(population, "keys"):
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
random.py 324 setsize = 21 # size of a small set minus size of an empty list
326 setsize += 4 ** _ceil(_log(k * 3, 4)) # table size for big sets
327 if n <= setsize or hasattr(population, "keys"):
    [all...]
  /external/python/cpython2/Lib/
random.py 329 setsize = 21 # size of a small set minus size of an empty list
331 setsize += 4 ** _ceil(_log(k * 3, 4)) # table size for big sets
332 if n <= setsize or hasattr(population, "keys"):
  /external/python/cpython3/Lib/
random.py 323 setsize = 21 # size of a small set minus size of an empty list
325 setsize += 4 ** _ceil(_log(k * 3, 4)) # table size for big sets
326 if n <= setsize:
  /external/python/cpython2/Modules/
almodule.c 1609 int setsize = 32, qualsize = 0, nvals, i; local
    [all...]
  /external/python/cpython3/Modules/
posixmodule.c 5748 size_t setsize; local
5844 size_t setsize; local
    [all...]

Completed in 632 milliseconds