Searched refs:head (Results 151 - 175 of 1046) sorted by relevance

1234567891011>>

/external/zopfli/src/zopfli/
H A Dhash.h30 int* head; /* Hash value to index of its most recent occurance. */ member in struct:ZopfliHash
/external/tremolo/Tremolo/
H A Dbitwise.c136 if(b->bitsLeftInSegment<0) ret = b->count+b->head->length;
137 else ret = b->count + b->head->length - (b->bitsLeftInSegment)/8;
139 // b->count, b->head->length, b->bitsLeftInSegment);
146 if(b->bitsLeftInSegment<0) ret=(b->count+b->head->length)*8;
147 else ret = b->count*8 + b->head->length*8 - b->bitsLeftInSegment;
149 // b->count, b->head->length, b->bitsLeftInSegment);
166 if(b->head && b->head->next){
167 b->count+=b->head->length;
168 b->head
227 ogg_reference *head=b->head; local
[all...]
/external/chromium_org/courgette/
H A Danalyze_mem_test22 | head -n$count \
63 | head -n1
85 | head -n1
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/webgl/
H A Dupdate_webgl_conformance_tests_unittest.py94 head = '<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">\n<html>\n<head>\n'
95 foot = '</head>\n<body>\n</body>\n</html>'
96 input_text = head + input_text + foot
97 output_text = head + output_text + foot
/external/clang/test/SemaTemplate/
H A Dexample-typelist.cpp9 typedef Head head; typedef in struct:cons
55 typedef cons<typename reversed_tail::head,
56 typename reverse<cons<typename T::head, most_of_tail> >::type> type;
/external/qemu/include/qapi/qmp/
H A Dqlist.h26 QTAILQ_HEAD(,QListEntry) head; member in struct:QList
33 for ((var) = ((qlist)->head.tqh_first); \
55 return QTAILQ_FIRST(&qlist->head);
/external/chromium_org/net/base/
H A Dnss_memio.c28 int head; /* where to take next byte out of buf */ member in struct:memio_buffer
92 mb->head = 0;
104 mb->head = 0;
111 return (((mb->tail >= mb->head) ? mb->tail : mb->bufsize) - mb->head);
117 return (mb->tail >= mb->head) ? 0 : mb->tail;
123 if (mb->head > mb->tail) return mb->head - mb->tail - 1;
124 return mb->bufsize - mb->tail - (mb->head == 0);
170 memcpy(buf, &mb->buf[mb->head], le
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_ringbuffer.c17 unsigned head; member in struct:util_ringbuffer
61 return (ring->tail - (ring->head + 1)) & ring->mask;
98 ring->buf[ring->head] = packet[i];
99 ring->head++;
100 ring->head &= ring->mask;
/external/eigen/unsupported/Eigen/src/LevenbergMarquardt/
H A DLMcovar.h46 r.col(k).head(j+1) -= r.col(j).head(j+1) * temp;
55 r.col(j).head(j+1) += r.col(k).head(j+1) * r(j,k);
56 r.col(k).head(k+1) *= r(k,k);
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/
H A Dcovar.h33 r.col(k).head(j+1) -= r.col(j).head(j+1) * temp;
42 r.col(j).head(j+1) += r.col(k).head(j+1) * r(j,k);
43 r.col(k).head(k+1) *= r(k,k);
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_ringbuffer.c17 unsigned head; member in struct:util_ringbuffer
61 return (ring->tail - (ring->head + 1)) & ring->mask;
98 ring->buf[ring->head] = packet[i];
99 ring->head++;
100 ring->head &= ring->mask;
/external/chromium_org/third_party/freetype/src/base/
H A Dftutil.c248 cur = list->head;
276 list->head = node;
288 FT_ListNode after = list->head;
299 list->head = node;
318 list->head = after;
351 node->next = list->head;
352 list->head->prev = node;
353 list->head = node;
364 FT_ListNode cur = list->head;
395 cur = list->head;
[all...]
/external/freetype/src/base/
H A Dftutil.c248 cur = list->head;
276 list->head = node;
288 FT_ListNode after = list->head;
299 list->head = node;
318 list->head = after;
351 node->next = list->head;
352 list->head->prev = node;
353 list->head = node;
364 FT_ListNode cur = list->head;
395 cur = list->head;
[all...]
/external/chromium_org/tools/json_to_struct/
H A Djson_to_struct.py83 def _GenerateH(basepath, fileroot, head, namespace, schema, description):
91 head: The string to output as the header of the .h file.
100 f.write(head)
136 def _GenerateCC(basepath, fileroot, head, namespace, schema, description):
144 head: The string to output as the header of the .cc file.
152 f.write(head)
209 head = HEAD % (datetime.now().year, opts.schema, description_filename) variable
210 _GenerateH(basepath, output_root, head, opts.namespace, schema, description)
211 _GenerateCC(basepath, output_root, head, opts.namespace, schema, description)
/external/chromium_org/third_party/boringssl/src/ssl/
H A Dssl_ciph.c389 static void ll_append_tail(CIPHER_ORDER **head, CIPHER_ORDER *curr, argument
393 if (curr == *head)
394 *head=curr->next;
405 static void ll_append_head(CIPHER_ORDER **head, CIPHER_ORDER *curr, argument
408 if (curr == *head) return;
415 (*head)->prev=curr;
416 curr->next= *head;
418 *head=curr;
488 CIPHER_ORDER *head)
497 ciph_curr = head;
486 ssl_cipher_collect_aliases(const SSL_CIPHER **ca_list, int num_of_group_aliases, CIPHER_ORDER *head) argument
529 CIPHER_ORDER *head, *tail, *curr, *next, *last; local
1012 CIPHER_ORDER *co_list = NULL, *head = NULL, *tail = NULL, *curr; local
[all...]
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
H A Dsctp_peeloff.c35 __FBSDID("$FreeBSD: head/sys/netinet/sctp_peeloff.c 269858 2014-08-12 11:30:16Z tuexen $");
55 sctp_can_peel_off(struct socket *head, sctp_assoc_t assoc_id) argument
61 if (head == NULL) {
65 inp = (struct sctp_inpcb *)head->so_pcb;
93 sctp_do_peeloff(struct socket *head, struct socket *so, sctp_assoc_t assoc_id) argument
99 inp = (struct sctp_inpcb *)head->so_pcb;
176 sctp_get_peeloff(struct socket *head, sctp_assoc_t assoc_id, int *error) argument
191 inp = (struct sctp_inpcb *)head->so_pcb;
206 CURVNET_SET(head->so_vnet);
208 newso = sonewconn(head, SS_ISCONNECTE
[all...]
/external/ipsec-tools/src/racoon/
H A Dgetcertsbyname.c128 struct certinfo head, *cur; local
136 memset(&head, 0, sizeof(head));
137 cur = &head;
191 *res = head.ci_next;
197 if (error && head.ci_next)
198 freecertinfo(head.ci_next);
215 struct certinfo head, *cur; local
221 memset(&head, 0, sizeof(head));
[all...]
/external/openssl/crypto/bn/
H A Dbn_ctx.c102 BN_POOL_ITEM *head, *current, *tail; member in struct:bignum_pool
159 BN_POOL_ITEM *item = ctx->pool.head;
237 BN_POOL_ITEM *pool = ctx->pool.head;
362 p->head = p->current = p->tail = NULL;
368 while(p->head)
371 BIGNUM *bn = p->head->vals;
377 p->current = p->head->next;
378 OPENSSL_free(p->head);
379 p->head = p->current;
386 BN_POOL_ITEM *item = p->head;
[all...]
/external/chromium_org/content/browser/loader/
H A Dbuffered_resource_handler.cc124 if (!(response_->head.headers.get() &&
125 response_->head.headers->response_code() == 304)) {
131 if (response_->head.mime_type.empty()) {
135 response_->head.mime_type.assign("text/plain");
139 if (response_->head.mime_type == "application/rss+xml" ||
140 response_->head.mime_type == "application/atom+xml") {
141 response_->head.mime_type.assign("text/plain");
234 if (!(response_->head.headers.get() &&
235 response_->head.headers->response_code() == 304)) {
259 const std::string& mime_type = response_->head
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/bn/
H A Dctx.c77 BN_POOL_ITEM *head, *current, *tail; member in struct:bignum_pool
239 p->head = p->current = p->tail = NULL;
244 while (p->head) {
246 BIGNUM *bn = p->head->vals;
254 p->current = p->head->next;
255 OPENSSL_free(p->head);
256 p->head = p->current;
278 if (!p->head) {
279 p->head = p->current = p->tail = item;
293 p->current = p->head;
[all...]
/external/chromium_org/third_party/cython/src/Cython/Utility/
H A DBuffer.c87 __Pyx_BufFmt_StackElem* head; member in struct:__anon11733
229 ctx->head = stack;
230 ctx->head->field = &ctx->root;
232 ctx->head->parent_offset = 0;
242 ++ctx->head;
243 ctx->head->field = type->fields;
244 ctx->head->parent_offset = 0;
431 if (ctx->head == NULL || ctx->head->field == &ctx->root) {
434 if (ctx->head
[all...]
/external/chromium_org/tools/json_schema_compiler/
H A Dpreview.py37 head = code.Code()
38 head.Append('<link rel="icon" href="%s">' % chromium_favicon)
39 head.Append('<link rel="shortcut icon" href="%s">' % chromium_favicon)
45 self._ShowPanels(parsed_url, head, body)
47 self._ShowCompiledFile(parsed_url, head, body)
49 self.wfile.write('<html><head>')
50 self.wfile.write(head.Render())
51 self.wfile.write('</head><body>')
63 def _ShowPanels(self, parsed_url, head, body):
68 (head
[all...]
/external/llvm/lib/Support/
H A DCrashRecoveryContext.cpp77 CrashRecoveryContextCleanup *i = head;
78 tlIsRecoveringFromCrash->set(head);
111 if (head)
112 head->prev = cleanup;
113 cleanup->next = head;
114 head = cleanup;
121 if (cleanup == head) {
122 head = cleanup->next;
123 if (head)
124 head
[all...]
/external/openssl/crypto/evp/
H A De_rc4_hmac_md5.c74 MD5_CTX head,tail,md; member in struct:__anon28301
94 MD5_Init(&key->head); /* handy when benchmarking */
95 key->tail = key->head;
96 key->md = key->head;
234 MD5_Init(&key->head);
235 MD5_Update(&key->head,ptr,arg);
236 MD5_Final(hmac_key,&key->head);
243 MD5_Init(&key->head);
244 MD5_Update(&key->head,hmac_key,sizeof(hmac_key));
265 key->md = key->head;
[all...]
/external/svox/pico/lib/
H A Dpicodata.c188 PICODBG_WARN(("problem getting item, incomplete head, underflow"));
378 picoos_uint8 picodata_is_valid_itemhead(const picodata_itemhead_t *head) { argument
379 if ((NULL != head) && is_valid_itemtype(head->type)) {
392 picodata_itemhead_t *head, picoos_uint8 *content,
396 head->type = buf[PICODATA_ITEMIND_TYPE];
397 head->info1 = buf[PICODATA_ITEMIND_INFO1];
398 head->info2 = buf[PICODATA_ITEMIND_INFO2];
399 head->len = buf[PICODATA_ITEMIND_LEN];
400 *clen = head
390 picodata_get_itemparts_nowarn( const picoos_uint8 *buf, const picoos_uint16 blenmax, picodata_itemhead_t *head, picoos_uint8 *content, const picoos_uint16 clenmax, picoos_uint16 *clen) argument
417 picodata_get_itemparts( const picoos_uint8 *buf, const picoos_uint16 blenmax, picodata_itemhead_t *head, picoos_uint8 *content, const picoos_uint16 clenmax, picoos_uint16 *clen) argument
430 picodata_put_itemparts(const picodata_itemhead_t *head, const picoos_uint8 *content, const picoos_uint16 clenmax, picoos_uint8 *buf, const picoos_uint16 blenmax, picoos_uint16 *blen) argument
456 picodata_get_iteminfo( picoos_uint8 *buf, const picoos_uint16 blenmax, picodata_itemhead_t *head, picoos_uint8 **content) argument
537 picodata_itemhead_t head; local
1025 picodata_head_to_string(const picodata_itemhead_t *head, picoos_char * str, picoos_uint16 strsize) argument
[all...]

Completed in 789 milliseconds

1234567891011>>