HomeSort by relevance Sort by last modified time
    Searched refs:head2 (Results 1 - 23 of 23) sorted by null

  /device/google/dragon/audio/hal/
utlist.h 70 #define LL_CONCAT(head1, head2) \
77 _tmp->next = (head2); \
79 (head1) = (head2); \
168 #define DL_CONCAT(head1, head2) \
171 if (head2) { \
173 _tmp = (head2)->prev; \
174 (head2)->prev = (head1)->prev; \
175 (head1)->prev->next = (head2); \
178 (head1) = (head2); \
  /external/zopfli/src/zopfli/
hash.c 53 h->head2 = (int*)malloc(sizeof(*h->head2) * 65536);
57 h->head2[i] = -1;
72 free(h->head2);
122 if (h->head2[h->val2] != -1 && h->hashval2[h->head2[h->val2]] == h->val2) {
123 h->prev2[hpos] = h->head2[h->val2];
126 h->head2[h->val2] = hpos;
hash.h 38 int* head2; /* Hash value to index of its most recent occurance. */ member in struct:ZopfliHash
lz77.c 333 if (hhead != h->head2 && bestlength >= h->same[hpos] &&
336 hhead = h->head2;
  /external/dhcpcd-6.8.2/compat/
queue.h 165 #define TAILQ_CONCAT(head1, head2, field) do { \
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)); \
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Lib/
ntpath.py 182 head2 = head
183 while head2 and head2[-1] in '/\\':
184 head2 = head2[:-1]
185 head = head2 or head
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
ntpath.py 177 head2 = head
178 while head2 and head2[-1] in '/\\':
179 head2 = head2[:-1]
180 head = head2 or head
  /prebuilts/gdb/darwin-x86/lib/python2.7/
ntpath.py 177 head2 = head
178 while head2 and head2[-1] in '/\\':
179 head2 = head2[:-1]
180 head = head2 or head
  /prebuilts/gdb/linux-x86/lib/python2.7/
ntpath.py 177 head2 = head
178 while head2 and head2[-1] in '/\\':
179 head2 = head2[:-1]
180 head = head2 or head
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ntpath.py 177 head2 = head
178 while head2 and head2[-1] in '/\\':
179 head2 = head2[:-1]
180 head = head2 or head
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ntpath.py 177 head2 = head
178 while head2 and head2[-1] in '/\\':
179 head2 = head2[:-1]
180 head = head2 or head
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sys/
queue.h 274 #define STAILQ_CONCAT(head1, head2) do { \
275 if (!STAILQ_EMPTY((head2))) { \
276 *(head1)->stqh_last = (head2)->stqh_first; \
277 (head1)->stqh_last = (head2)->stqh_last; \
278 STAILQ_INIT((head2)); \
445 #define TAILQ_CONCAT(head1, head2, field) do { \
446 if (!TAILQ_EMPTY(head2)) { \
447 *(head1)->tqh_last = (head2)->tqh_first; \
448 (head2)->tqh_first->field.tqe_prev = (head1)->tqh_last; \
449 (head1)->tqh_last = (head2)->tqh_last;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
queue.h 274 #define STAILQ_CONCAT(head1, head2) do { \
275 if (!STAILQ_EMPTY((head2))) { \
276 *(head1)->stqh_last = (head2)->stqh_first; \
277 (head1)->stqh_last = (head2)->stqh_last; \
278 STAILQ_INIT((head2)); \
445 #define TAILQ_CONCAT(head1, head2, field) do { \
446 if (!TAILQ_EMPTY(head2)) { \
447 *(head1)->tqh_last = (head2)->tqh_first; \
448 (head2)->tqh_first->field.tqe_prev = (head1)->tqh_last; \
449 (head1)->tqh_last = (head2)->tqh_last;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
queue.h 274 #define STAILQ_CONCAT(head1, head2) do { \
275 if (!STAILQ_EMPTY((head2))) { \
276 *(head1)->stqh_last = (head2)->stqh_first; \
277 (head1)->stqh_last = (head2)->stqh_last; \
278 STAILQ_INIT((head2)); \
445 #define TAILQ_CONCAT(head1, head2, field) do { \
446 if (!TAILQ_EMPTY(head2)) { \
447 *(head1)->tqh_last = (head2)->tqh_first; \
448 (head2)->tqh_first->field.tqe_prev = (head1)->tqh_last; \
449 (head1)->tqh_last = (head2)->tqh_last;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Lib/
ntpath.py 205 head2 = head
206 while head2 and head2[-1] in '/\\':
207 head2 = head2[:-1]
208 head = head2 or head
  /external/python/cpython2/Lib/
ntpath.py 187 head2 = head
188 while head2 and head2[-1] in '/\\':
189 head2 = head2[:-1]
190 head = head2 or head
  /external/freetype/src/base/
ftrfork.c 58 unsigned char head[16], head2[16]; local
132 head2[15] = (FT_Byte)( head[15] + 1 ); /* make it be different */
134 error = FT_Stream_Read( stream, (FT_Byte*)head2, 16 );
142 if ( head2[i] != 0 )
144 if ( head2[i] != head[i] )
  /external/pdfium/third_party/freetype/src/base/
ftrfork.c 58 unsigned char head[16], head2[16]; local
107 head2[15] = (FT_Byte)( head[15] + 1 ); /* make it be different */
109 error = FT_Stream_Read( stream, (FT_Byte*)head2, 16 );
117 if ( head2[i] != 0 )
119 if ( head2[i] != head[i] )
  /external/syslinux/gpxe/src/util/
nrv2b.c 217 #define HEAD2(b,p) (b[p] ^ ((unsigned)b[p+1]<<8))
270 unsigned int head2 [ 65536U ]; member in struct:ucl_swd
362 key = HEAD2(s->b,node);
363 s->head2[key] = (unsigned int)(node);
402 s->head2[i] = NIL2;
503 key = HEAD2(s->b,node);
504 assert(s->head2[key] != NIL2);
505 if ((unsigned int) s->head2[key] == node)
506 s->head2[key] = NIL2;
537 /* add bp into HEAD2 */
    [all...]
  /external/syslinux/lzo/src/
lzo_swd.ch 73 #if !(SWD_NO_HEAD2) && (SWD_THRESHOLD == 1) && !defined(HEAD2)
75 # define HEAD2(b,p) UA_GET_NE16((b)+(p))
77 # define HEAD2(b,p) (b[p] ^ ((unsigned)b[(p)+1]<<8))
138 # ifdef HEAD2
139 swd_uint *head2;
148 # ifdef HEAD2
149 swd_uint head2 [ 65536L ];
162 #ifdef HEAD2
163 #define s_head2(s) s->head2
223 #ifdef HEAD2
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/
Runtime.pm 34 May include numerous subsections (i.e. =head2, =head3, etc.)
  /external/ImageMagick/scripts/
format_c_api_docs 565 print( OUT head2($func) );
591 sub head2 { subroutine
593 return( "=head2 $heading\n\n" );
  /external/skia/src/pathops/
SkPathOpsTSect.h 2344 const SkTSpan<OppCurve, TCurve>* head2 = sect2->fHead; local
    [all...]

Completed in 1076 milliseconds