Searched refs:testprop (Results 1 – 3 of 3) sorted by relevance
| /src/contrib/lua/src/ |
| H A D | lctype.h | 52 #define testprop(c,p) (luai_ctype_[(c)+1] & (p)) macro 57 #define lislalpha(c) testprop(c, MASK(ALPHABIT)) 58 #define lislalnum(c) testprop(c, (MASK(ALPHABIT) | MASK(DIGITBIT))) 59 #define lisdigit(c) testprop(c, MASK(DIGITBIT)) 60 #define lisspace(c) testprop(c, MASK(SPACEBIT)) 61 #define lisprint(c) testprop(c, MASK(PRINTBIT)) 62 #define lisxdigit(c) testprop(c, MASK(XDIGITBIT))
|
| /src/sys/contrib/openzfs/module/lua/ |
| H A D | lctype.h | 51 #define testprop(c,p) (luai_ctype_[(lu_byte)(c)+1] & (p)) macro 56 #define lislalpha(c) testprop(c, MASK(ALPHABIT)) 57 #define lislalnum(c) testprop(c, (MASK(ALPHABIT) | MASK(DIGITBIT))) 58 #define lisdigit(c) testprop(c, MASK(DIGITBIT)) 59 #define lisspace(c) testprop(c, MASK(SPACEBIT)) 60 #define lisprint(c) testprop(c, MASK(PRINTBIT)) 61 #define lisxdigit(c) testprop(c, MASK(XDIGITBIT))
|
| /src/sys/contrib/openzfs/tests/zfs-tests/tests/functional/channel_program/synctask_core/ |
| H A D | tst.inherit.ksh | 23 testprop="com.joyent:testprop" 26 log_must dataset_setprop $fs $testprop $testval 27 log_must_program_sync $TESTPOOL - $fs $testprop <<-EOF 37 prop=$(get_prop $testprop $fs)
|