/system/extras/tests/bionic/libc/common/ |
test_getaddrinfo.c | 2 * without a 'hints' argument 18 struct addrinfo hints; local 22 /* first, try without any hints */ 31 /* now try with the hints */ 32 memset(&hints, 0, sizeof(hints)); 33 hints.ai_family = AF_UNSPEC; 34 hints.ai_socktype = SOCK_STREAM; 35 hints.ai_protocol = IPPROTO_TCP; 37 ret = getaddrinfo( SERVER_NAME, PORT_NUMBER, &hints, &res ) [all...] |
/external/chromium_org/third_party/freetype/src/pshinter/ |
pshrec.h | 5 /* 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 */ 46 /***** GLYPH HINTS RECORDER INTERNALS *****/ 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 * 150 ps_hints_done( PS_Hints hints ); variable [all...] |
pshmod.c | 43 module->t1_funcs.hints = NULL; 44 module->t2_funcs.hints = NULL; 50 /* initialize module, create hints recorder and the interface */ 63 module->t1_funcs.hints = (T1_Hints)ph; 66 module->t2_funcs.hints = (T2_Hints)ph; 72 /* returns global hints interface */ 80 /* return Type 1 hints interface */ 88 /* return Type 2 hints interface */
|
pshrec.c | 5 /* FreeType PostScript hints recorder (body). */ 48 /* destroy hints table */ 53 FT_FREE( table->hints ); 74 if ( !FT_RENEW_ARRAY( table->hints, old_max, new_max ) ) 101 hint = table->hints + count - 1; 541 ps_hint_table_done( &dimension->hints, memory ); 549 dimension->hints.num_hints = 0; 669 /* now, lookup stem in the current hints table */ 673 FT_UInt max = dim->hints.num_hints; 674 PS_Hint hint = dim->hints.hints [all...] |
/external/freetype/src/pshinter/ |
pshrec.h | 5 /* 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 */ 46 /***** GLYPH HINTS RECORDER INTERNALS *****/ 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 * 150 ps_hints_done( PS_Hints hints ); variable [all...] |
pshmod.c | 43 module->t1_funcs.hints = NULL; 44 module->t2_funcs.hints = NULL; 50 /* initialize module, create hints recorder and the interface */ 63 module->t1_funcs.hints = (T1_Hints)ph; 66 module->t2_funcs.hints = (T2_Hints)ph; 72 /* returns global hints interface */ 80 /* return Type 1 hints interface */ 88 /* return Type 2 hints interface */
|
pshrec.c | 5 /* FreeType PostScript hints recorder (body). */ 48 /* destroy hints table */ 53 FT_FREE( table->hints ); 74 if ( !FT_RENEW_ARRAY( table->hints, old_max, new_max ) ) 101 hint = table->hints + count - 1; 541 ps_hint_table_done( &dimension->hints, memory ); 549 dimension->hints.num_hints = 0; 669 /* now, lookup stem in the current hints table */ 673 FT_UInt max = dim->hints.num_hints; 674 PS_Hint hint = dim->hints.hints [all...] |
/external/chromium_org/third_party/freetype/include/freetype/internal/ |
pshints.h | 5 /* Interface to Postscript-specific (Type 1 and Type 2) hints */ 7 /* T1/T2 hints in the `type1', `cid', and `cff' font drivers. */ 71 /***** PUBLIC TYPE 1 HINTS RECORDER *****/ 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 344 T1_Hints hints; member in struct:T1_Hints_FuncsRec_ 658 T2_Hints hints; member in struct:T2_Hints_FuncsRec_ [all...] |
autohint.h | 38 /* - global hints: Usually some metrics that describe global properties */ 42 /* hints is really small). */ 44 /* - glyph hints: These describe some important features of the glyph */ 46 /* generally much faster to compute than global hints. */ 49 /* performing fast computations for both global and glyph hints. */ 57 /* global hints every time the same face is re-opened. */ 59 /* We thus provide the ability to cache global hints outside of the face */ 65 /* hints too. However, my general idea now is that if you really need */ 89 /* Retrieve the global hints computed for a given face object. The */ 100 /* global_hints :: A typeless pointer to the global hints. * [all...] |
/external/freetype/include/freetype/internal/ |
pshints.h | 5 /* Interface to Postscript-specific (Type 1 and Type 2) hints */ 7 /* T1/T2 hints in the `type1', `cid', and `cff' font drivers. */ 71 /***** PUBLIC TYPE 1 HINTS RECORDER *****/ 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 344 T1_Hints hints; member in struct:T1_Hints_FuncsRec_ 658 T2_Hints hints; member in struct:T2_Hints_FuncsRec_ [all...] |
autohint.h | 38 /* - global hints: Usually some metrics that describe global properties */ 42 /* hints is really small). */ 44 /* - glyph hints: These describe some important features of the glyph */ 46 /* generally much faster to compute than global hints. */ 49 /* performing fast computations for both global and glyph hints. */ 57 /* global hints every time the same face is re-opened. */ 59 /* We thus provide the ability to cache global hints outside of the face */ 65 /* hints too. However, my general idea now is that if you really need */ 89 /* Retrieve the global hints computed for a given face object. The */ 100 /* global_hints :: A typeless pointer to the global hints. * [all...] |
/external/chromium_org/third_party/freetype/src/autofit/ |
afdummy.c | 26 af_dummy_hints_init( AF_GlyphHints hints, 29 af_glyph_hints_rescale( hints, 36 af_dummy_hints_apply( AF_GlyphHints hints, 39 FT_UNUSED( hints );
|
afhints.c | 182 af_glyph_hints_dump_points( AF_GlyphHints hints ) 184 AF_Point points = hints->points; 185 AF_Point limit = points + hints->num_points; 250 af_glyph_hints_dump_segments( AF_GlyphHints hints ) 257 AF_AxisHints axis = &hints->axis[dimension]; 258 AF_Point points = hints->points; 306 af_glyph_hints_get_num_segments( AF_GlyphHints hints, 316 axis = &hints->axis[dim]; 332 af_glyph_hints_get_segment_offset( AF_GlyphHints hints, 347 axis = &hints->axis[dim] [all...] |
/external/freetype/src/autofit/ |
afdummy.c | 26 af_dummy_hints_init( AF_GlyphHints hints, 29 af_glyph_hints_rescale( hints, 36 af_dummy_hints_apply( AF_GlyphHints hints, 39 FT_UNUSED( hints );
|
afhints.c | 182 af_glyph_hints_dump_points( AF_GlyphHints hints ) 184 AF_Point points = hints->points; 185 AF_Point limit = points + hints->num_points; 250 af_glyph_hints_dump_segments( AF_GlyphHints hints ) 257 AF_AxisHints axis = &hints->axis[dimension]; 258 AF_Point points = hints->points; 306 af_glyph_hints_get_num_segments( AF_GlyphHints hints, 316 axis = &hints->axis[dim]; 332 af_glyph_hints_get_segment_offset( AF_GlyphHints hints, 347 axis = &hints->axis[dim] [all...] |
/dalvik/vm/arch/generic/ |
Hints.cpp | 17 * Target-specific optimization and run-time hints 32 * are the same for all targets, while the lower 28 are used for hints to 39 * S - if set, ignore the hints and do things the hard way (scan signature) 41 * H - target-specific hints 44 * appropriate arch/<target>/ directory for new target ports. The hints 48 * If valid hints can't be constructed, this function should return a negative 54 /* No hints for generic target - force argument walk at run-time */
|
/external/zxing/qr_scanner/src/com/google/zxing/client/android/ |
DecodeThread.java | 40 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);
|
/external/chromium_org/net/dns/ |
host_resolver_proc.cc | 131 struct addrinfo hints = {0}; local 135 hints.ai_family = AF_INET; 138 hints.ai_family = AF_INET6; 141 hints.ai_family = AF_UNSPEC; 145 hints.ai_family = AF_UNSPEC; 153 // Flags used in "hints" argument to getaddrinfo() 171 hints.ai_flags = 0; 173 hints.ai_flags = AI_ADDRCONFIG; 180 hints.ai_flags &= ~AI_ADDRCONFIG; 183 hints.ai_flags |= AI_CANONNAME [all...] |
/external/llvm/lib/CodeGen/ |
AllocationOrder.cpp | 13 // hints and target hooks. The AllocationOrder class encapsulates all of that. 36 TRI->getRegAllocationHints(VirtReg, Order, Hints, MF, &VRM); 40 if (!Hints.empty()) { 41 dbgs() << "hints:"; 42 for (unsigned I = 0, E = Hints.size(); I != E; ++I) 43 dbgs() << ' ' << PrintReg(Hints[I], TRI); 48 for (unsigned I = 0, E = Hints.size(); I != E; ++I) 49 assert(std::find(Order.begin(), Order.end(), Hints[I]) != Order.end() &&
|
AllocationOrder.h | 13 // hints and target hooks. The AllocationOrder class encapsulates all of that. 29 SmallVector<MCPhysReg, 16> Hints; 42 /// Get the allocation order without reordered hints. 50 return Hints.end()[Pos++]; 62 /// This can produce more than Limit registers if there are hints. 65 return Hints.end()[Pos++]; 72 void rewind() { Pos = -int(Hints.size()); } 79 return std::find(Hints.begin(), Hints.end(), PhysReg) != Hints.end() [all...] |
/external/openssh/openbsd-compat/ |
fake-rfc2553.c | 124 addrinfo *malloc_ai(int port, u_long addr, const struct addrinfo *hints) 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 && hints->ai_flags & AI_PASSIVE) [all...] |
/external/chromium_org/chrome/installer/linux/debian/ |
debian.menu | 3 hints="Web browsers" \
|
/external/dropbear/ |
fake-rfc2553.c | 119 addrinfo *malloc_ai(int port, u_long addr, const struct addrinfo *hints) 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); [all...] |
/external/chromium/net/base/ |
host_resolver_proc.cc | 142 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.ai_flags |= AI_CANONNAME [all...] |
/dalvik/vm/arch/arm/ |
HintsEABI.cpp | 17 * Target-specific optimization and run-time hints 32 * are the same for all targets, while the lower 28 are used for hints to 39 * S - if set, ignore the hints and do things the hard way (scan signature) 41 * H - target-specific hints (see below for details) 43 * This function produces arm-specific hints - specifically a description 54 * If there are too many arguments to construct valid hints, this function will
|