Searched defs:hints (Results 1 - 25 of 77) sorted by relevance

1234

/external/freetype/src/autofit/
H A Dafdummy.c26 af_dummy_hints_init( AF_GlyphHints hints, argument
29 af_glyph_hints_rescale( hints,
36 af_dummy_hints_apply( AF_GlyphHints hints, argument
39 FT_UNUSED( hints );
H A Dafindic.c73 af_indic_hints_init( AF_GlyphHints hints, argument
77 return af_cjk_hints_init( hints, metrics );
82 af_indic_hints_apply( AF_GlyphHints hints, argument
87 return af_cjk_hints_apply( hints, outline, metrics );
H A Dafloader.h33 AF_GlyphHintsRec hints; member in struct:AF_LoaderRec_
H A Dafloader.c33 af_glyph_hints_init( &loader->hints, memory );
35 _af_debug_hints = &loader->hints;
76 af_glyph_hints_done( &loader->hints );
104 AF_GlyphHints hints = &loader->hints; local
165 loader->pp1.x = hints->x_delta;
166 loader->pp1.y = hints->y_delta;
168 hints->x_scale ) + hints->x_delta;
169 loader->pp2.y = hints
[all...]
H A Dafwarp.c163 AF_GlyphHints hints,
185 org_scale = hints->y_scale;
186 org_delta = hints->y_delta;
190 org_scale = hints->x_scale;
191 org_delta = hints->x_delta;
199 axis = &hints->axis[dim];
202 points = hints->points;
203 num_points = hints->num_points;
357 hints->xmin_delta = FT_MulFix( X1, best_scale - org_scale )
359 hints
162 af_warper_compute( AF_Warper warper, AF_GlyphHints hints, AF_Dimension dim, FT_Fixed *a_scale, FT_Pos *a_delta ) argument
[all...]
/external/oprofile/libpp/
H A Dprofile_container.h90 : hints(cf_none), threshold(0.0), match_image(false) {}
92 /// hints filled in
93 column_flags hints; member in struct:profile_container::symbol_choice
176 * Optimization hints for what information we are going to need,
/external/zxing/qr_scanner/src/com/google/zxing/client/android/
H A DDecodeThread.java40 private final Hashtable<DecodeHintType,Object> hints; field in class:DecodeThread
51 hints = new Hashtable<DecodeHintType,Object>();
54 hints.put(DecodeHintType.POSSIBLE_FORMATS, formats);
57 hints.put(DecodeHintType.CHARACTER_SET, characterSet);
59 hints.put(DecodeHintType.NEED_RESULT_POINT_CALLBACK, resultPointCallback);
74 handler = new DecodeHandler(activity, hints);
H A DDecodeHandler.java42 DecodeHandler(CaptureActivity activity, Hashtable<DecodeHintType,Object> hints) { argument
44 multiFormatReader.setHints(hints);
/external/clang/lib/include/
H A Dpmmintrin.h104 _mm_monitor(void const *p, unsigned extensions, unsigned hints) argument
106 __builtin_ia32_monitor((void *)p, extensions, hints);
110 _mm_mwait(unsigned extensions, unsigned hints) argument
112 __builtin_ia32_mwait(extensions, hints);
/external/webkit/Source/WebCore/inspector/
H A DInjectedScriptHost.cpp119 void InjectedScriptHost::inspectImpl(PassRefPtr<InspectorValue> object, PassRefPtr<InspectorValue> hints) argument
122 m_frontend->inspector()->inspect(object->asObject(), hints->asObject());
/external/clang/lib/Headers/
H A Dpmmintrin.h104 _mm_monitor(void const *p, unsigned extensions, unsigned hints) argument
106 __builtin_ia32_monitor((void *)p, extensions, hints);
110 _mm_mwait(unsigned extensions, unsigned hints) argument
112 __builtin_ia32_mwait(extensions, hints);
/external/chromium/net/base/
H A Dhost_resolver_proc.cc142 struct addrinfo hints = {0}; local
146 hints.ai_family = AF_INET;
149 hints.ai_family = AF_INET6;
152 hints.ai_family = AF_UNSPEC;
156 hints.ai_family = AF_UNSPEC;
164 // Flags used in "hints" argument to getaddrinfo()
182 hints.ai_flags = 0;
184 hints.ai_flags = AI_ADDRCONFIG;
191 hints.ai_flags &= ~AI_ADDRCONFIG;
194 hints
[all...]
/external/chromium/net/tools/flip_server/
H A Dcreate_listener.cc120 struct addrinfo hints; local
121 memset(&hints, 0, sizeof(hints));
124 hints.ai_flags = AI_NUMERICHOST; // iff you know the name is numeric.
126 hints.ai_flags |= AI_PASSIVE;
128 hints.ai_family = PF_INET;
129 hints.ai_socktype = SOCK_STREAM;
132 if ((err=getaddrinfo(node, service, &hints, &results))) {
244 struct addrinfo hints; local
245 memset(&hints,
[all...]
/external/dropbear/
H A Dfake-rfc2553.c119 addrinfo *malloc_ai(int port, u_long addr, const struct addrinfo *hints) argument
138 if (hints->ai_socktype)
139 ai->ai_socktype = hints->ai_socktype;
143 if (hints->ai_protocol)
144 ai->ai_protocol = hints->ai_protocol;
151 const struct addrinfo *hints, struct addrinfo **res)
173 if (hints && hints->ai_flags & AI_PASSIVE) {
177 *res = malloc_ai(port, addr, hints);
184 *res = malloc_ai(port, htonl(0x7f000001), hints);
150 getaddrinfo(const char *hostname, const char *servname, const struct addrinfo *hints, struct addrinfo **res) argument
[all...]
/external/openssh/
H A Ddns.c147 struct addrinfo hints, *ai; local
158 memset(&hints, 0, sizeof(hints));
159 hints.ai_socktype = SOCK_DGRAM;
160 hints.ai_flags = AI_NUMERICHOST;
162 if (getaddrinfo(hostname, NULL, &hints, &ai) == 0) {
H A Daddrmatch.c209 struct addrinfo hints, *ai; local
211 memset(&hints, '\0', sizeof(hints));
212 hints.ai_flags = AI_NUMERICHOST;
214 if (p == NULL || getaddrinfo(p, NULL, &hints, &ai) != 0)
H A Dcanohost.c53 struct addrinfo hints, *ai, *aitop; local
92 memset(&hints, 0, sizeof(hints));
93 hints.ai_socktype = SOCK_DGRAM; /*dummy*/
94 hints.ai_flags = AI_NUMERICHOST;
95 if (getaddrinfo(name, NULL, &hints, &ai) == 0) {
118 memset(&hints, 0, sizeof(hints));
119 hints.ai_family = from.ss_family;
120 hints
[all...]
/external/openssh/openbsd-compat/
H A Dfake-rfc2553.c124 addrinfo *malloc_ai(int port, u_long addr, const struct addrinfo *hints) argument
143 if (hints->ai_socktype)
144 ai->ai_socktype = hints->ai_socktype;
148 if (hints->ai_protocol)
149 ai->ai_protocol = hints->ai_protocol;
156 const struct addrinfo *hints, struct addrinfo **res)
166 if (hints && hints->ai_family != AF_UNSPEC &&
167 hints->ai_family != AF_INET)
181 if (hints
155 getaddrinfo(const char *hostname, const char *servname, const struct addrinfo *hints, struct addrinfo **res) argument
[all...]
/external/skia/src/ports/
H A DSkFontHost_ascender.cpp61 void* hints = sk_malloc_throw(fHintStream->getLength()); local
62 memcpy(hints, fHintStream->getMemoryBase(), fHintStream->getLength());
67 hints, fHintStream->getLength());
/external/freetype/include/freetype/internal/
H A Dpshints.h5 /* Interface to Postscript-specific (Type 1 and Type 2) hints */
7 /* T1/T2 hints in the `type1', `cid', and `cff' font drivers. */
82 * This is a handle to an opaque structure used to record glyph hints
86 * @T1_Hints_FuncsRec structure. Recording glyph hints is normally
97 * returns an error code if the hints were invalid or something
100 * The hints accumulated in the object can later be used by the
127 * hints recording session.
130 * hints ::
131 * A handle to the Type 1 hints recorder.
139 (*T1_Hints_OpenFunc)( T1_Hints hints );
344 T1_Hints hints; member in struct:T1_Hints_FuncsRec_
658 T2_Hints hints; member in struct:T2_Hints_FuncsRec_
[all...]
/external/freetype/src/pshinter/
H A Dpshrec.h5 /* Postscript (Type1/Type2) hints recorder (specification). */
22 /* font drivers to record the hints of a given character/glyph. */
24 /* The hints are recorded in a unified format, and are later processed */
87 /* hints table descriptor */
92 PS_Hint hints; member in struct:PS_Hint_TableRec_
118 /* dimension-specific hints descriptor */
121 PS_Hint_TableRec hints; member in struct:PS_DimensionRec_
128 /* glyph hints descriptor */
129 /* dimension 0 => X coordinates + vertical hints/stems */
130 /* dimension 1 => Y coordinates + horizontal hints/stem
150 ps_hints_done( PS_Hints hints ); variable
[all...]
/external/libpcap/
H A Dnametoaddr.c128 struct addrinfo hints, *res; local
131 memset(&hints, 0, sizeof(hints));
132 hints.ai_family = PF_UNSPEC;
133 hints.ai_socktype = SOCK_STREAM; /*not really*/
134 hints.ai_protocol = IPPROTO_TCP; /*not really*/
135 error = getaddrinfo(name, NULL, &hints, &res);
/external/mtpd/
H A Dmtpd.c263 struct addrinfo hints = { local
274 error = getaddrinfo(server, port, &hints, &records);
/external/netperf/
H A Dnetserver.c434 struct addrinfo hints; local
461 memset(&hints,0,sizeof(hints));
462 hints.ai_family = af;
463 hints.ai_socktype = SOCK_STREAM;
464 hints.ai_protocol = IPPROTO_TCP;
465 hints.ai_flags = AI_PASSIVE;
471 &hints,
/external/opencv/otherlibs/highgui/
H A Dcvcap_socket.cpp124 struct addrinfo hints; local
125 memset(&hints, 0, sizeof hints);
126 hints.ai_family = AF_UNSPEC; // use IPv4 or IPv6, whichever
127 hints.ai_socktype = SOCK_STREAM;
128 hints.ai_flags = AI_NUMERICHOST;
130 int error = getaddrinfo(_address, _port, &hints, &pAddrInfo);

Completed in 442 milliseconds

1234