Searched defs:hint (Results 76 - 100 of 138) sorted by relevance

123456

/external/icu/icu4c/source/common/
H A Duhash.c130 * or a pointer. If a hint bit is zero, then the associated
143 UHashTok key, UHashTok value, int8_t hint) {
163 if (hint & HINT_KEY_POINTER) {
168 if (hint & HINT_VALUE_POINTER) {
464 int8_t hint,
481 if ((hint & HINT_VALUE_POINTER) && value.pointer == NULL) {
519 return _uhash_setElement(hash, e, hashcode & 0x7FFFFFFF, key, value, hint);
141 _uhash_setElement(UHashtable *hash, UHashElement* e, int32_t hashcode, UHashTok key, UHashTok value, int8_t hint) argument
461 _uhash_put(UHashtable *hash, UHashTok key, UHashTok value, int8_t hint, UErrorCode *status) argument
/external/libnl/lib/
H A Daddr.c221 * @arg hint Address family hint or AF_UNSPEC.
237 * - {default|all|any}: All bits set to 0, length based on hint or
238 * AF_INET if no hint is given.
245 int nl_addr_parse(const char *addrstr, int hint, struct nl_addr **result) argument
262 family = hint;
270 switch (hint) {
274 * no hint given the user wants to have a IPv4
298 if (hint == AF_INET || hint
688 struct addrinfo hint = { local
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/pshinter/
H A Dpshrec.c88 PS_Hint hint = 0; local
101 hint = table->hints + count - 1;
102 hint->pos = 0;
103 hint->len = 0;
104 hint->flags = 0;
109 *ahint = hint;
284 /* return last hint mask in a table, create one if the table is empty */
557 /* set a bit at a given index in the current hint mask */
567 /* get last hint mask */
674 PS_Hint hint local
[all...]
H A Dpshalgo.c85 PSH_Hint hint = table->hints; local
88 for ( ; count > 0; count--, hint++ )
90 psh_hint_deactivate( hint );
91 hint->order = -1;
96 /* internal function to record a new hint */
101 PSH_Hint hint = table->hints + idx; local
106 FT_TRACE0(( "psh_hint_table_record: invalid hint index %d\n", idx ));
111 if ( psh_hint_is_active( hint ) )
114 psh_hint_activate( hint );
116 /* now scan the current active hint se
269 PSH_Hint hint = &table->hints[idx]; local
409 PSH_Hint hint = table->hints + count; local
439 psh_hint_align( PSH_Hint hint, PSH_Globals globals, FT_Int dimension, PSH_Glyph glyph ) argument
853 PSH_Hint hint; local
1550 PSH_Hint hint = sort[nn]; local
1570 PSH_Hint hint = sort[nn]; local
1607 PSH_Hint hint = sort[nn]; local
1624 PSH_Hint hint = sort[nn]; local
1642 PSH_Hint hint = sort[nn]; local
1839 PSH_Hint hint = point->hint; local
[all...]
H A Dpshalgo.h33 /* hint bit-flags */
52 /* hint structure */
170 PSH_Hint hint; member in struct:PSH_PointRec_
224 (*PSH_HintFunc)( PSH_Hint hint,
/external/stlport/src/
H A Dlocale_catalog.cpp36 static void* _Loc_ctype_create(const char * s, _Locale_name_hint* hint, int *__err_code) argument
37 { return _Locale_ctype_create(s, hint, __err_code); }
38 static void* _Loc_codecvt_create(const char * s, _Locale_name_hint* hint, int *__err_code) argument
39 { return _Locale_codecvt_create(s, hint, __err_code); }
40 static void* _Loc_numeric_create(const char * s, _Locale_name_hint* hint, int *__err_code) argument
41 { return _Locale_numeric_create(s, hint, __err_code); }
42 static void* _Loc_time_create(const char * s, _Locale_name_hint* hint, int *__err_code) argument
43 { return _Locale_time_create(s, hint, __err_code); }
44 static void* _Loc_collate_create(const char * s, _Locale_name_hint* hint, int *__err_code) argument
45 { return _Locale_collate_create(s, hint, __err_cod
46 _Loc_monetary_create(const char * s, _Locale_name_hint* hint, int *__err_code) argument
48 _Loc_messages_create(const char * s, _Locale_name_hint* hint, int *__err_code) argument
140 __acquire_category(const char* &name, char *buf, _Locale_name_hint* hint, loc_extract_name_func_t extract_name, loc_create_func_t create_obj, loc_default_name_func_t default_name, Category_Map ** M, int *__err_code) argument
236 __acquire_ctype(const char* &name, char *buf, _Locale_name_hint* hint, int *__err_code) argument
241 __acquire_codecvt(const char* &name, char *buf, _Locale_name_hint* hint, int *__err_code) argument
246 __acquire_numeric(const char* &name, char *buf, _Locale_name_hint* hint, int *__err_code) argument
251 __acquire_time(const char* &name, char *buf, _Locale_name_hint* hint, int *__err_code) argument
256 __acquire_collate(const char* &name, char *buf, _Locale_name_hint* hint, int *__err_code) argument
261 __acquire_monetary(const char* &name, char *buf, _Locale_name_hint* hint, int *__err_code) argument
266 __acquire_messages(const char* &name, char *buf, _Locale_name_hint* hint, int *__err_code) argument
[all...]
H A Dlocale_impl.cpp150 _Locale_name_hint* _Locale_impl::insert_ctype_facets(const char* &name, char *buf, _Locale_name_hint* hint) { argument
170 _Locale_ctype *__lct = _STLP_PRIV __acquire_ctype(name, buf, hint, &__err_code);
173 return hint;
176 if (hint == 0) hint = _Locale_get_ctype_hint(__lct);
190 _Locale_ctype *__lwct = _STLP_PRIV __acquire_ctype(name, buf, hint, &__err_code);
193 return hint;
201 _Locale_codecvt *__lwcvt = _STLP_PRIV __acquire_codecvt(name, buf, hint, &__err_code);
219 return hint;
222 _Locale_name_hint* _Locale_impl::insert_numeric_facets(const char* &name, char *buf, _Locale_name_hint* hint) { argument
288 insert_time_facets(const char* &name, char *buf, _Locale_name_hint* hint) argument
350 insert_collate_facets(const char* &name, char *buf, _Locale_name_hint* hint) argument
406 insert_monetary_facets(const char* &name, char *buf, _Locale_name_hint* hint) argument
511 insert_messages_facets(const char* &name, char *buf, _Locale_name_hint* hint) argument
[all...]
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3collections.c1289 antlr3VectorResize (pANTLR3_VECTOR vector, ANTLR3_UINT32 hint) argument
1296 if (hint == 0 || hint < vector->elementsSize)
1302 newSize = hint * 2;
1338 antlr3VectorResize(vector, 0); // Give no hint, we let it add 1024 or double it
1455 // Initialize the API, ignore the hint as this algorithm does
/external/chromium_org/cc/resources/
H A Dresource_provider.h114 TextureHint hint,
122 TextureHint hint,
130 TextureHint hint,
389 TextureHint hint,
438 TextureHint hint; member in struct:cc::ResourceProvider::Resource
H A Dresource_provider.cc239 hint(TextureHintImmutable),
254 TextureHint hint,
285 hint(hint),
328 hint(TextureHintImmutable),
372 hint(TextureHintImmutable),
438 TextureHint hint,
447 hint,
464 TextureHint hint,
473 hint,
247 Resource(GLuint texture_id, const gfx::Size& size, Origin origin, GLenum target, GLenum filter, GLenum texture_pool, GLint wrap_mode, TextureHint hint, ResourceFormat format) argument
435 CreateResource( const gfx::Size& size, GLint wrap_mode, TextureHint hint, ResourceFormat format) argument
460 CreateManagedResource( const gfx::Size& size, GLenum target, GLint wrap_mode, TextureHint hint, ResourceFormat format) argument
486 CreateGLTexture( const gfx::Size& size, GLenum target, GLenum texture_pool, GLint wrap_mode, TextureHint hint, ResourceFormat format) argument
[all...]
/external/chromium_org/third_party/freetype/src/cff/
H A Dcf2hints.c60 size_t j; /* index of upper hint map edge */
86 * Adjust stem hint for darkening here.
90 cf2_hint_init( CF2_Hint hint, argument
102 FT_ZERO( hint );
116 hint->csCoord = stemHint->max;
117 hint->flags = CF2_GhostBottom;
120 hint->flags = 0;
128 hint->flags = 0;
131 hint->csCoord = stemHint->min;
132 hint
[all...]
/external/chromium_org/third_party/freetype/src/pshinter/
H A Dpshalgo.c85 PSH_Hint hint = table->hints; local
88 for ( ; count > 0; count--, hint++ )
90 psh_hint_deactivate( hint );
91 hint->order = -1;
96 /* internal function to record a new hint */
101 PSH_Hint hint = table->hints + idx; local
106 FT_TRACE0(( "psh_hint_table_record: invalid hint index %d\n", idx ));
111 if ( psh_hint_is_active( hint ) )
114 psh_hint_activate( hint );
116 /* now scan the current active hint se
269 PSH_Hint hint = &table->hints[idx]; local
409 PSH_Hint hint = table->hints + count; local
439 psh_hint_align( PSH_Hint hint, PSH_Globals globals, FT_Int dimension, PSH_Glyph glyph ) argument
853 PSH_Hint hint; local
1550 PSH_Hint hint = sort[nn]; local
1570 PSH_Hint hint = sort[nn]; local
1607 PSH_Hint hint = sort[nn]; local
1624 PSH_Hint hint = sort[nn]; local
1642 PSH_Hint hint = sort[nn]; local
1839 PSH_Hint hint = point->hint; local
[all...]
H A Dpshalgo.h33 /* hint bit-flags */
52 /* hint structure */
170 PSH_Hint hint; member in struct:PSH_PointRec_
224 (*PSH_HintFunc)( PSH_Hint hint,
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dattrib.c41 #include "hint.h"
1038 const struct gl_hint_attrib *hint; local
1039 hint = (const struct gl_hint_attrib *) attr->data;
1041 hint->PerspectiveCorrection );
1042 _mesa_Hint(GL_POINT_SMOOTH_HINT, hint->PointSmooth);
1043 _mesa_Hint(GL_LINE_SMOOTH_HINT, hint->LineSmooth);
1044 _mesa_Hint(GL_POLYGON_SMOOTH_HINT, hint->PolygonSmooth);
1045 _mesa_Hint(GL_FOG_HINT, hint->Fog);
1047 hint->ClipVolumeClipping);
1049 hint
[all...]
/external/chromium_org/v8/src/compiler/
H A Dregister-allocator.h156 InstructionOperand* hint);
161 InstructionOperand* hint() const { return hint_; } function in class:v8::internal::compiler::UsePosition
249 if (pos != NULL) return pos->hint();
280 InstructionOperand* hint, Zone* zone);
402 InstructionOperand* hint);
404 InstructionOperand* operand, InstructionOperand* hint);
H A Dregister-allocator.cc26 InstructionOperand* hint)
28 hint_(hint),
412 InstructionOperand* hint, Zone* zone) {
415 UsePosition* use_pos = new (zone) UsePosition(pos, operand, hint);
434 current_hint_operand_ = hint;
676 InstructionOperand* hint) {
690 range->AddUsePosition(position, unalloc_operand, hint, zone());
698 InstructionOperand* hint) {
703 range->AddUsePosition(position, unalloc_operand, hint, zone());
969 InstructionOperand* hint local
25 UsePosition(LifetimePosition pos, InstructionOperand* operand, InstructionOperand* hint) argument
410 AddUsePosition(LifetimePosition pos, InstructionOperand* operand, InstructionOperand* hint, Zone* zone) argument
674 Define(LifetimePosition position, InstructionOperand* operand, InstructionOperand* hint) argument
695 Use(LifetimePosition block_start, LifetimePosition position, InstructionOperand* operand, InstructionOperand* hint) argument
1306 InstructionOperand* hint = NULL; local
1819 InstructionOperand* hint = current->FirstHint(); local
[all...]
/external/deqp/modules/gles2/functional/
H A Des2fTextureMipmapTests.cpp754 Texture2DGenMipmapCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* desc, deUint32 format, deUint32 dataType, deUint32 hint, int width, int height);
777 Texture2DGenMipmapCase::Texture2DGenMipmapCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* desc, deUint32 format, deUint32 dataType, deUint32 hint, int width, int height) argument
782 , m_hint (hint)
840 gl.hint(GL_GENERATE_MIPMAP_HINT, m_hint);
890 TextureCubeGenMipmapCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* desc, deUint32 format, deUint32 dataType, deUint32 hint, int size);
912 TextureCubeGenMipmapCase::TextureCubeGenMipmapCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* desc, deUint32 format, deUint32 dataType, deUint32 hint, int size) argument
917 , m_hint (hint)
991 gl.hint(GL_GENERATE_MIPMAP_HINT, m_hint);
1109 deUint32 hint; member in struct:deqp::gles2::Functional::__anon19922
1186 for (int hint
[all...]
/external/freetype/src/cff/
H A Dcf2hints.c60 size_t j; /* index of upper hint map edge */
86 * Adjust stem hint for darkening here.
90 cf2_hint_init( CF2_Hint hint, argument
102 FT_ZERO( hint );
116 hint->csCoord = stemHint->max;
117 hint->flags = CF2_GhostBottom;
120 hint->flags = 0;
128 hint->flags = 0;
131 hint->csCoord = stemHint->min;
132 hint
[all...]
/external/freetype/src/pshinter/
H A Dpshalgo.c85 PSH_Hint hint = table->hints; local
88 for ( ; count > 0; count--, hint++ )
90 psh_hint_deactivate( hint );
91 hint->order = -1;
96 /* internal function to record a new hint */
101 PSH_Hint hint = table->hints + idx; local
106 FT_TRACE0(( "psh_hint_table_record: invalid hint index %d\n", idx ));
111 if ( psh_hint_is_active( hint ) )
114 psh_hint_activate( hint );
116 /* now scan the current active hint se
269 PSH_Hint hint = &table->hints[idx]; local
409 PSH_Hint hint = table->hints + count; local
439 psh_hint_align( PSH_Hint hint, PSH_Globals globals, FT_Int dimension, PSH_Glyph glyph ) argument
853 PSH_Hint hint; local
1549 PSH_Hint hint = sort[nn]; local
1569 PSH_Hint hint = sort[nn]; local
1606 PSH_Hint hint = sort[nn]; local
1623 PSH_Hint hint = sort[nn]; local
1641 PSH_Hint hint = sort[nn]; local
1838 PSH_Hint hint = point->hint; local
[all...]
H A Dpshalgo.h33 /* hint bit-flags */
52 /* hint structure */
170 PSH_Hint hint; member in struct:PSH_PointRec_
224 (*PSH_HintFunc)( PSH_Hint hint,
/external/libunwind/include/tdep-ia64/
H A Dlibunwind_i.h153 short hint; member in struct:cursor
/external/mesa3d/src/mesa/main/
H A Dattrib.c41 #include "hint.h"
1038 const struct gl_hint_attrib *hint; local
1039 hint = (const struct gl_hint_attrib *) attr->data;
1041 hint->PerspectiveCorrection );
1042 _mesa_Hint(GL_POINT_SMOOTH_HINT, hint->PointSmooth);
1043 _mesa_Hint(GL_LINE_SMOOTH_HINT, hint->LineSmooth);
1044 _mesa_Hint(GL_POLYGON_SMOOTH_HINT, hint->PolygonSmooth);
1045 _mesa_Hint(GL_FOG_HINT, hint->Fog);
1047 hint->ClipVolumeClipping);
1049 hint
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cff/
H A Dcf2hints.c60 size_t j; /* index of upper hint map edge */
86 * Adjust stem hint for darkening here.
90 cf2_hint_init( CF2_Hint hint, argument
102 FT_ZERO( hint );
116 hint->csCoord = stemHint->max;
117 hint->flags = CF2_GhostBottom;
120 hint->flags = 0;
128 hint->flags = 0;
131 hint->csCoord = stemHint->min;
132 hint
[all...]
/external/stlport/src/c_locale_glibc/
H A Dc_locale_glibc2.c59 struct _Locale_ctype *_Locale_ctype_create(const char *nm, struct _Locale_name_hint* hint, argument
65 struct _Locale_codecvt *_Locale_codecvt_create(const char *nm, struct _Locale_name_hint* hint, argument
73 struct _Locale_numeric *_Locale_numeric_create(const char *nm, struct _Locale_name_hint* hint, argument
79 struct _Locale_time *_Locale_time_create(const char *nm, struct _Locale_name_hint* hint, argument
85 struct _Locale_collate *_Locale_collate_create(const char *nm, struct _Locale_name_hint* hint, argument
91 struct _Locale_monetary *_Locale_monetary_create(const char *nm, struct _Locale_name_hint* hint, argument
97 struct _Locale_messages *_Locale_messages_create(const char *nm, struct _Locale_name_hint* hint, argument
242 struct _Locale_name_hint* hint, int *__err_code)
246 struct _Locale_name_hint* hint, int *__err_code)
250 struct _Locale_name_hint* hint, in
241 _Locale_extract_ctype_name(const char *loc, char *buf, struct _Locale_name_hint* hint, int *__err_code) argument
245 _Locale_extract_numeric_name(const char *loc, char *buf, struct _Locale_name_hint* hint, int *__err_code) argument
249 _Locale_extract_time_name(const char *loc, char *buf, struct _Locale_name_hint* hint, int *__err_code) argument
253 _Locale_extract_collate_name(const char *loc, char *buf, struct _Locale_name_hint* hint, int *__err_code) argument
257 _Locale_extract_monetary_name(const char *loc, char *buf, struct _Locale_name_hint* hint, int *__err_code) argument
261 _Locale_extract_messages_name(const char *loc, char *buf, struct _Locale_name_hint* hint, int *__err_code) argument
[all...]
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DState.cpp572 void State::setGenerateMipmapHint(GLenum hint) argument
574 mGenerateMipmapHint = hint;
577 void State::setFragmentShaderDerivativeHint(GLenum hint) argument
579 mFragmentShaderDerivativeHint = hint;
580 // TODO: Propagate the hint to shader translator so we can write
581 // ddx, ddx_coarse, or ddx_fine depending on the hint.
582 // Ignore for now. It is valid for implementations to ignore hint.

Completed in 5131 milliseconds

123456