Searched refs:FTC_MruNode (Results 1 – 8 of 8) sorted by relevance
/external/freetype/src/cache/ |
D | ftcmru.h | 61 typedef struct FTC_MruNodeRec_* FTC_MruNode; typedef 65 FTC_MruNode next; 66 FTC_MruNode prev; 72 FTC_MruNode_Prepend( FTC_MruNode *plist, 73 FTC_MruNode node ); 76 FTC_MruNode_Up( FTC_MruNode *plist, 77 FTC_MruNode node ); 80 FTC_MruNode_Remove( FTC_MruNode *plist, 81 FTC_MruNode node ); 90 (*FTC_MruNode_CompareFunc)( FTC_MruNode node, [all …]
|
D | ftcmru.c | 28 FTC_MruNode_Prepend( FTC_MruNode *plist, in FTC_MruNode_Prepend() 29 FTC_MruNode node ) in FTC_MruNode_Prepend() 31 FTC_MruNode first = *plist; in FTC_MruNode_Prepend() 36 FTC_MruNode last = first->prev; in FTC_MruNode_Prepend() 41 FTC_MruNode cnode = first; in FTC_MruNode_Prepend() 72 FTC_MruNode_Up( FTC_MruNode *plist, in FTC_MruNode_Up() 73 FTC_MruNode node ) in FTC_MruNode_Up() 75 FTC_MruNode first = *plist; in FTC_MruNode_Up() 82 FTC_MruNode prev, next, last; in FTC_MruNode_Up() 87 FTC_MruNode cnode = first; in FTC_MruNode_Up() [all …]
|
D | ftcmanag.c | 85 ftc_size_node_done( FTC_MruNode ftcnode, in ftc_size_node_done() 99 ftc_size_node_compare( FTC_MruNode ftcnode, in ftc_size_node_compare() 117 ftc_size_node_init( FTC_MruNode ftcnode, in ftc_size_node_init() 133 ftc_size_node_reset( FTC_MruNode ftcnode, in ftc_size_node_reset() 164 ftc_size_node_compare_faceid( FTC_MruNode ftcnode, in ftc_size_node_compare_faceid() 183 FTC_MruNode mrunode; in FTC_Manager_LookupSize() 230 ftc_face_node_init( FTC_MruNode ftcnode, in ftc_face_node_init() 258 ftc_face_node_done( FTC_MruNode ftcnode, in ftc_face_node_done() 279 ftc_face_node_compare( FTC_MruNode ftcnode, in ftc_face_node_compare() 310 FTC_MruNode mrunode; in FTC_Manager_LookupFace()
|
D | ftccache.c | 54 FTC_MruNode_Prepend( (FTC_MruNode*)nl, in ftc_node_mru_link() 55 (FTC_MruNode)node ); in ftc_node_mru_link() 68 FTC_MruNode_Remove( (FTC_MruNode*)nl, in ftc_node_mru_unlink() 69 (FTC_MruNode)node ); in ftc_node_mru_unlink() 81 FTC_MruNode_Up( (FTC_MruNode*)&manager->nodes_list, in ftc_node_mru_up() 82 (FTC_MruNode)node ); in ftc_node_mru_up()
|
D | ftcglyph.h | 274 (FTC_MruNode)(family) ) 285 FTC_MruNode _mrunode; \
|
D | ftccache.h | 273 FTC_MruNode_Up( (FTC_MruNode*)_nl, \ 274 (FTC_MruNode)_node ); \
|
D | ftcbasic.c | 68 ftc_basic_family_compare( FTC_MruNode ftcfamily, in ftc_basic_family_compare() 80 ftc_basic_family_init( FTC_MruNode ftcfamily, in ftc_basic_family_init()
|
/external/freetype/ |
D | ChangeLog.23 | 529 Now these functions should be called with FTC_Node or FTC_MruNode 536 FTC_MruNode. 539 implementation, new temporal variable FTC_MruNode `_mrunode' to take 545 (FTC_Manager_LookupSize): Replace FTC_SizeNode `node' by FTC_MruNode 548 (FTC_Manager_LookupFace) Replace FTC_FaceNode `node' by FTC_MruNode
|