Home
last modified time | relevance | path

Searched refs:head2 (Results 1 – 8 of 8) sorted by relevance

/external/zopfli/src/zopfli/
Dhash.c53 h->head2 = (int*)malloc(sizeof(*h->head2) * 65536); in ZopfliInitHash()
57 h->head2[i] = -1; in ZopfliInitHash()
72 free(h->head2); in ZopfliCleanHash()
122 if (h->head2[h->val2] != -1 && h->hashval2[h->head2[h->val2]] == h->val2) { in ZopfliUpdateHash()
123 h->prev2[hpos] = h->head2[h->val2]; in ZopfliUpdateHash()
126 h->head2[h->val2] = hpos; in ZopfliUpdateHash()
Dhash.h38 int* head2; /* Hash value to index of its most recent occurance. */ member
Dlz77.c333 if (hhead != h->head2 && bestlength >= h->same[hpos] && in ZopfliFindLongestMatch()
336 hhead = h->head2; in ZopfliFindLongestMatch()
/external/dhcpcd-6.8.2/compat/
Dqueue.h165 #define TAILQ_CONCAT(head1, head2, field) do { \ argument
166 if (!TAILQ_EMPTY(head2)) { \
167 *(head1)->tqh_last = (head2)->tqh_first; \
168 (head2)->tqh_first->field.tqe_prev = (head1)->tqh_last; \
169 (head1)->tqh_last = (head2)->tqh_last; \
170 TAILQ_INIT((head2)); \
/external/antlr/antlr-3.4/runtime/Perl5/docs/
Ddesign.pod21 =head2 OO
34 =head2 Exceptions
39 =head2 Types
/external/freetype/src/base/
Dftrfork.c58 unsigned char head[16], head2[16]; in FT_Raccess_Get_HeaderInfo() local
96 head2[15] = (FT_Byte)( head[15] + 1 ); /* make it be different */ in FT_Raccess_Get_HeaderInfo()
98 error = FT_Stream_Read( stream, (FT_Byte*)head2, 16 ); in FT_Raccess_Get_HeaderInfo()
106 if ( head2[i] != 0 ) in FT_Raccess_Get_HeaderInfo()
108 if ( head2[i] != head[i] ) in FT_Raccess_Get_HeaderInfo()
/external/pdfium/third_party/freetype/src/base/
Dftrfork.c58 unsigned char head[16], head2[16]; in FT_Raccess_Get_HeaderInfo() local
107 head2[15] = (FT_Byte)( head[15] + 1 ); /* make it be different */ in FT_Raccess_Get_HeaderInfo()
109 error = FT_Stream_Read( stream, (FT_Byte*)head2, 16 ); in FT_Raccess_Get_HeaderInfo()
117 if ( head2[i] != 0 ) in FT_Raccess_Get_HeaderInfo()
119 if ( head2[i] != head[i] ) in FT_Raccess_Get_HeaderInfo()
/external/skia/src/pathops/
DSkPathOpsTSect.h2169 const SkTSpan<OppCurve, TCurve>* head2 = sect2->fHead; in BinarySearch() local
2170 if (!(zeroOneSet & kZeroS2Set) && approximately_less_than_zero(head2->fStartT)) { in BinarySearch()
2172 if (head2->isBounded()) { in BinarySearch()
2173 double t = head2->closestBoundedT(start2); in BinarySearch()