/hardware/qcom/display/msm8226/libhwcomposer/ |
hwc_dump_layers.cpp | 253 "Orientation = %s, Flags = %s%s%s, Hints = %s%s%s, " 267 (layer->hints)? "":"[None]", 268 (layer->hints & HWC_HINT_TRIPLE_BUFFER)? "[Triple Buffer]":"", 269 (layer->hints & HWC_HINT_CLEAR_FB)? "[Clear FB]":"",
|
/external/chromium_org/third_party/hwcplus/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/webrtc/sound/ |
alsasoundsystem.cc | 539 void **hints; local 542 &hints); 548 for (void **list = hints; *list != NULL; ++list) { 592 err = symbol_table_.snd_device_name_free_hint()(hints);
|
/external/chromium_org/third_party/freetype/src/psaux/ |
t1decode.c | 423 /* begin hints recording session, if any */ 425 hinter->open( hinter->hints ); 792 case 3: /* change hints */ 799 hinter->reset( hinter->hints, builder->current->n_points ); 804 /* counter control hints, clear stack */ [all...] |
/external/freetype/src/autofit/ |
aftypes.h | 152 /* opaque handle to glyph-specific hints -- see `afhints.h' for more 218 (*AF_WritingSystem_InitHintsFunc)( AF_GlyphHints hints, 222 (*AF_WritingSystem_ApplyHintsFunc)( AF_GlyphHints hints,
|
/external/freetype/src/psaux/ |
t1decode.c | 423 /* begin hints recording session, if any */ 425 hinter->open( hinter->hints ); 792 case 3: /* change hints */ 799 hinter->reset( hinter->hints, builder->current->n_points ); 804 /* counter control hints, clear stack */ [all...] |
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/psaux/ |
t1decode.c | 423 /* begin hints recording session, if any */ 425 hinter->open( hinter->hints ); 792 case 3: /* change hints */ 799 hinter->reset( hinter->hints, builder->current->n_points ); 804 /* counter control hints, clear stack */ [all...] |
/external/wpa_supplicant_8/src/wps/ |
wps_upnp.c | 314 struct addrinfo hints; local 351 os_memset(&hints, 0, sizeof(struct addrinfo)); 352 hints.ai_family = AF_INET; /* IPv4 */ 353 hints.ai_socktype = SOCK_STREAM; 358 hints.ai_flags = AI_NUMERICHOST; 361 hints.ai_flags = 0; 363 hints.ai_protocol = 0; /* Any protocol? */ 365 &hints, &result); [all...] |
/frameworks/base/core/java/android/app/ |
INotificationManager.aidl | 66 void requestHintsFromListener(in INotificationListener token, int hints);
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
FrameType.java | 45 * {@link #image2D(int, int)} constructors). To optimize access, provide access hints when making 253 * Returns the access hints bit-mask of the FrameType. 254 * @return The access hints bit-mask of the FrameType. 360 private static String keyValueForType(int elemId, int dims, int hints, Class<?> clazz) { 361 return elemId + ":" + dims + ":" + hints + ":" + (clazz != null ? clazz.getName() : "0");
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
wspiapi.h | 38 typedef int (WINAPI *WSPIAPI_PGETADDRINFO)(const char *nodename,const char *servname,const struct addrinfo *hints,struct addrinfo **res); 64 int WINAPI WspiapiGetAddrInfo(const char *nodename,const char *servname,const struct addrinfo *hints,struct addrinfo **res);
|
/system/netd/server/ |
NetdConstants.cpp | 204 addrinfo hints = { local 207 int ret = getaddrinfo(addressString.c_str(), NULL, &hints, &res);
|
/external/chromium_org/third_party/freetype/src/pshinter/ |
pshalgo.c | 48 /***** BASIC HINTS RECORDINGS *****/ 53 /* return true if two stem hints overlap */ 63 /* destroy hints table */ 73 FT_FREE( table->hints ); 80 /* deactivate all hints in a table */ 85 PSH_Hint hint = table->hints; 101 PSH_Hint hint = table->hints + idx; 110 /* ignore active hints */ 140 FT_TRACE0(( "psh_hint_table_record: too many sorted hints! BUG!\n" )); 171 /* create hints table * [all...] |
/external/freetype/src/pshinter/ |
pshalgo.c | 48 /***** BASIC HINTS RECORDINGS *****/ 53 /* return true if two stem hints overlap */ 63 /* destroy hints table */ 73 FT_FREE( table->hints ); 80 /* deactivate all hints in a table */ 85 PSH_Hint hint = table->hints; 101 PSH_Hint hint = table->hints + idx; 110 /* ignore active hints */ 140 FT_TRACE0(( "psh_hint_table_record: too many sorted hints! BUG!\n" )); 171 /* create hints table * [all...] |
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/pshinter/ |
pshalgo.c | 48 /***** BASIC HINTS RECORDINGS *****/ 53 /* return true if two stem hints overlap */ 63 /* destroy hints table */ 73 FT_FREE( table->hints ); 80 /* deactivate all hints in a table */ 85 PSH_Hint hint = table->hints; 101 PSH_Hint hint = table->hints + idx; 110 /* ignore active hints */ 140 FT_TRACE0(( "psh_hint_table_record: too many sorted hints! BUG!\n" )); 171 /* create hints table * [all...] |
/external/chromium_org/media/audio/alsa/ |
alsa_output.cc | 517 // Constants specified by the ALSA API for device hints. 528 void** hints = NULL; local 531 &hints); 534 // hints above need to be freed. 535 for (void** hint_iter = hints; *hint_iter != NULL; hint_iter++) { 553 wrapper_->DeviceNameFreeHint(hints); 554 hints = NULL; 556 LOG(ERROR) << "Unable to get hints for devices: "
|
/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/zxing/core/ |
core.jar | |
/bionic/libc/kernel/uapi/linux/ |
irda.h | 127 __u8 hints[2]; member in struct:irda_device_info
|
/development/ndk/platforms/android-L/include/linux/ |
irda.h | 127 __u8 hints[2]; member in struct:irda_device_info
|
/external/kernel-headers/original/uapi/linux/ |
irda.h | 136 __u8 hints[2]; /* Hint bits */ member in struct:irda_device_info
|
/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);
|
/hardware/libhardware/include/hardware/ |
hwcomposer.h | 155 * hints is bit mask set by the HWC implementation during (*prepare)(). 159 * see hwc_layer_t::hints 161 uint32_t hints; member in struct:hwc_layer_1 519 * and hints are preserved between (*prepare)() calles unless the 526 * compositionType and hints are reset to their default value. [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/ |
irda.h | 139 __u8 hints[2]; /* Hint bits */ member in struct:irda_device_info
|