Lines Matching refs:happy
41 * Create a device /dev/happy from which you can read sequential
42 * happy numbers.
45 * mknod /dev/happy c 351 0
48 * A happy number is a number defined by the following process: Starting with
52 * numbers for which this process ends in 1 are happy numbers, while those that
55 * For more information on happy numbers, and the algorithms, see
58 * The happy number generator is here only to have something that the user
92 /* Function that calls a Lua routine and returns whether a number is happy */
160 /* Get next happy number */
185 MODULE(MODULE_CLASS_MISC, happy, "lua");
196 if (devsw_attach("happy", NULL, &bmajor, &happy_cdevsw,
199 if ((sc.kL = kluaL_newstate("happy",
200 "Example Happy Number calculator",