Searched defs:uf (Results 1 - 12 of 12) sorted by relevance

/external/libcxx/test/std/utilities/function.objects/func.require/
H A Dunary_function.pass.cpp19 typedef std::unary_function<int, bool> uf; typedef
20 static_assert((std::is_same<uf::argument_type, int>::value), "");
21 static_assert((std::is_same<uf::result_type, bool>::value), "");
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_flags.cc85 __ubsan::Flags *uf = __ubsan::flags(); local
86 uf->SetDefaults();
89 __ubsan::RegisterUbsanFlags(&ubsan_parser, uf);
/external/compiler-rt/lib/asan/
H A Dasan_flags.cc90 __ubsan::Flags *uf = __ubsan::flags(); local
91 uf->SetDefaults();
94 __ubsan::RegisterUbsanFlags(&ubsan_parser, uf);
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_urb.c228 struct brw_urb_fence uf; local
229 memset(&uf, 0, sizeof(uf));
231 uf.header.opcode = CMD_URB_FENCE;
232 uf.header.length = sizeof(uf)/4-2;
233 uf.header.vs_realloc = 1;
234 uf.header.gs_realloc = 1;
235 uf.header.clp_realloc = 1;
236 uf
[all...]
/external/libgsm/src/
H A Dshort_term.c238 float uf[8], local
245 uf[i] = u[i];
252 register float ufi = uf[i];
254 uf[i] = sav;
261 for (i = 0; i < 8; ++i) u[i] = uf[i];
/external/tcpdump/
H A Dprint-ntp.c346 register uint32_t uf; local
351 uf = EXTRACT_32BITS(&lfp->fraction);
352 ff = uf;
382 register uint32_t u, uf; local
390 uf = EXTRACT_32BITS(&lfp->fraction);
401 f = uf - ouf;
402 if (ouf > uf) /* must borrow from high-order bits */
406 f = ouf - uf;
407 if (uf > ouf) /* must carry into the high-order bits */
411 if (uf > ou
[all...]
/external/zlib/src/contrib/minizip/
H A Dminiunz.c234 int do_list(uf)
235 unzFile uf;
241 err = unzGetGlobalInfo64(uf,&gi);
253 err = unzGetCurrentFileInfo64(uf,&file_info,filename_inzip,sizeof(filename_inzip),NULL,0,NULL,0);
299 err = unzGoToNextFile(uf);
312 int do_extract_currentfile(uf,popt_extract_without_path,popt_overwrite,password)
313 unzFile uf;
328 err = unzGetCurrentFileInfo64(uf,&file_info,filename_inzip,sizeof(filename_inzip),NULL,0,NULL,0);
370 err = unzOpenCurrentFilePassword(uf,password);
435 err = unzReadCurrentFile(uf,bu
550 unzFile uf=NULL; local
[all...]
/external/compiler-rt/lib/cfi/
H A Dcfi.cc328 __ubsan::Flags *uf = __ubsan::flags(); local
329 uf->SetDefaults();
338 __ubsan::RegisterUbsanFlags(&ubsan_parser, uf);
/external/harfbuzz_ng/test/api/
H A Dtest-unicode.c482 hb_unicode_funcs_t *uf = (hb_unicode_funcs_t *) user_data; local
486 g_assert (hb_unicode_funcs_is_immutable (uf));
487 g_assert (hb_unicode_funcs_get_parent (uf));
497 g_assert_cmphex (p->getter (uf, tests[j].unicode), ==, tests[j].value);
504 if (p->getter (uf, tests[j].unicode) != tests[j].value) {
505 g_test_message ("Soft fail: Received %x, expected %x", p->getter (uf, tests[j].unicode), tests[j].value);
522 _test_unicode_properties_nil (hb_unicode_funcs_t *uf) argument
534 g_assert_cmphex (p->getter (uf, tests[j].unicode), ==, default_value (p->default_value, tests[j].unicode));
539 g_assert_cmphex (p->getter (uf, tests[j].unicode), ==, default_value (p->default_value, tests[j].unicode));
547 hb_unicode_funcs_t *uf local
558 hb_unicode_funcs_t *uf = hb_unicode_funcs_get_empty (); local
569 hb_unicode_funcs_t *uf, *uf2; local
605 hb_unicode_funcs_t *uf; local
661 hb_unicode_funcs_t *uf, *aa; local
683 hb_unicode_funcs_t *uf, *aa; local
702 hb_unicode_funcs_t *uf, *aa; local
787 hb_unicode_funcs_t *uf = (hb_unicode_funcs_t *) user_data; local
[all...]
/external/compiler-rt/lib/msan/
H A Dmsan.cc158 __ubsan::Flags *uf = __ubsan::flags(); local
159 uf->SetDefaults();
162 __ubsan::RegisterUbsanFlags(&ubsan_parser, uf);
/external/fio/
H A Dparse.c457 double uf; local
613 if (!str_to_float(ptr, &uf, 0)) { /* this breaks if we ever have lists of times */
617 if (uf > o->maxfp) {
619 " (range max: %f)\n", uf, o->maxfp);
622 if (uf < o->minfp) {
624 " (range min: %f)\n", uf, o->minfp);
629 flp[curr].u.f = uf;
631 dprint(FD_PARSE, " out=%f\n", uf);
/external/lzma/CPP/7zip/Archive/7z/
H A D7zUpdate.cpp1168 CFileItem uf; local
1169 FromUpdateItemToFileItem(ui, uf, file2);
1170 uf.Size = file.Size;
1171 uf.Crc = file.Crc;
1172 uf.CrcDefined = file.CrcDefined;
1173 uf.HasStream = file.HasStream;
1174 file = uf;

Completed in 2816 milliseconds