Searched defs:head (Results 101 - 125 of 455) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/skia/src/images/
H A DSkImageDecoder_wbmp.cpp105 wbmp_head head; local
107 if (!head.init(stream)) {
111 int width = head.fWidth;
112 int height = head.fHeight;
156 wbmp_head head; local
158 if (head.init(stream)) {
165 wbmp_head head; local
166 if (head.init(stream)) {
/external/chromium_org/tools/telemetry/third_party/davclient/
H A Ddavclient.py117 def head(self, path, headers=None): member in class:DAVClient
/external/chromium_org/v8/src/heap/
H A Dobjects-visiting.cc193 Object* head = undefined; local
202 if (head == undefined) {
204 head = retained;
235 return head;
313 // Update the list head.
/external/chromium_org/v8/src/
H A Dzone.cc153 // Update the head segment to be the kept segment (if any).
211 Segment* head = segment_head_; local
212 const size_t old_size = (head == NULL) ? 0 : head->size();
/external/compiler-rt/lib/interception/
H A Dinterception_win.cc154 // wrapper, in this case we need to keep the leading 5+ bytes ('head')
155 // of the original code somewhere with a "jmp <old_func+head>".
156 // We call these 'head'+5 bytes of instructions a "trampoline".
160 size_t head = 5; local
163 // to the trampoline and store it in 'head'.
164 head = RoundUpToInstrBoundary(head, old_bytes);
165 if (!head)
169 char *trampoline = GetMemoryForTrampoline(head + 5);
172 _memcpy(trampoline, old_bytes, head);
[all...]
/external/icu/icu4c/source/common/
H A Dulist.c26 UListNode *head; member in struct:UList
49 newList->head = NULL;
64 list->head = newItem;
115 newItem->next = list->head;
116 list->head->previous = newItem;
117 list->head = newItem;
129 pointer = list->head;
170 list->curr = list->head;
180 listHead = list->head;
/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...]
H A Dproposal.h47 * head ---> prop[.......] ---> prop[...] ---> prop[...] ---> ...
68 struct saproto *head; member in struct:saprop
93 struct satrns *head; /* header of transform */ member in struct:saproto
127 * | (head) | (head)
129 * | | (head) | (head)
136 * | (head)
/external/javassist/src/main/javassist/compiler/ast/
H A DASTList.java55 public ASTree head() { return left; } method in class:ASTList
/external/libsepol/src/
H A Dinterfaces.c115 ocontext_t *c, *head; local
120 head = policydb->ocontexts[OCON_NETIF];
121 for (c = head; c; c = c->next) {
140 ocontext_t *c, *head; local
145 head = policydb->ocontexts[OCON_NETIF];
146 for (c = head; c; c = c->next) {
172 ocontext_t *head, *prev, *c, *iface = NULL; local
181 head = policydb->ocontexts[OCON_NETIF];
182 for (c = head; c; c = c->next) {
224 ocontext_t *c, *head; local
244 ocontext_t *c, *head; local
[all...]
H A Dnodes.c152 ocontext_t *c, *head; local
155 head = policydb->ocontexts[OCON_NODE];
156 for (c = head; c != NULL; c = c->next)
159 head = policydb->ocontexts[OCON_NODE6];
160 for (c = head; c != NULL; c = c->next)
176 ocontext_t *c, *head; local
186 head = policydb->ocontexts[OCON_NODE];
187 for (c = head; c; c = c->next) {
202 head = policydb->ocontexts[OCON_NODE6];
203 for (c = head;
236 ocontext_t *c, *head; local
352 ocontext_t *c, *head; local
[all...]
H A Dports.c148 ocontext_t *c, *head; local
151 head = policydb->ocontexts[OCON_PORT];
152 for (c = head; c != NULL; c = c->next)
168 ocontext_t *c, *head; local
178 head = policydb->ocontexts[OCON_PORT];
179 for (c = head; c; c = c->next) {
206 ocontext_t *c, *head; local
216 head = policydb->ocontexts[OCON_PORT];
217 for (c = head; c; c = c->next) {
283 ocontext_t *c, *head; local
[all...]
/external/lldb/source/Core/
H A DConnectionMachPort.cpp28 mach_msg_header_t head; member in struct:MessageType
272 message.head.msgh_bits = MACH_MSGH_BITS_REMOTE (MACH_MSG_TYPE_MAKE_SEND) |
274 message.head.msgh_size = sizeof(MessageType);
275 message.head.msgh_local_port = MACH_PORT_NULL;
276 message.head.msgh_remote_port = m_port;
291 kern_return_t kret = ::mach_msg (&message.head,
293 message.head.msgh_size,
306 message.head.msgh_size = sizeof(MessageType);
308 kern_return_t kret = ::mach_msg (&message.head,
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_debug_memory.c54 struct list_head head; member in struct:debug_memory_header
139 LIST_ADDTAIL(&hdr->head, &list);
173 LIST_DEL(&hdr->head);
243 LIST_REPLACE(&old_hdr->head, &new_hdr->head);
279 hdr = LIST_ENTRY(struct debug_memory_header, entry, head);
/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/oprofile/libabi/
H A Dopimport.cpp110 struct opd_header * head = local
116 memcpy(head->magic, src + abi.need("offsetof_header_magic"), 4);
119 ext.extract(head->version, src, "sizeof_u32", "offsetof_header_version");
120 ext.extract(head->cpu_type, src, "sizeof_u32", "offsetof_header_cpu_type");
121 ext.extract(head->ctr_event, src, "sizeof_u32", "offsetof_header_ctr_event");
122 ext.extract(head->ctr_um, src, "sizeof_u32", "offsetof_header_ctr_um");
123 ext.extract(head->ctr_count, src, "sizeof_u32", "offsetof_header_ctr_count");
124 ext.extract(head->is_kernel, src, "sizeof_u32", "offsetof_header_is_kernel");
126 head->cpu_speed = 0.0;
127 ext.extract(head
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/Xext/extensions/
H A Dextutil.h56 XExtDisplayInfo *head; /* start of list */ member in struct:_XExtensionInfo
/external/skia/dm/
H A DDM.cpp208 static void append_matching_factories(Registry* head, SkTDArray<typename Registry::Factory>* out) { argument
209 for (const Registry* reg = head; reg != NULL; reg = reg->next()) {
/external/skia/src/images/
H A DSkImageDecoder_wbmp.cpp105 wbmp_head head; local
107 if (!head.init(stream)) {
111 int width = head.fWidth;
112 int height = head.fHeight;
156 wbmp_head head; local
158 if (head.init(stream)) {
165 wbmp_head head; local
166 if (head.init(stream)) {
/external/valgrind/main/coregrind/m_gdbserver/
H A Dserver.h190 struct inferior_list_entry *head; member in struct:inferior_list
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dwps_attr_process.c57 const u8 *head; local
65 head = wpabuf_head(msg);
67 if (head + len != key_wrap_auth - 4) {
73 hmac_sha256(wps->authkey, WPS_AUTHKEY_LEN, head, len, hash);
/external/wpa_supplicant_8/src/wps/
H A Dwps_attr_process.c57 const u8 *head; local
65 head = wpabuf_head(msg);
67 if (head + len != key_wrap_auth - 4) {
73 hmac_sha256(wps->authkey, WPS_AUTHKEY_LEN, head, len, hash);
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dwps_attr_process.c57 const u8 *head; local
65 head = wpabuf_head(msg);
67 if (head + len != key_wrap_auth - 4) {
73 hmac_sha256(wps->authkey, WPS_AUTHKEY_LEN, head, len, hash);
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3commontreenodestream.h251 /// lookAhead[head] is the first symbol of lookahead, LT(1).
253 ANTLR3_UINT32 head; member in struct:ANTLR3_COMMON_TREE_NODE_STREAM_struct
256 /// end of the lookahead buffer so tail could be less than head.
328 ANTLR3_UINT32 head; member in struct:ANTLR3_TREE_WALK_STATE_struct
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DTemplateList.java140 TemplateSubPatternAssociation head =
143 while (null != head)
145 System.out.print("(" + head.getTargetString() + ", "
146 + head.getPattern() + ")");
148 head = head.getNext();
154 TemplateSubPatternAssociation head = m_wildCardPatterns;
158 while (null != head)
160 System.out.print("(" + head.getTargetString() + ", "
161 + head
224 insertAssociationIntoList(TemplateSubPatternAssociation head, TemplateSubPatternAssociation item, boolean isWildCardInsert) argument
726 checkConflicts(TemplateSubPatternAssociation head, XPathContext xctxt, int targetNode, QName mode) argument
[all...]

Completed in 3687 milliseconds

1234567891011>>