HomeSort by relevance Sort by last modified time
    Searched full:hints (Results 226 - 250 of 862) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/freetype/src/cff/
cf2glue.h 55 /* apply hints to rendered glyphs */
cf2blues.c 148 * Construct hint edges suitable for synthetic ghost hints at top
153 * Note: Adjust synthetic hints outward by epsilon (0x.0001) to
154 * avoid interference. E.g., some fonts have real hints at
  /external/grub/netboot/
sis900.txt 78 documentation for some hints. See the skel.c file for a starting
  /external/mesa3d/src/gallium/targets/graw-xlib/
graw_xlib.c 118 /* set hints and properties */
  /external/openssl/crypto/jpake/
jpake.h 5 * With hints from http://www.cl.cam.ac.uk/~fh240/software/JPAKE2.java.
  /external/oprofile/pp/
opreport.cpp 396 out->vma_format_64bit(choice.hints & cf_64bit_vma);
399 format_flags flags = get_format_flags(choice.hints);
425 format_flags flags = get_format_flags(choice.hints);
438 out.vma_format_64bit(choice.hints & cf_64bit_vma);
  /external/proguard/src/proguard/gui/splash/
OverrideGraphics2D.java 234 public void addRenderingHints(Map hints)
236 graphics.addRenderingHints(hints);
564 public void setRenderingHints(Map hints)
566 graphics.setRenderingHints(hints);
  /external/tremolo/Tremolo/
ivorbiscodec.h 56 /* The below bitrate declarations are *hints*.
  /system/core/sh/bltin/
echo.1 95 .Sh HINTS
  /external/chromium_org/third_party/cld/encodings/compact_lang_det/
compact_lang_det.h 126 // Same as above, with hints supplied
160 // Same as above, with hints supplied
  /external/llvm/lib/CodeGen/
CalcSpillWeights.cpp 84 // Only allow physreg hints in rc.
162 // Get allocation hints from copies.
  /external/mtpd/
mtpd.c 263 struct addrinfo hints = { local
274 error = getaddrinfo(server, port, &hints, &records);
  /external/oprofile/libpp/
profile_container.cpp 185 choice.hints = it->output_hint(choice.hints);
  /external/valgrind/main/none/tests/
cmdline1.stdout.exp 76 --sim-hints=hint1,hint2,... known hints:
  /frameworks/native/opengl/tests/hwc/
hwcTestLib.cpp 440 testPrintI(" hints: %#x",
441 list->hwLayers[layer].hints,
442 (list->hwLayers[layer].hints & HWC_HINT_TRIPLE_BUFFER)
444 (list->hwLayers[layer].hints & HWC_HINT_CLEAR_FB)
510 testPrintI(" hints: %#x%s%s",
511 list->hwLayers[layer].hints,
512 (list->hwLayers[layer].hints & HWC_HINT_TRIPLE_BUFFER)
514 (list->hwLayers[layer].hints & HWC_HINT_CLEAR_FB)
    [all...]
  /libcore/luni/src/main/java/java/net/
InetAddress.java 265 StructAddrinfo hints = new StructAddrinfo(); local
266 hints.ai_flags = AI_NUMERICHOST;
269 addresses = Libcore.os.getaddrinfo(address, hints);
398 StructAddrinfo hints = new StructAddrinfo(); local
399 hints.ai_flags = AI_ADDRCONFIG;
400 hints.ai_family = AF_UNSPEC;
404 hints.ai_socktype = SOCK_STREAM;
405 InetAddress[] addresses = Libcore.os.getaddrinfo(host, hints);
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/apps/
native_app_window_gtk.cc 696 GdkGeometry hints; local
700 hints.min_height = min_size.height();
701 hints.min_width = min_size.width();
707 hints.max_height = max_size.height() == kUnboundedSize ?
709 hints.max_width = max_size.width() == kUnboundedSize ?
717 &hints,
  /external/mdnsresponder/mDNSPosix/
mDNSUNP.c 91 struct addrinfo hints, *res0; local
136 memset(&hints, 0, sizeof(hints));
137 hints.ai_family = AF_INET6;
138 hints.ai_flags = AI_NUMERICHOST;
139 err = getaddrinfo(addr6, NULL, &hints, &res0);
  /external/openssh/
ssh-keyscan.c 291 struct addrinfo hints, *ai, *aitop; local
296 memset(&hints, 0, sizeof(hints));
297 hints.ai_family = IPv4or6;
298 hints.ai_socktype = SOCK_STREAM;
299 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0)
  /external/ipsec-tools/src/racoon/
sockmisc.c 982 struct addrinfo hints, *res; local
986 memset(&hints, 0, sizeof(hints));
987 hints.ai_family = PF_UNSPEC;
988 hints.ai_socktype = SOCK_DGRAM;
989 hints.ai_flags = AI_NUMERICHOST;
990 error = getaddrinfo(host, port, &hints, &res);
  /external/qemu/
sockets.c 632 struct addrinfo hints[1]; local
636 memset(hints, 0, sizeof(hints));
637 hints->ai_family = preferIn6 ? AF_INET6 : AF_UNSPEC;
639 ret = getaddrinfo(hostname, NULL, hints, &res);
758 struct addrinfo hints = ai; local
760 ret = getaddrinfo(hostname, port, &hints, &res);
    [all...]
  /sdk/emulator/opengl/tests/event_injector/
sockets.c 637 struct addrinfo hints[1]; local
641 memset(hints, 0, sizeof(hints));
642 hints->ai_family = preferIn6 ? AF_INET6 : AF_UNSPEC;
644 ret = getaddrinfo(hostname, NULL, hints, &res);
762 struct addrinfo hints = ai; local
764 ret = getaddrinfo(hostname, port, &hints, &res);
    [all...]
  /external/llvm/lib/Support/
SourceMgr.cpp 244 ArrayRef<SMFixIt> Hints)
247 FixIts(Hints.begin(), Hints.end()) {
284 // completion. This is sort of the best we can do when two hints appear
299 // This relies on one byte per column in our fixit hints.
  /hardware/libhardware/include/hardware/
hwcomposer.h 128 * hints is bit mask set by the HWC implementation during (*prepare)().
132 * see hwc_layer_t::hints
134 uint32_t hints; member in struct:hwc_layer_1
454 * compositionType and hints are preserved between (*prepare)() calles
461 * compositionType and hints are reset to their default value.
  /external/chromium_org/third_party/freetype/src/cff/
cf2blues.c 148 * Construct hint edges suitable for synthetic ghost hints at top
153 * Note: Adjust synthetic hints outward by epsilon (0x.0001) to
154 * avoid interference. E.g., some fonts have real hints at

Completed in 3586 milliseconds

1 2 3 4 5 6 7 8 91011>>