/third_party/skia/third_party/externals/tint/src/reader/wgsl/ |
H A D | parser_impl_for_stmt_test.cc | 29 auto fl = p->for_stmt(); in TEST_F() local 31 EXPECT_FALSE(fl.errored); in TEST_F() 32 ASSERT_TRUE(fl.matched); in TEST_F() 33 EXPECT_EQ(fl->initializer, nullptr); in TEST_F() 34 EXPECT_EQ(fl->condition, nullptr); in TEST_F() 35 EXPECT_EQ(fl->continuing, nullptr); in TEST_F() 36 EXPECT_TRUE(fl->body->Empty()); in TEST_F() 42 auto fl = p->for_stmt(); in TEST_F() local 44 EXPECT_FALSE(fl.errored); in TEST_F() 45 ASSERT_TRUE(fl in TEST_F() 56 auto fl = p->for_stmt(); TEST_F() local 73 auto fl = p->for_stmt(); TEST_F() local 89 auto fl = p->for_stmt(); TEST_F() local 105 auto fl = p->for_stmt(); TEST_F() local 118 auto fl = p->for_stmt(); TEST_F() local 131 auto fl = p->for_stmt(); TEST_F() local 144 auto fl = p->for_stmt(); TEST_F() local 157 auto fl = p->for_stmt(); TEST_F() local [all...] |
/third_party/ffmpeg/libavfilter/x86/ |
H A D | vf_removegrain_init.c | 59 case 1: rg->fl[i] = ff_rg_fl_mode_1_sse2; break; in ff_removegrain_init_x86() 60 case 10: rg->fl[i] = ff_rg_fl_mode_10_sse2; break; in ff_removegrain_init_x86() 62 case 12: rg->fl[i] = ff_rg_fl_mode_11_12_sse2; break; in ff_removegrain_init_x86() 64 case 14: rg->fl[i] = ff_rg_fl_mode_13_14_sse2; break; in ff_removegrain_init_x86() 65 case 19: rg->fl[i] = ff_rg_fl_mode_19_sse2; break; in ff_removegrain_init_x86() 66 case 20: rg->fl[i] = ff_rg_fl_mode_20_sse2; break; in ff_removegrain_init_x86() 67 case 21: rg->fl[i] = ff_rg_fl_mode_21_sse2; break; in ff_removegrain_init_x86() 68 case 22: rg->fl[i] = ff_rg_fl_mode_22_sse2; break; in ff_removegrain_init_x86() 70 case 2: rg->fl[i] = ff_rg_fl_mode_2_sse2; break; in ff_removegrain_init_x86() 71 case 3: rg->fl[ in ff_removegrain_init_x86() [all...] |
/third_party/selinux/libselinux/src/ |
H A D | matchpathcon.c | 199 file_spec_t *prevfl, *fl; in matchpathcon_filespec_add() local 211 for (prevfl = &fl_head[h], fl = fl_head[h].next; fl; in matchpathcon_filespec_add() 212 prevfl = fl, fl = fl->next) { in matchpathcon_filespec_add() 213 if (ino == fl->ino) { in matchpathcon_filespec_add() 214 ret = lstat(fl->file, &sb); in matchpathcon_filespec_add() 216 fl->specind = specind; in matchpathcon_filespec_add() 217 free(fl in matchpathcon_filespec_add() 268 file_spec_t *fl; matchpathcon_filespec_eval() local 299 file_spec_t *fl, *tmp; matchpathcon_filespec_destroy() local [all...] |
H A D | selinux_restorecon.c | 440 file_spec_t *prevfl, *fl; in filespec_add() local 454 for (prevfl = &fl_head[h], fl = fl_head[h].next; fl; in filespec_add() 455 prevfl = fl, fl = fl->next) { in filespec_add() 456 if (ino == fl->ino) { in filespec_add() 457 ret = lstat64(fl->file, &sb); in filespec_add() 459 freecon(fl->con); in filespec_add() 460 free(fl in filespec_add() 530 file_spec_t *fl; filespec_eval() local 566 file_spec_t *fl, *tmp; filespec_destroy() local [all...] |
/third_party/musl/src/internal/ |
H A D | stdio_impl.h | 26 #define FILE_LIST_NEXT(fl) (fl->next) 32 #define FILE_LIST_CHECK_NEXT(fl) do { \ 33 if (FILE_LIST_NEXT(fl) != NULL && FILE_LIST_NEXT(fl)->prev != &fl->next) { \ 38 #define FILE_LIST_CHECK_PREV(fl) do { \ 39 if (*fl->prev != fl) { \ 52 #define FILE_LIST_INSERT_HEAD(head, fl) d [all...] |
/third_party/musl/porting/linux/user/src/internal/ |
H A D | stdio_impl.h | 26 #define FILE_LIST_NEXT(fl) ((fl)->next) 32 #define FILE_LIST_CHECK_NEXT(fl) do { \ 33 if (FILE_LIST_NEXT(fl) != NULL && FILE_LIST_NEXT(fl)->prev != &(fl)->next) { \ 38 #define FILE_LIST_CHECK_PREV(fl) do { \ 39 if (*(fl)->prev != (fl)) { \ 52 #define FILE_LIST_INSERT_HEAD(head, fl) d [all...] |
/third_party/ltp/tools/sparse/sparse-src/validation/backend/ |
H A D | function-ptr.c | 8 void arg(int a, int *p, int (*fb)(unsigned char), int (*fi)(int), int (*fl)(long), int (*fv)(void), int (*fip)(int *), int (*fim)(int (*)[3]), int (*fvp)(void *), int (*ffp)(int (*)(int))); 9 void arg(int a, int *p, int (*fb)(unsigned char), int (*fi)(int), int (*fl)(long), int (*fv)(void), int (*fip)(int *), int (*fim)(int (*)[3]), int (*fvp)(void *), int (*ffp)(int (*)(int))) in arg() argument 15 fl(a); in arg() 18 fl(123); in arg() 21 fl(123L); in arg() 24 fl(ival); in arg() 49 extern int (*fl)(long); 63 fl(a); in glb() 66 fl(123); in glb() 69 fl(12 in glb() 99 int (*fl)(long); global() member [all...] |
/third_party/mesa3d/src/util/ |
H A D | sparse_array.c | 218 util_sparse_array_free_list_init(struct util_sparse_array_free_list *fl, in util_sparse_array_free_list_init() argument 223 fl->head = sentinel; in util_sparse_array_free_list_init() 224 fl->arr = arr; in util_sparse_array_free_list_init() 225 fl->sentinel = sentinel; in util_sparse_array_free_list_init() 226 fl->next_offset = next_offset; in util_sparse_array_free_list_init() 236 util_sparse_array_free_list_push(struct util_sparse_array_free_list *fl, in util_sparse_array_free_list_push() argument 240 assert(items[0] != fl->sentinel); in util_sparse_array_free_list_push() 241 void *last_elem = util_sparse_array_get(fl->arr, items[0]); in util_sparse_array_free_list_push() 242 uint32_t *last_next = (uint32_t *)((char *)last_elem + fl->next_offset); in util_sparse_array_free_list_push() 245 assert(items[i] != fl in util_sparse_array_free_list_push() 261 util_sparse_array_free_list_pop_idx(struct util_sparse_array_free_list *fl) util_sparse_array_free_list_pop_idx() argument 282 util_sparse_array_free_list_pop_elem(struct util_sparse_array_free_list *fl) util_sparse_array_free_list_pop_elem() argument [all...] |
/third_party/ltp/testcases/kernel/syscalls/fcntl/ |
H A D | fcntl21.c | 134 struct flock fl; in do_child() local 139 child_get(&fl); in do_child() 140 if (fcntl(fd, F_GETLK, &fl) < 0) { in do_child() 145 child_put(&fl); in do_child() 151 struct flock fl; in do_lock() local 153 fl.l_type = type; in do_lock() 154 fl.l_whence = whence; in do_lock() 155 fl.l_start = start; in do_lock() 156 fl.l_len = len; in do_lock() 157 return (fcntl(fd, cmd, &fl)); in do_lock() 160 do_test(struct flock *fl, short type, short whence, int start, int len) do_test() argument 173 compare_lock(struct flock *fl, short type, short whence, int start, int len, pid_t pid) compare_lock() argument 210 struct flock fl; unlock_file() local 273 struct flock fl; stop_child() local [all...] |
H A D | fcntl20.c | 127 struct flock fl; in do_child() local 132 child_get(&fl); in do_child() 133 if (fcntl(fd, F_GETLK, &fl) < 0) { in do_child() 137 child_put(&fl); in do_child() 143 struct flock fl; in do_lock() local 145 fl.l_type = type; in do_lock() 146 fl.l_whence = whence; in do_lock() 147 fl.l_start = start; in do_lock() 148 fl.l_len = len; in do_lock() 149 return (fcntl(fd, cmd, &fl)); in do_lock() 152 do_test(struct flock *fl, short type, short whence, int start, int len) do_test() argument 165 compare_lock(struct flock *fl, short type, short whence, int start, int len, pid_t pid) compare_lock() argument 202 struct flock fl; unlock_file() local 265 struct flock fl; stop_child() local [all...] |
H A D | fcntl19.c | 130 struct flock fl; in do_child() local 135 child_get(&fl); in do_child() 136 if (fcntl(fd, F_GETLK, &fl) < 0) in do_child() 138 child_put(&fl); in do_child() 144 struct flock fl; in do_lock() local 146 fl.l_type = type; in do_lock() 147 fl.l_whence = whence; in do_lock() 148 fl.l_start = start; in do_lock() 149 fl.l_len = len; in do_lock() 150 return (fcntl(fd, cmd, &fl)); in do_lock() 153 do_test(struct flock *fl, short type, short whence, int start, int len) do_test() argument 166 compare_lock(struct flock *fl, short type, short whence, int start, int len, pid_t pid) compare_lock() argument 203 struct flock fl; unlock_file() local 266 struct flock fl; stop_child() local [all...] |
H A D | fcntl11.c | 116 struct flock fl; in do_child() local 121 child_get(&fl); in do_child() 122 if (fcntl(fd, F_GETLK, &fl) < 0) in do_child() 124 child_put(&fl); in do_child() 130 struct flock fl; in do_lock() local 132 fl.l_type = type; in do_lock() 133 fl.l_whence = whence; in do_lock() 134 fl.l_start = start; in do_lock() 135 fl.l_len = len; in do_lock() 136 return (fcntl(fd, cmd, &fl)); in do_lock() 139 do_test(struct flock *fl, short type, short whence, int start, int len) do_test() argument 152 compare_lock(struct flock *fl, short type, short whence, int start, int len, pid_t pid) compare_lock() argument 179 struct flock fl; unlock_file() local 228 struct flock fl; stop_child() local [all...] |
H A D | fcntl22.c | 44 struct flock fl; variable 66 TEST(fcntl(file, F_SETLK, &fl)); in main() 113 fl.l_type = F_WRLCK; in setup() 114 fl.l_whence = 0; in setup() 115 fl.l_start = 0; in setup() 116 fl.l_len = 0; in setup() 118 if (fcntl(file, F_SETLK, &fl) < 0) in setup()
|
H A D | fcntl17.c | 287 struct flock fl; in do_test() local 289 fl.l_type = /* lock->l_type */ F_RDLCK; in do_test() 290 fl.l_whence = lock->l_whence; in do_test() 291 fl.l_start = lock->l_start; in do_test() 292 fl.l_len = lock->l_len; in do_test() 293 fl.l_pid = (short)0; in do_test() 294 if (fcntl(file_fd, F_GETLK, &fl) < 0) { in do_test() 299 if (fl.l_type != lock->l_type) { in do_test() 301 str_type(lock->l_type), str_type(fl.l_type)); in do_test() 305 if (fl in do_test() [all...] |
/third_party/musl/libc-test/src/functional/ |
H A D | fcntl.c | 14 struct flock fl = {0}; in main() local 23 fl.l_type = F_WRLCK; in main() 24 fl.l_whence = SEEK_SET; in main() 25 fl.l_start = 0; in main() 26 fl.l_len = 0; in main() 27 TESTE(fcntl(fd, F_SETLK, &fl)==0); in main() 31 fl.l_type = F_RDLCK; in main() 32 _exit(fcntl(fd, F_SETLK, &fl)==0 || in main() 40 fl.l_type = F_WRLCK; in main() 41 _exit(fcntl(fd, F_GETLK, &fl) || f in main() [all...] |
/third_party/python/Lib/turtledemo/ |
H A D | penrose.py | 26 fl = f * l 30 fd(fl) 32 fd(fl) 38 fl = f * l 42 fd(fl) 44 fd(fl) 55 fl = f * l 57 inflatedart(fl, n-1) 60 inflatekite(fl, n-1) 64 inflatekite(fl, [all...] |
/third_party/musl/src/stdio/ |
H A D | vfprintf.c | 147 static void pad(FILE *f, char c, int w, int l, int fl) in pad() argument 150 if (fl & (LEFT_ADJ | ZERO_PAD) || l >= w) return; in pad() 189 static int fmt_fp(FILE *f, long double y, int w, int p, int fl, int t) in fmt_fp() argument 203 } else if (fl & MARK_POS) { in fmt_fp() 205 } else if (fl & PAD_POS) { in fmt_fp() 212 pad(f, ' ', w, 3+pl, fl&~ZERO_PAD); in fmt_fp() 215 pad(f, ' ', w, 3+pl, fl^LEFT_ADJ); in fmt_fp() 256 if (s-buf==1 && (y||p>0||(fl&ALT_FORM))) *s++='.'; in fmt_fp() 266 pad(f, ' ', w, pl+l, fl); in fmt_fp() 268 pad(f, '0', w, pl+l, fl in fmt_fp() 442 unsigned l10n=0, fl; printf_core() local [all...] |
H A D | vfwprintf.c | 131 static void pad(FILE *f, int n, int fl) in pad() argument 133 if ((fl & LEFT_ADJ) || !n || ferror(f)) return; in pad() 155 unsigned l10n=0, fl; in wprintf_core() local 195 for (fl=0; (unsigned)*s-' '<32 && (FLAGMASK&(1U<<*s-' ')); s++) in wprintf_core() 196 fl |= 1U<<*s-' '; in wprintf_core() 209 if (w<0) fl|=LEFT_ADJ, w=-w; in wprintf_core() 273 pad(f, w-1, fl); in wprintf_core() 275 pad(f, w-1, fl^LEFT_ADJ); in wprintf_core() 284 pad(f, w-p, fl); in wprintf_core() 286 pad(f, w-p, fl in wprintf_core() [all...] |
/third_party/musl/porting/liteos_a/kernel/src/stdio/ |
H A D | vfprintf.c | 143 static void pad(FILE *f, char c, int w, int l, int fl) in pad() argument 146 if (fl & (LEFT_ADJ | ZERO_PAD) || l >= w) return; in pad() 185 static int fmt_fp(FILE *f, long double y, int w, int p, int fl, int t) in fmt_fp() argument 199 } else if (fl & MARK_POS) { in fmt_fp() 201 } else if (fl & PAD_POS) { in fmt_fp() 208 pad(f, ' ', w, 3+pl, fl&~ZERO_PAD); in fmt_fp() 211 pad(f, ' ', w, 3+pl, fl^LEFT_ADJ); in fmt_fp() 252 if (s-buf==1 && (y||p>0||(fl&ALT_FORM))) *s++='.'; in fmt_fp() 262 pad(f, ' ', w, pl+l, fl); in fmt_fp() 264 pad(f, '0', w, pl+l, fl in fmt_fp() 438 unsigned l10n=0, fl; printf_core() local [all...] |
/third_party/musl/porting/linux/user/src/stdio/ |
H A D | vfprintf.c | 149 static void pad(FILE *f, char c, int w, int l, int fl) in pad() argument 152 if (fl & (LEFT_ADJ | ZERO_PAD) || l >= w) return; in pad() 191 static int fmt_fp(FILE *f, long double y, int w, int p, int fl, int t) in fmt_fp() argument 205 } else if (fl & MARK_POS) { in fmt_fp() 207 } else if (fl & PAD_POS) { in fmt_fp() 214 pad(f, ' ', w, 3+pl, fl&~ZERO_PAD); in fmt_fp() 217 pad(f, ' ', w, 3+pl, fl^LEFT_ADJ); in fmt_fp() 258 if (s-buf==1 && (y||p>0||(fl&ALT_FORM))) *s++='.'; in fmt_fp() 268 pad(f, ' ', w, pl+l, fl); in fmt_fp() 270 pad(f, '0', w, pl+l, fl in fmt_fp() 444 unsigned l10n=0, fl; printf_core() local [all...] |
/third_party/musl/porting/liteos_m/kernel/src/stdio/ |
H A D | vfprintf.c | 143 static void pad(FILE *f, char c, int w, int l, int fl) in pad() argument 146 if (fl & (LEFT_ADJ | ZERO_PAD) || l >= w) return; in pad() 185 static int fmt_fp(FILE *f, long double y, int w, int p, int fl, int t) in fmt_fp() argument 200 } else if (fl & MARK_POS) { in fmt_fp() 202 } else if (fl & PAD_POS) { in fmt_fp() 209 pad(f, ' ', w, 3+pl, fl&~ZERO_PAD); in fmt_fp() 212 pad(f, ' ', w, 3+pl, fl^LEFT_ADJ); in fmt_fp() 253 if (s-buf==1 && (y||p>0||(fl&ALT_FORM))) *s++='.'; in fmt_fp() 263 pad(f, ' ', w, pl+l, fl); in fmt_fp() 265 pad(f, '0', w, pl+l, fl in fmt_fp() 439 unsigned l10n=0, fl; printf_core() local [all...] |
/third_party/musl/porting/uniproton/kernel/src/stdio/ |
H A D | vfprintf.c | 143 static void pad(FILE *f, char c, int w, int l, int fl) in pad() argument 146 if (fl & (LEFT_ADJ | ZERO_PAD) || l >= w) return; in pad() 185 static int fmt_fp(FILE *f, long double y, int w, int p, int fl, int t) in fmt_fp() argument 200 } else if (fl & MARK_POS) { in fmt_fp() 202 } else if (fl & PAD_POS) { in fmt_fp() 209 pad(f, ' ', w, 3+pl, fl&~ZERO_PAD); in fmt_fp() 212 pad(f, ' ', w, 3+pl, fl^LEFT_ADJ); in fmt_fp() 253 if (s-buf==1 && (y||p>0||(fl&ALT_FORM))) *s++='.'; in fmt_fp() 263 pad(f, ' ', w, pl+l, fl); in fmt_fp() 265 pad(f, '0', w, pl+l, fl in fmt_fp() 439 unsigned l10n=0, fl; printf_core() local [all...] |
/third_party/ltp/testcases/kernel/syscalls/signalfd4/ |
H A D | signalfd4_02.c | 124 int fd, fl; in main() local 141 fl = fcntl(fd, F_GETFL); in main() 142 if (fl == -1) { in main() 145 if (fl & O_NONBLOCK) { in main() 159 fl = fcntl(fd, F_GETFL); in main() 160 if (fl == -1) { in main() 163 if ((fl & O_NONBLOCK) == 0) { in main()
|
/third_party/ltp/testcases/kernel/syscalls/timerfd/ |
H A D | timerfd03.c | 122 int fd, fl; in main() local 137 fl = fcntl(fd, F_GETFL); in main() 138 if (fl == -1) { in main() 141 if (fl & O_NONBLOCK) { in main() 155 fl = fcntl(fd, F_GETFL); in main() 156 if (fl == -1) { in main() 159 if ((fl & O_NONBLOCK) == 0) { in main()
|
/third_party/icu/icu4c/source/test/cintltst/ |
H A D | ulistfmttest.c | 141 UFormattedList* fl = ulistfmt_openResult(&ec); in TestUListFmtToValue() local 152 ulistfmt_formatStringsToResult(fmt, inputs, NULL, UPRV_LENGTHOF(inputs), fl, &ec); in TestUListFmtToValue() 166 ulistfmt_resultAsValue(fl, &ec), in TestUListFmtToValue() 183 ulistfmt_formatStringsToResult(fmt, inputs, NULL, UPRV_LENGTHOF(inputs), fl, &ec); in TestUListFmtToValue() 209 ulistfmt_resultAsValue(fl, &ec), in TestUListFmtToValue() 216 ulistfmt_closeResult(fl); in TestUListFmtToValue() 222 UFormattedList* fl = ulistfmt_openResult(&ec); in TestUListOpenStyled() local 233 ulistfmt_formatStringsToResult(fmt, inputs, NULL, UPRV_LENGTHOF(inputs), fl, &ec); in TestUListOpenStyled() 247 ulistfmt_resultAsValue(fl, &ec), in TestUListOpenStyled() 254 ulistfmt_closeResult(fl); in TestUListOpenStyled() 267 UFormattedList *fl = ulistfmt_openResult(&status); TestUList21871_A() local 315 UFormattedList *fl = ulistfmt_openResult(&status); TestUList21871_B() local [all...] |