HomeSort by relevance Sort by last modified time
    Searched refs:hints (Results 176 - 200 of 635) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/pdfium/fxbarcode/oned/
BC_OnedEAN13Writer.cpp 87 int32_t hints) {
91 hints);
BC_OnedEAN8Writer.cpp 94 int32_t hints) {
98 hints);
BC_OnedUPCAWriter.cpp 90 int32_t hints) {
97 outHeight, hints);
  /external/tensorflow/tensorflow/contrib/lite/python/
op_hint.py 15 """Define tflite op hints (intrinsic operations).
18 Python with hints on how they are represented in TensorFlow Lite. This basically
192 This is uses to accumulate found hints in the graphdef into a single
272 """Converts a graphdef with LiteOp hints into stub operations.
282 hints = _find_all_hints_in_graph_def(session)
284 for call in hints.values():
  /external/wpa_supplicant_8/src/wps/
wps_upnp.c 317 struct addrinfo hints; local
354 os_memset(&hints, 0, sizeof(struct addrinfo));
355 hints.ai_family = AF_INET; /* IPv4 */
356 hints.ai_socktype = SOCK_STREAM;
361 hints.ai_flags = AI_NUMERICHOST;
364 hints.ai_flags = 0;
366 hints.ai_protocol = 0; /* Any protocol? */
368 &hints, &result);
    [all...]
  /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");
  /frameworks/support/slices/core/src/main/java/androidx/slice/core/
SliceActionImpl.java 306 * @param builder this should be a new builder that has any additional hints the action might
314 @Slice.SliceHint String[] hints = mImageMode == ICON_IMAGE local
317 sb.addIcon(mIcon, null, hints);
  /frameworks/support/slices/view/src/main/java/androidx/slice/
SliceUtils.java 282 String[] hints = new String[] {HINT_ACTIONS, HINT_SHORTCUT}; local
284 ? SliceQuery.findAll(actionGroup, FORMAT_SLICE, hints, null)
  /hardware/interfaces/power/1.0/vts/functional/
