HomeSort by relevance Sort by last modified time
    Searched defs:use (Results 51 - 75 of 161) sorted by null

1 23 4 5 6 7

  /external/clang/test/Analysis/inlining/
path-notes.cpp 7 static void use(int *p) { function in class:Foo
13 use(p);
15 // expected-note@-2 {{Calling 'Foo::use'}}
737 // CHECK-NEXT: <string>Calling &apos;Foo::use&apos;</string>
739 // CHECK-NEXT: <string>Calling &apos;Foo::use&apos;</string>
    [all...]
  /external/clang/test/Analysis/
reference.cpp 166 extern void use(int &ref);
167 use(*ptr);
202 void use(int &x) { function
207 use(*maybeNull());
  /external/clang/test/CodeGenCXX/
mangle-ms-templates.cpp 119 void use() { function
mangle-template.cpp 162 void use() { function in namespace:test12
  /external/iproute2/ip/
xfrm.h 79 int use; member in struct:xfrm_filter
  /external/libxml2/
HTMLtree.c 406 unsigned int use; local
429 use = buf->use;
432 ret = buf->use - use;
592 *size = buf->conv->use;
595 *size = buf->buffer->use;
parserInternals.c 253 if (in->cur > in->base + in->buf->buffer->use) {
255 "xmlParserInput: cur > base + use problem\n");
257 xmlGenericError(xmlGenericErrorContext,"buffer %x : content %x, cur %d, use %d, size %d\n",
259 in->buf->buffer->use, in->buf->buffer->size);
311 in->end = &in->buf->buffer->content[in->buf->buffer->use];
346 if (in->buf->buffer->use > (unsigned int) indx + INPUT_CHUNK) {
359 * block, but we use it really as an integer to do some
371 in->end = &in->buf->buffer->content[in->buf->buffer->use];
412 in->end = &in->buf->buffer->content[in->buf->buffer->use];
417 if (in->buf->buffer->use > INPUT_CHUNK)
1194 unsigned int use; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_vec4.cpp 7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
272 int *use = ralloc_array(mem_ctx, int, virtual_grf_count); local
281 use[i] = -1;
295 /* Patches up the use of vars marked for being live across
299 if (use[i] == loop_start) {
300 use[i] = ip;
310 use[reg] = ip;
313 use[reg] = loop_start;
339 this->virtual_grf_use = use;
    [all...]
  /system/extras/showslab/
showslab.c 28 unsigned long use; /* percent full: total / active */ member in struct:slab_info
129 p->use = 100 * p->nr_active_objs / p->nr_objs;
132 p->use = 0;
239 BUILD_SORT_FUNC(use)
334 "OBJS", "ACTIVE", "USE", "OBJ SIZE", "SLABS",
340 p->nr_objs, p->nr_active_objs, p->use,
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGUseElement.cpp 94 RefPtr<SVGUseElement> use = adoptRef(new SVGUseElement(tagName, document, wasInsertedByParser)); local
95 use->ensureUserAgentShadowRoot();
96 return use.release();
324 // Spec: "Any 'svg', 'symbol', 'g', graphics element or other 'use' is potentially a template object that can be re-used
325 // (i.e., "instanced") in the SVG document via a 'use' element."
328 // We must also allow the shadow roots of other use elements.
429 // Do not build the shadow/instance tree for <use> elements living in a shadow tree.
442 // to alter the tree for correct "use-on-symbol", "use-on-svg" support.
446 // Spec: If the 'use' element references a simple graphics element such as a 'rect', then there is only
707 SVGUseElement* use = toSVGUseElement(element); local
    [all...]
  /external/chromium_org/third_party/libxml/src/
parserInternals.c 253 if (in->cur > in->base + in->buf->buffer->use) {
255 "xmlParserInput: cur > base + use problem\n");
257 xmlGenericError(xmlGenericErrorContext,"buffer %x : content %x, cur %d, use %d, size %d\n",
259 in->buf->buffer->use, in->buf->buffer->size);
311 in->end = &in->buf->buffer->content[in->buf->buffer->use];
346 if (in->buf->buffer->use > (unsigned int) indx + INPUT_CHUNK) {
359 * block, but we use it really as an integer to do some
371 in->end = &in->buf->buffer->content[in->buf->buffer->use];
412 in->end = &in->buf->buffer->content[in->buf->buffer->use];
417 if (in->buf->buffer->use > INPUT_CHUNK)
1194 unsigned int use; local
    [all...]
xmlsave.c 400 * Use the options
2012 unsigned int use; local
    [all...]
  /external/kernel-headers/original/linux/netfilter_ipv4/
ip_conntrack.h 151 atomic_t use; member in struct:ip_conntrack_expect
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
prog_optimize.c 10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
490 * Try to remove use of extraneous MOV instructions, to free them up for dead
499 printf("Optimize: Begin remove extra move use\n");
527 * rewritten or we get into some flow-control, eliminating the use of
590 printf("Optimize: End remove extra move use.\n");
614 enum inst_use use; local
629 use = find_next_use(prog, i+1, index, mask);
630 if (use == WRITE || use == END
    [all...]
  /external/clang/test/SemaCXX/
conversion-function.cpp 12 return operator float(); // expected-error{{use of undeclared 'operator float'}}
172 (&operator bool())(); // expected-error {{must use a typedef to declare a conversion to 'bool (&)()'}}
177 *operator int(); // expected-error {{must use a typedef to declare a conversion to 'int *'}}
270 void use() { function in namespace:PR7934
warn-unused-private-field.cpp 61 void use() { function in class:FriendClass
128 int *use = &by_reference_; local
  /external/mesa3d/src/mesa/program/
prog_optimize.c 10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
490 * Try to remove use of extraneous MOV instructions, to free them up for dead
499 printf("Optimize: Begin remove extra move use\n");
527 * rewritten or we get into some flow-control, eliminating the use of
590 printf("Optimize: End remove extra move use.\n");
614 enum inst_use use; local
629 use = find_next_use(prog, i+1, index, mask);
630 if (use == WRITE || use == END
    [all...]
  /external/qemu/distrib/libpng-1.2.19/
pngvcrd.c 7 * For conditions of distribution and use, see copyright notice in png.h
25 * [Copy 6 bytes per pixel, not 4, and use stride of 6, not 4, in the
111 /* Use this routine for x86 platform - uses faster MMX routine if machine
252 else /* mmx not supported - use modified C routine */
396 else /* mmx _not supported - Use modified C routine */
502 else /* mmx not supported - use modified C routine */
784 else /* mmx not supported - use modified C routine */
948 else /* mmx _not supported - Use modified C routine */
1926 __int64 use; member in union:uAll
    [all...]
  /external/qemu/hw/
smbios.h 105 uint8_t use; member in struct:smbios_type_16
  /external/tcpdump/
print-icmp6.c 5 * Redistribution and use in source and binary forms, with or without
11 * features or use of this software display the following acknowledgement:
268 /* display cosmetics: print the packet length for printer that use the vflag now */
1157 struct rr_pco_use *use; local
1238 use = (struct rr_pco_use *)cp;
1239 cp = (const char *)(use + 1);
1241 TCHECK(use->rpu_prefix);
1247 printf("use("); /*)*/
1248 if (use->rpu_flags)
    [all...]
  /ndk/sources/host-tools/nawk-20071023/
awk.h 5 Permission to use, copy, modify, and distribute this software and
19 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
21 ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
224 int use; member in struct:fa
b.c 5 Permission to use, copy, modify, and distribute this software and
19 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
21 ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
81 int i, use, nuse; local
98 fatab[i]->use = now++;
104 fatab[nfatab]->use = now++;
108 use = fatab[0]->use; /* replace least-recently used */
111 if (fatab[i]->use < use) {
    [all...]
  /system/core/libnetutils/
ifc_utils.c 5 * you may not use this file except in compliance with the License.
652 int flags, refcnt, use, metric, mtu, win, irtt; local
668 ifname, &dest, &gway, &flags, &refcnt, &use, &metric, &mask,
705 int flags, refcnt, use, metric, mtu, win, irtt; local
721 name, &dest, &gway, &flags, &refcnt, &use, &metric, &mask,
  /dalvik/dx/src/com/android/dx/ssa/
EscapeAnalysis.java 5 * you may not use this file except in compliance with the License.
334 for (SsaInsn use : useList) {
335 Rop useOpcode = use.getOpcode();
339 processPhiUse(use, escSet, regWorklist);
342 processUse(def, use, escSet, regWorklist);
353 * @param use {@code non-null;} phi use being processed
358 private void processPhiUse(SsaInsn use, EscapeSet escSet,
360 int setIndex = findSetIndex(use.getResult());
376 escSet.regSet.set(use.getResult().getReg())
    [all...]
  /external/clang/lib/CodeGen/
CGCleanup.cpp 531 llvm::Use &use = i.getUse(); local
534 use.set(unreachableBB);
537 llvm::SwitchInst *si = cast<llvm::SwitchInst>(use.getUser());
    [all...]

Completed in 658 milliseconds

1 23 4 5 6 7