HomeSort by relevance Sort by last modified time
    Searched refs:cp (Results 76 - 100 of 2499) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.observers/
op_arrow.runtime.fail.cpp 25 std::unique_ptr<V[]> const& cp = p; member in class:std
30 cp->member; // expected-error {{member reference type 'const std::unique_ptr<V []>' is not a pointer}}
  /external/fio/oslib/
inet_aton.h 6 int inet_aton(const char *cp, struct in_addr *inp);
  /external/javassist/src/main/javassist/bytecode/
DeprecatedAttribute.java 31 DeprecatedAttribute(ConstPool cp, int n, DataInputStream in)
34 super(cp, n, in);
40 * @param cp a constant pool table.
42 public DeprecatedAttribute(ConstPool cp) {
43 super(cp, tag, new byte[0]);
SyntheticAttribute.java 31 SyntheticAttribute(ConstPool cp, int n, DataInputStream in)
34 super(cp, n, in);
40 * @param cp a constant pool table.
42 public SyntheticAttribute(ConstPool cp) {
43 super(cp, tag, new byte[0]);
EnclosingMethodAttribute.java 31 EnclosingMethodAttribute(ConstPool cp, int n, DataInputStream in)
34 super(cp, n, in);
40 * @param cp a constant pool table.
45 public EnclosingMethodAttribute(ConstPool cp, String className,
47 super(cp, tag);
48 int ci = cp.addClassInfo(className);
49 int ni = cp.addNameAndTypeInfo(methodName, methodDesc);
62 * @param cp a constant pool table.
65 public EnclosingMethodAttribute(ConstPool cp, String className) {
66 super(cp, tag)
102 ConstPool cp = getConstPool(); local
112 ConstPool cp = getConstPool(); local
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/lib/
dostriptest 6 cp $1 $x
8 cp $2 $y
  /bionic/libc/upstream-freebsd/lib/libc/string/
wcscpy.c 42 wchar_t *cp; local
44 cp = s1;
45 while ((*cp++ = *s2++) != L'\0')
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
ns_ntoa.c 52 register char *cp; local
59 cp = spectHex(obuf);
60 cp2 = cp + 1;
64 sprintf(cp, ".0");
65 cp += 2;
68 sprintf(cp, ".%x", *up++);
70 while (*cp) cp++;
71 sprintf(cp, "%02x", *up++);
73 cp = spectHex(cp2);
    [all...]
res_debug.c 295 p_cdnname(const u_char *cp, const u_char *msg, int len, FILE *file) {
299 if ((n = dn_expand(msg, msg + len, cp, name, sizeof name)) < 0)
305 return (cp + n);
309 p_cdname(const u_char *cp, const u_char *msg, FILE *file) {
310 return (p_cdnname(cp, msg, PACKETSZ, file));
318 const u_char *cp,
327 if ((n = dn_expand(msg, cp + msglen, cp, name, namelen)) < 0)
336 return (cp + n);
342 p_fqname(const u_char *cp, const u_char *msg, FILE *file) {
593 char *cp; local
635 char *cp; local
735 const char *cp, *maxcp; local
848 const u_char *cp = binary; local
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
fgetln.c 65 char *cp; local
68 cp = __fgetstr(fp, lenp, '\n');
70 return cp;
  /external/annotation-tools/asmx/src/org/objectweb/asm/optimizer/
FieldConstantsCollector.java 47 private ConstantPool cp; field in class:FieldConstantsCollector
49 public FieldConstantsCollector(final FieldVisitor fv, final ConstantPool cp)
52 this.cp = cp;
59 cp.newUTF8(desc);
61 cp.newUTF8("RuntimeVisibleAnnotations");
63 cp.newUTF8("RuntimeInvisibleAnnotations");
66 fv.visitAnnotation(desc, visible), cp);
74 cp.newUTF8(desc);
76 cp.newUTF8("RuntimeVisibleTypeAnnotations")
    [all...]
MethodConstantsCollector.java 46 private ConstantPool cp; field in class:MethodConstantsCollector
50 final ConstantPool cp)
53 this.cp = cp;
57 cp.newUTF8("AnnotationDefault");
58 return new AnnotationConstantsCollector(mv.visitAnnotationDefault(), cp);
65 cp.newUTF8(desc);
67 cp.newUTF8("RuntimeVisibleAnnotations");
69 cp.newUTF8("RuntimeInvisibleAnnotations");
72 visible), cp);
    [all...]
AnnotationConstantsCollector.java 45 private final ConstantPool cp; field in class:AnnotationConstantsCollector
49 final ConstantPool cp)
52 this.cp = cp;
58 cp.newUTF8(name);
61 cp.newInteger(((Byte) value).byteValue());
63 cp.newInteger(((Boolean) value).booleanValue() ? 1 : 0);
65 cp.newInteger(((Character) value).charValue());
67 cp.newInteger(((Short) value).shortValue());
69 cp.newUTF8(((Type) value).getDescriptor())
    [all...]
  /external/compiler-rt/test/BlocksRuntime/
cast.c 26 char *cp; local
30 cp = (char *)aBlock;
33 aBlock = (void (^)(void))cp;
  /external/curl/lib/
curl_path.c 115 const char *cp = *cpp, *end; local
122 if(!*cp) {
128 cp += strspn(cp, WHITESPACE);
130 fullPathLength = strlen(cp) + strlen(homedir) + 2;
136 if(*cp == '\"' || *cp == '\'') {
137 quot = *cp++;
140 for(i = j = 0; i <= strlen(cp); i++) {
141 if(cp[i] == quot) { /* Found quote *
    [all...]
  /external/ltp/testcases/kernel/mem/shmt/
shmt06.c 67 char *cp = NULL; local
96 cp = shmat(shmid, NULL, 0);
98 if (cp == (char *)-1) {
114 *cp = 'A';
115 *(cp + 1) = 'B';
116 *(cp + 2) = 'C';
132 if (shmdt(cp) < 0) {
147 char *cp; local
159 cp = shmat(shmid, NULL, 0);
161 if (cp == (char *)-1)
    [all...]
shmt02.c 59 char *cp; local
78 cp = shmat(shmid, NULL, 0);
80 if (cp == (char *)-1) {
88 *cp = '1';
89 *(cp + 1) = '2';
97 if (*cp != '1' || *(cp + 1) != '2') {
  /external/valgrind/coregrind/m_initimg/
initimg-pathscan.c 57 HChar *cp, *entry; local
64 entry = cp = colsep;
67 end = (*cp == '\0');
69 if (*cp == ':' || *cp == '\0') {
70 HChar save = *cp;
72 *cp = '\0';
74 *cp = save;
77 *cp = save;
78 entry = cp+1
    [all...]
  /external/tcpdump/
print-ip6.c 50 const u_char *cp; local
59 cp = (const u_char *)ip6;
64 while (cp < ndo->ndo_snapend) {
65 cp += advance;
79 ND_TCHECK2(*cp, 2);
80 advance = (int)((*(cp + 1) + 1) << 3);
81 nh = *cp;
90 ND_TCHECK2(*cp, 1);
92 nh = *cp;
99 dp = (const struct ip6_rthdr *)cp;
220 register const u_char *cp; local
    [all...]
  /external/valgrind/auxprogs/
update-demangler 50 cp ../gcc-$old_gcc_revision/include/ansidecl.h .
51 cp ../gcc-$old_gcc_revision/include/demangle.h .
52 cp ../gcc-$old_gcc_revision/include/dyn-string.h .
53 cp ../gcc-$old_gcc_revision/include/safe-ctype.h .
54 cp ../gcc-$old_gcc_revision/libiberty/cp-demangle.c .
55 cp ../gcc-$old_gcc_revision/libiberty/cp-demangle.h .
56 cp ../gcc-$old_gcc_revision/libiberty/cplus-dem.c .
57 cp ../gcc-$old_gcc_revision/libiberty/dyn-string.c
    [all...]
  /system/core/logd/
LogKlog.cpp 300 const char* cp = nullptr; local
302 cp = now.strptime(buf, "[ %s.%q]"); // can index beyond buffer bounds
303 if (cp && (cp > &buf[len - 1])) cp = nullptr;
305 if (cp) {
306 len -= cp - buf;
307 if ((len > 0) && isspace(*cp)) {
308 ++cp;
311 buf = cp;
371 const char* cp = buf; local
417 const char* cp = buf; local
437 const char* cp = android::strnstr(buf, len, suspendStr); local
626 const char* cp; local
    [all...]
  /external/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/
UnicodeSetPerf.java 52 for (int cp = it.codepoint; cp <= it.codepointEnd; ++cp) {
53 us.add(cp);
72 for (int cp = it.codepoint; cp <= it.codepointEnd; ++cp) {
73 hs.add(new Integer(cp));
92 for (int cp = 0; cp <= 0x10FFFF; ++cp)
    [all...]
  /external/javassist/src/main/javassist/bytecode/annotation/
ClassMemberValue.java 39 public ClassMemberValue(int index, ConstPool cp) {
40 super('c', cp);
49 public ClassMemberValue(String className, ConstPool cp) {
50 super('c', cp);
58 public ClassMemberValue(ConstPool cp) {
59 super('c', cp);
63 Object getValue(ClassLoader cl, ClassPool cp, Method m)
98 String v = cp.getUtf8Info(valueIndex);
109 valueIndex = cp.addUtf8Info(setTo);
123 writer.classInfoIndex(cp.getUtf8Info(valueIndex))
    [all...]
EnumMemberValue.java 43 public EnumMemberValue(int type, int value, ConstPool cp) {
44 super('e', cp);
53 public EnumMemberValue(ConstPool cp) {
54 super('e', cp);
58 Object getValue(ClassLoader cl, ClassPool cp, Method m)
82 return Descriptor.toClassName(cp.getUtf8Info(typeIndex));
91 typeIndex = cp.addUtf8Info(Descriptor.of(typename));
98 return cp.getUtf8Info(valueIndex);
105 valueIndex = cp.addUtf8Info(name);
116 writer.enumConstValue(cp.getUtf8Info(typeIndex), getValue())
    [all...]
  /external/e2fsprogs/resize/
test_extent.c 23 char *cp, *cmd, *arg1, *arg2; local
44 cp = strchr(buf, '\n');
45 if (cp)
46 *cp = '\0';
54 cp = strchr(buf, ' ');
55 if (cp) {
56 *cp++ = '\0';
57 arg1 = cp;
60 cp = strchr(cp, ' ');
    [all...]

Completed in 477 milliseconds

1 2 34 5 6 7 8 91011>>