VtsHalPowerV1_0TargetTest.cpp 130 auto hints = {PowerHint::VSYNC, PowerHint::INTERACTION, local
136 for (auto hint : hints) {
144 // Turning these hints on in different orders triggers different code paths,
  /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);
  /external/freetype/src/pshinter/
pshalgo.c 46 /***** BASIC HINTS RECORDINGS *****/
51 /* return true if two stem hints overlap */
61 /* destroy hints table */
71 FT_FREE( table->hints );
78 /* deactivate all hints in a table */
83 PSH_Hint hint = table->hints;
99 PSH_Hint hint = table->hints + idx;
108 /* ignore active hints */
138 FT_TRACE0(( "psh_hint_table_record: too many sorted hints! BUG!\n" ));
169 /* create hints table *
    [all...]
  /external/iptables/libxtables/
xtables.c 1364 struct addrinfo hints; local
1654 struct addrinfo hints; local
    [all...]
  /external/libmicrohttpd/src/examples/
mhd2spdy_spdy.c 578 struct addrinfo hints; local
586 memset(&hints, 0, sizeof(struct addrinfo));
587 hints.ai_family = AF_UNSPEC;
588 hints.ai_socktype = SOCK_STREAM;
589 rv = getaddrinfo(host, service, &hints, &res);
  /external/libmicrohttpd/src/testspdy/
test_notls.c 468 struct addrinfo hints; local
474 memset(&hints, 0, sizeof(struct addrinfo));
475 hints.ai_family = AF_UNSPEC;
476 hints.ai_socktype = SOCK_STREAM;
477 rv = getaddrinfo(host, service, &hints, &res);
  /external/toybox/toys/net/
ifconfig.c 63 struct addrinfo hints, *result, *rp = 0; local
67 memset(&hints, 0 , sizeof(struct addrinfo));
68 hints.ai_family = af;
69 hints.ai_socktype = SOCK_STREAM;
74 status = getaddrinfo(host, NULL, &hints, &result);
  /external/toybox/toys/pending/
telnetd.c 69 struct addrinfo hints, *result; local
98 memset(&hints, 0 , sizeof(struct addrinfo));
99 hints.ai_family = af;
100 hints.ai_socktype = SOCK_STREAM;
102 status = getaddrinfo(host, NULL, &hints, &result);
  /packages/apps/Dialer/java/com/android/dialer/precall/impl/
CallingAccountSelector.java 253 List<String> hints = new ArrayList<>(); local
256 hints.add(null);
261 hints.add(context.getString(R.string.pre_call_select_phone_account_hint_intra_carrier));
264 hints.add(context.getString(R.string.pre_call_select_phone_account_hint_frequent));
270 return hints;
  /external/zxing/core/
core.jar 
  /external/ipsec-tools/src/racoon/
sockmisc.c 997 struct addrinfo hints, *res; local
1001 memset(&hints, 0, sizeof(hints));
1002 hints.ai_family = PF_UNSPEC;
1003 hints.ai_socktype = SOCK_DGRAM;
1004 hints.ai_flags = AI_NUMERICHOST;
1005 error = getaddrinfo(host, port, &hints, &res);
  /external/tensorflow/tensorflow/contrib/gdr/
gdr_memory_manager.cc 223 rdma_addrinfo hints = {}; local
224 hints.ai_port_space = RDMA_PS_TCP;
225 hints.ai_flags = RAI_PASSIVE;
227 const_cast<char*>(port_.c_str()), &hints, &addrinfo)) {
649 rdma_addrinfo hints = {}; local
650 hints.ai_port_space = RDMA_PS_TCP;
652 const_cast<char*>(port.c_str()), &hints, &addrinfo)) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NavigationBarFragment.java 357 int hints = mNavigationIconHints; local
363 hints |= NAVIGATION_HINT_BACK_ALT;
365 hints &= ~NAVIGATION_HINT_BACK_ALT;
369 hints &= ~NAVIGATION_HINT_BACK_ALT;
373 hints |= NAVIGATION_HINT_IME_SHOWN;
375 hints &= ~NAVIGATION_HINT_IME_SHOWN;
377 if (hints == mNavigationIconHints) return;
379 mNavigationIconHints = hints;
382 mNavigationBarView.setNavigationIconHints(hints);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
socketmodule.c 839 struct addrinfo hints, *res; local
847 memset(&hints, 0, sizeof(hints));
848 hints.ai_family = af;
849 hints.ai_socktype = SOCK_DGRAM; /*dummy*/
850 hints.ai_flags = AI_PASSIVE;
853 error = getaddrinfo(NULL, "0", &hints, &res);
921 memset(&hints, 0, sizeof(hints));
922 hints.ai_family = af;
4139 struct addrinfo hints, *res; local
4262 struct addrinfo hints, *res = NULL; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
socketmodule.c 781 struct addrinfo hints, *res; local
789 memset(&hints, 0, sizeof(hints));
790 hints.ai_family = af;
791 hints.ai_socktype = SOCK_DGRAM; /*dummy*/
792 hints.ai_flags = AI_PASSIVE;
795 error = getaddrinfo(NULL, "0", &hints, &res);
863 memset(&hints, 0, sizeof(hints));
864 hints.ai_family = af;
4057 struct addrinfo hints, *res; local
4165 struct addrinfo hints, *res = NULL; local
    [all...]
  /external/python/cpython2/Modules/
socketmodule.c 863 struct addrinfo hints, *res; local
871 memset(&hints, 0, sizeof(hints));
872 hints.ai_family = af;
873 hints.ai_socktype = SOCK_DGRAM; /*dummy*/
874 hints.ai_flags = AI_PASSIVE;
877 error = getaddrinfo(NULL, "0", &hints, &res);
945 memset(&hints, 0, sizeof(hints));
946 hints.ai_family = af
4164 struct addrinfo hints, *res; local
4287 struct addrinfo hints, *res = NULL; local
    [all...]
  /hardware/qcom/display/msm8084/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]":"",

Completed in 1151 milliseconds

1 2 3 4 5 6 78 91011>>