/dalvik/vm/arch/x86/ |
Hints386ABI.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 x86-specific hints for the standard 32-bit 386 ABI. 59 * For the 386 ABI, valid hints should always be generated.
|
/external/bzip2/ |
words0 | 6 Also in README.COMPILATION.PROBLEMS are some hints that may help
|
/external/chromium/net/tools/flip_server/ |
create_listener.cc | 120 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, 0, sizeof(hints)) [all...] |
/external/chromium_org/chrome/browser/resources/net_internals/ |
proxy_view.html | 10 #proxy-view-socks-hints { 15 #proxy-view-socks-hints-flag { 34 <div id=proxy-view-socks-hints> 38 <pre id=proxy-view-socks-hints-flag></pre>
|
/external/chromium_org/net/tools/flip_server/ |
create_listener.cc | 112 struct addrinfo hints; local 113 memset(&hints, 0, sizeof(hints)); 116 hints.ai_flags = AI_NUMERICHOST; // iff you know the name is numeric. 118 hints.ai_flags |= AI_PASSIVE; 120 hints.ai_family = PF_INET; 121 hints.ai_socktype = SOCK_STREAM; 124 if ((err = getaddrinfo(node, service, &hints, &results))) { 242 struct addrinfo hints; local 243 memset(&hints, 0, sizeof(hints)) [all...] |
/external/clang/test/FixIt/ |
no-fixit.cpp | 3 // test that the diagnostics produced by this code do not include fixit hints
|
fixit-c90.c | 10 /* This is a test of the various code modification hints that are
|
/external/chromium_org/chrome/browser/net/ |
client_hints.h | 14 // to create the Client-Hints request header. For more information, see: 15 // https://github.com/igrigorik/http-client-hints/blob/draft2/draft-grigorik-http-client-hints-01.txt
|
/external/android-clat/ |
dns64.c | 37 struct addrinfo hints, *result, *p; local 49 bzero(&hints, sizeof(hints)); 50 hints.ai_family = AF_UNSPEC; 51 status = getaddrinfo(ipv4_name, NULL, &hints, &result);
|
/external/chromium_org/media/audio/alsa/ |
audio_manager_alsa.cc | 122 // Constants specified by the ALSA API for device hints. 126 // Loop through the sound cards to get ALSA device hints. 128 void** hints = NULL; local 129 int error = wrapper_->DeviceNameHint(card, kPcmInterfaceName, &hints); 131 GetAlsaDevicesInfo(type, hints, device_names); 133 // Destroy the hints now that we're done with it. 134 wrapper_->DeviceNameFreeHint(hints); 136 DLOG(WARNING) << "GetAlsaAudioDevices: unable to get device hints: " 144 void** hints, 152 for (void** hint_iter = hints; *hint_iter != NULL; hint_iter++) 242 void** hints = NULL; local [all...] |
/dalvik/vm/arch/mips/ |
HintsO32.cpp | 38 * are the same for all targets, while the lower 28 are used for hints to 45 * S - if set, ignore the hints and do things the hard way (scan signature) 47 * H - target-specific hints (see below for details) 49 * This function produces mips-specific hints - specifically a description 60 * If there are too many arguments to construct valid hints, this function will 69 int stackOffset, padMask, hints; local
|
/external/chromium_org/third_party/freetype/src/autofit/ |
afindic.c | 73 af_indic_hints_init( AF_GlyphHints hints, 77 return af_cjk_hints_init( hints, metrics ); 82 af_indic_hints_apply( AF_GlyphHints hints, 87 return af_cjk_hints_apply( hints, outline, metrics );
|
afcjk.c | 73 AF_GlyphHintsRec hints[1]; local 76 af_glyph_hints_init( hints, face->memory ); 111 af_glyph_hints_rescale( hints, (AF_ScriptMetrics)dummy ); 113 error = af_glyph_hints_reload( hints, &face->glyph->outline ); 120 AF_AxisHints axhints = &hints->axis[dim]; 125 error = af_latin_hints_compute_segments( hints, (AF_Dimension)dim ); 129 af_latin_hints_link_segments( hints, (AF_Dimension)dim ); 177 af_glyph_hints_done( hints ); 686 af_cjk_hints_compute_segments( AF_GlyphHints hints, 689 AF_AxisHints axis = &hints->axis[dim] [all...] |
aflatin2.c | 43 af_latin2_hints_compute_segments( AF_GlyphHints hints, 47 af_latin2_hints_link_segments( AF_GlyphHints hints, 63 AF_GlyphHintsRec hints[1]; local 66 af_glyph_hints_init( hints, face->memory ); 97 af_glyph_hints_rescale( hints, (AF_ScriptMetrics)dummy ); 99 error = af_glyph_hints_reload( hints, &face->glyph->outline ); 106 AF_AxisHints axhints = &hints->axis[dim]; 111 error = af_latin2_hints_compute_segments( hints, 116 af_latin2_hints_link_segments( hints, 163 af_glyph_hints_done( hints ); [all...] |
aflatin.c | 60 AF_GlyphHintsRec hints[1]; local 66 af_glyph_hints_init( hints, face->memory ); 104 af_glyph_hints_rescale( hints, (AF_ScriptMetrics)dummy ); 106 error = af_glyph_hints_reload( hints, &face->glyph->outline ); 113 AF_AxisHints axhints = &hints->axis[dim]; 118 error = af_latin_hints_compute_segments( hints, 123 af_latin_hints_link_segments( hints, 192 af_glyph_hints_done( hints ); 793 af_latin_hints_compute_segments( AF_GlyphHints hints, 796 AF_AxisHints axis = &hints->axis[dim] [all...] |
afloader.c | 37 af_glyph_hints_init( &loader->hints, memory ); 39 _af_debug_hints = &loader->hints; 84 af_glyph_hints_done( &loader->hints ); 112 AF_GlyphHints hints = &loader->hints; local 171 loader->pp1.x = hints->x_delta; 172 loader->pp1.y = hints->y_delta; 174 hints->x_scale ) + hints->x_delta; 175 loader->pp2.y = hints->y_delta [all...] |
/external/chromium_org/third_party/freetype/src/pshinter/ |
pshglob.h | 33 /***** GLOBAL HINTS INTERNALS *****/ 45 /* The maximum number of blue zones in a font global hints structure. */ 133 /* dimension 0 => X coordinates + vertical hints/stems */ 134 /* dimension 1 => Y coordinates + horizontal hints/stems */
|
/external/freetype/src/autofit/ |
afindic.c | 73 af_indic_hints_init( AF_GlyphHints hints, 77 return af_cjk_hints_init( hints, metrics ); 82 af_indic_hints_apply( AF_GlyphHints hints, 87 return af_cjk_hints_apply( hints, outline, metrics );
|
afcjk.c | 73 AF_GlyphHintsRec hints[1]; local 76 af_glyph_hints_init( hints, face->memory ); 111 af_glyph_hints_rescale( hints, (AF_ScriptMetrics)dummy ); 113 error = af_glyph_hints_reload( hints, &face->glyph->outline ); 120 AF_AxisHints axhints = &hints->axis[dim]; 125 error = af_latin_hints_compute_segments( hints, (AF_Dimension)dim ); 129 af_latin_hints_link_segments( hints, (AF_Dimension)dim ); 177 af_glyph_hints_done( hints ); 686 af_cjk_hints_compute_segments( AF_GlyphHints hints, 689 AF_AxisHints axis = &hints->axis[dim] [all...] |
aflatin2.c | 43 af_latin2_hints_compute_segments( AF_GlyphHints hints, 47 af_latin2_hints_link_segments( AF_GlyphHints hints, 63 AF_GlyphHintsRec hints[1]; local 66 af_glyph_hints_init( hints, face->memory ); 97 af_glyph_hints_rescale( hints, (AF_ScriptMetrics)dummy ); 99 error = af_glyph_hints_reload( hints, &face->glyph->outline ); 106 AF_AxisHints axhints = &hints->axis[dim]; 111 error = af_latin2_hints_compute_segments( hints, 116 af_latin2_hints_link_segments( hints, 163 af_glyph_hints_done( hints ); [all...] |
aflatin.c | 60 AF_GlyphHintsRec hints[1]; local 66 af_glyph_hints_init( hints, face->memory ); 104 af_glyph_hints_rescale( hints, (AF_ScriptMetrics)dummy ); 106 error = af_glyph_hints_reload( hints, &face->glyph->outline ); 113 AF_AxisHints axhints = &hints->axis[dim]; 118 error = af_latin_hints_compute_segments( hints, 123 af_latin_hints_link_segments( hints, 192 af_glyph_hints_done( hints ); 793 af_latin_hints_compute_segments( AF_GlyphHints hints, 796 AF_AxisHints axis = &hints->axis[dim] [all...] |
/external/freetype/src/pshinter/ |
pshglob.h | 33 /***** GLOBAL HINTS INTERNALS *****/ 45 /* The maximum number of blue zones in a font global hints structure. */ 133 /* dimension 0 => X coordinates + vertical hints/stems */ 134 /* dimension 1 => Y coordinates + horizontal hints/stems */
|
/external/chromium_org/third_party/freetype/src/cff/ |
cf2hints.h | 5 /* Adobe's code for handling CFF hints (body). */ 48 CF2_MAX_HINTS = 96 /* maximum # of hints */ 53 * A HintMask object stores a bit mask that specifies which hints in the 54 * charstring are active at a given time. Hints in CFF must be declared 55 * at the start, before any drawing operators, with horizontal hints 56 * preceding vertical hints. The HintMask is ordered the same way, with 57 * horizontal hints immediately followed by vertical hints. Clients are 60 * The maximum total number of hints is 96, as specified by the CFF 105 * representing an edge. When edges are paired, as from stem hints, th [all...] |
/external/freetype/src/cff/ |
cf2hints.h | 5 /* Adobe's code for handling CFF hints (body). */ 48 CF2_MAX_HINTS = 96 /* maximum # of hints */ 53 * A HintMask object stores a bit mask that specifies which hints in the 54 * charstring are active at a given time. Hints in CFF must be declared 55 * at the start, before any drawing operators, with horizontal hints 56 * preceding vertical hints. The HintMask is ordered the same way, with 57 * horizontal hints immediately followed by vertical hints. Clients are 60 * The maximum total number of hints is 96, as specified by the CFF 105 * representing an edge. When edges are paired, as from stem hints, th [all...] |
/external/naver-fonts/ |
README | 6 will ship on Android devices which do not use hints, the following changes 12 3. Remove hints
|