HomeSort by relevance Sort by last modified time
    Searched refs:uf (Results 1 - 25 of 35) sorted by null

1 2

  /external/libcxx/test/std/utilities/function.objects/func.require/
unary_function.pass.cpp 19 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), "");
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.require/
unary_function.pass.cpp 19 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), "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/function.objects/func.require/
unary_function.pass.cpp 19 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/harfbuzz_ng/test/api/
test-unicode.c 482 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)
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 = hb_unicode_funcs_create (NULL) 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/mesa3d/src/mesa/drivers/dri/i965/
brw_urb.c 228 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.header.sf_realloc = 1
    [all...]
  /external/zlib/src/contrib/minizip/
miniunz.c 234 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,buf,size_buf)
550 unzFile uf=NULL; local
    [all...]
  /external/tcpdump/
print-ntp.c 346 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 > ouf)
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_flags.cc 85 __ubsan::Flags *uf = __ubsan::flags(); local
86 uf->SetDefaults();
89 __ubsan::RegisterUbsanFlags(&ubsan_parser, uf);
  /external/compiler-rt/lib/asan/
asan_flags.cc 90 __ubsan::Flags *uf = __ubsan::flags(); local
91 uf->SetDefaults();
94 __ubsan::RegisterUbsanFlags(&ubsan_parser, uf);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
URLTest.java 286 URL uf = new URL("file://www.yahoo.com"); local
295 URL u1f = new URL(uf, "file.java");
328 uf = new URL("file://www.apache.org/testing/");
329 u1f = new URL(uf, "file.java");
337 uf = new URL("file:/testing/");
338 u1f = new URL(uf, "file.java");
346 uf = new URL("file:testing/");
347 u1f = new URL(uf, "file.java");
355 u1f = new URL(uf, "file:file.java");
362 u1f = new URL(uf, "file:")
    [all...]
  /prebuilts/go/darwin-x86/misc/linkcheck/
linkcheck.go 89 uf := urlFrag{url, frag}
90 neededFrags[uf] = append(neededFrags[uf], sourceURL)
181 for uf, needers := range neededFrags {
182 if !fragExists[uf] {
183 problems = append(problems, fmt.Sprintf("Missing fragment for %+v from %v", uf, needers))
  /prebuilts/go/linux-x86/misc/linkcheck/
linkcheck.go 89 uf := urlFrag{url, frag}
90 neededFrags[uf] = append(neededFrags[uf], sourceURL)
181 for uf, needers := range neededFrags {
182 if !fragExists[uf] {
183 problems = append(problems, fmt.Sprintf("Missing fragment for %+v from %v", uf, needers))
  /external/v8/tools/profviz/
gnuplot-4.6.3-emscripten.js     [all...]
  /external/libgsm/src/
short_term.c 238 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];
  /packages/apps/Messaging/build/
gcheckstyle.mk 28 # The config file has to be packaged into the jar, and jar uf command expects the current working directory
33 jar uf google-style-checker_deploy.jar tools/java/checkstyle/googlestyle-5.0.xml && \
  /prebuilts/tools/common/proguard/proguard4.7/build/
build.sh 60 jar -uf "$PROGUARD_JAR" -C "$CLASSES" $(dirname $1)
makefile 34 jar -uf $(LIB)/proguard.jar \
  /external/compiler-rt/lib/cfi/
cfi.cc 328 __ubsan::Flags *uf = __ubsan::flags(); local
329 uf->SetDefaults();
338 __ubsan::RegisterUbsanFlags(&ubsan_parser, uf);
  /external/proguard/build/
build.sh 68 jar -uf "$PROGUARD_JAR" -C "$CLASSES" $(dirname $1)
makefile 43 jar -uf $(LIB)/proguard.jar \
  /external/fio/
parse.c 457 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);
  /libcore/luni/src/test/java/libcore/java/io/
SerializationTest.java 129 HasUnserializableField uf = new HasUnserializableField(); local
131 SerializationTester.serializeHex(uf);
  /external/lzma/CPP/7zip/Archive/7z/
7zUpdate.cpp 1168 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;
    [all...]
  /external/compiler-rt/lib/msan/
msan.cc 158 __ubsan::Flags *uf = __ubsan::flags(); local
159 uf->SetDefaults();
162 __ubsan::RegisterUbsanFlags(&ubsan_parser, uf);
  /frameworks/base/services/core/java/com/android/server/fingerprint/
FingerprintService.java 320 UserFingerprint uf = mUnknownFingerprints.get(0); local
321 mUnknownFingerprints.remove(uf);
323 updateActiveGroup(uf.userId, null);
324 startRemove(mToken, uf.f.getFingerId(), uf.f.getGroupId(), uf.userId, null,
    [all...]

Completed in 1131 milliseconds

1 2