Searched refs:a (Results 1 – 6 of 6) sorted by relevance
29 timespec_add (struct timespec a, struct timespec b) in timespec_add() argument31 time_t rs = a.tv_sec; in timespec_add()33 int ns = a.tv_nsec + b.tv_nsec; in timespec_add()
30 timespec_sub (struct timespec a, struct timespec b) in timespec_sub() argument32 time_t rs = a.tv_sec; in timespec_sub()34 int ns = a.tv_nsec - b.tv_nsec; in timespec_sub()
23 The test framework provides a main program for tests, including a24 timeout for hanging tests. See README-testing.c for a minimal
255 is_env_setting (const char *a) in is_env_setting() argument259 while (*a) in is_env_setting()261 if (isalnum (*a) || *a == '_') in is_env_setting()263 else if (*a == '=' && count_name > 0) in is_env_setting()267 ++a; in is_env_setting()447 if (S_ISLNK (a->st_mode)) in need_sync()452 if (a->st_size != b->st_size) in need_sync()467 if (a->st_size != b->st_size) in need_sync()471 if (a->st_mtime != b->st_mtime) in need_sync()475 if (a->st_size == b->st_size in need_sync()[all …]
374 int a = args[ap][1] - '1'; in run_command_string() local375 if (0 <= a && a < nargs) in run_command_string()376 args[ap] = strdup (iargs[a]); in run_command_string()
61 unsigned a = in->data[0]; in extract_32() local65 *value = (a << 24) | (b << 16) | (c << 8) | d; in extract_32()
Completed in 12 milliseconds