/external/gcc-demangle/ |
Android.mk | 19 LOCAL_SRC_FILES := cp-demangle.c 30 LOCAL_SRC_FILES := cp-demangle.c 41 LOCAL_SRC_FILES := cp-demangle.c 52 LOCAL_SRC_FILES := cp-demangle.c
|
/external/javassist/src/main/javassist/ |
CtNewNestedClass.java | 26 CtNewNestedClass(String realName, ClassPool cp, boolean isInterface, 28 super(realName, cp, isInterface, superclass);
|
/external/javassist/src/main/javassist/convert/ |
TransformAccessArrayField.java | 51 public void initialize(ConstPool cp, CtClass clazz, MethodInfo minfo) throws CannotCompileException { 74 pos = replace(cp, iterator, pos, c, getLoadReplacementSignature(c)); 78 pos = replace(cp, iterator, pos, c, getStoreReplacementSignature(c)); 93 ConstPool cp) throws BadBytecode { 125 private int replace(ConstPool cp, CodeIterator iterator, int pos, 148 int mi = cp.addClassInfo(methodClassname); 149 int methodref = cp.addMethodrefInfo(mi, methodName, signature); 154 int index = cp.addClassInfo(castType);
|
/external/mesa3d/src/glx/ |
packrender.h | 172 { GLubyte *cp = (pc+offset); \ 173 int shift = (64-16) - ((int)(cp) >> (64-6)); \ 174 *(int *)cp = (*(int *)cp & ~(0xffff << shift)) | ((a & 0xffff) << shift); } 177 { GLubyte *cp = (pc+offset); \ 178 int shift = (64-32) - ((int)(cp) >> (64-6)); \ 179 *(int *)cp = (*(int *)cp & ~(0xffffffff << shift)) | ((a & 0xffffffff) << shift); }
|
packsingle.h | 98 { GLubyte *cp = (pc+offset); \ 99 int shift = (64-16) - ((int)(cp) >> (64-6)); \ 100 *(int *)cp = (*(int *)cp & ~(0xffff << shift)) | ((a & 0xffff) << shift); } 103 { GLubyte *cp = (pc+offset); \ 104 int shift = (64-32) - ((int)(cp) >> (64-6)); \ 105 *(int *)cp = (*(int *)cp & ~(0xffffffff << shift)) | ((a & 0xffffffff) << shift); }
|
/external/openssh/ |
misc.c | 379 * Returns *cp if parsing succeeds. 380 * *cp is set to the start of the next delimiter, if one was found. 381 * If this is the last field, *cp is set to NULL. 384 hpdelim(char **cp) 388 if (cp == NULL || *cp == NULL) 391 old = s = *cp; 398 s = *cp + strlen(*cp); /* skip to end (see first case below) */ 402 *cp = NULL; /* no more fields* 456 char *cp; local 483 char *cp; local [all...] |
compat.c | 213 char *cp, *tmp; local 220 while ((cp = strsep(&tmp, ",")) != NULL) { 221 if (strncmp(cp, "aes", 3) != 0) { 224 buffer_append(&b, cp, strlen(cp));
|
/external/openssh/openbsd-compat/ |
port-aix.c | 78 char *cp; local 81 cp = xmalloc(len); 83 i = snprintf(cp, len, "LOGNAME=%s%cNAME=%s%c", pw->pw_name, '\0', 85 if (usrinfo(SETUINFO, cp, i) == -1) 89 xfree(cp); 436 char *cp, *grplist, *grp; local 443 if ((cp = grplist = getgrset(user)) == NULL) 468 free(cp);
|
/external/openssh/regress/ |
addrmatch.sh | 21 cp $OBJ/sshd_proxy_bak $OBJ/sshd_proxy 44 cp $OBJ/sshd_proxy_bak $OBJ/sshd_proxy
|
putty-kex.sh | 16 cp ${OBJ}/.putty/sessions/localhost_proxy \
|
/external/qemu/ |
oslib-win32.c | 84 int inet_aton(const char *cp, struct in_addr *ia) 86 uint32_t addr = inet_addr(cp);
|
/external/tcpdump/ |
print-mobile.c | 73 const u_char *cp = bp +8 ; local 90 cp +=4 ;
|
print-atalk.c | 450 print_cstring(register const char *cp, register const u_char *ep) 454 if (cp >= (const char *)ep) { 458 length = *cp++; 466 if (cp >= (const char *)ep) { 470 putchar(*cp++); 472 return (cp); 508 register const char *cp = (const char *)tp + nbpTupleSize; local 514 if ((cp = print_cstring(cp, ep)) != NULL) { 517 if ((cp = print_cstring(cp, ep)) != NULL) [all...] |
/frameworks/base/native/ |
copy-to-ndk.sh | 37 cp $src $NDK_PLATFORMS/$CURR_PLATFORM/include/android/$i 46 cp $SRC_LIB_ANDROID $DST_LIB_ANDROID
|
/frameworks/base/tests/CoreTests/ |
run_core_test.sh | 4 -Xbootclasspath:$bpath -cp /data/app/android.core.apk \
|
/hardware/ti/wlan/mac80211/ti-utils/ |
Makefile | 24 @cp -f ./calibrator $(NFSROOT)/home/root 25 @cp -f ./scripts/go.sh $(NFSROOT)/home/root
|
/ndk/build/tools/ |
build-analyzer.sh | 105 cp -p "$LICENSE_FILE" "$NDK_DIR/$SCAN_BUILD_SUBDIR" 110 cp -p "$LICENSE_FILE" "$NDK_DIR/$SCAN_VIEW_SUBDIR"
|
/ndk/ |
remove-windows-symlink.sh | 26 cp -a "$LINK" "$FILE")
|
/ndk/sources/host-tools/nawk-20071023/ |
parse.c | 187 Cell *cp; local 190 cp = (Cell *) (p->narg[0]); 191 if (isfcn(cp)) 192 SYNTAX( "%s is a function, not an array", cp->nval ); 193 else if (!isarr(cp)) { 194 xfree(cp->sval); 195 cp->sval = (char *) makesymtab(NSYMTAB); 196 cp->tval = ARR;
|
/system/core/toolbox/ |
Android.mk | 80 cp \ 87 cp/cp.c cp/utils.c \
|
/external/wpa_supplicant_8/src/crypto/ |
md4-internal.c | 69 #define PUT_64BIT_LE(cp, value) do { \ 70 (cp)[7] = (value) >> 56; \ 71 (cp)[6] = (value) >> 48; \ 72 (cp)[5] = (value) >> 40; \ 73 (cp)[4] = (value) >> 32; \ 74 (cp)[3] = (value) >> 24; \ 75 (cp)[2] = (value) >> 16; \ 76 (cp)[1] = (value) >> 8; \ 77 (cp)[0] = (value); } while (0) 79 #define PUT_32BIT_LE(cp, value) do { [all...] |
/libcore/luni/src/test/java/tests/security/cert/ |
CertPathValidatorExceptionTest.java | 274 CertPath cp = mcp.get("X.509"); local 280 new CertPathValidatorException(msgs[i], tCause, cp, indx[j]); 302 CertPath cp = mcp.get("X.509"); local 305 tE = new CertPathValidatorException(msgs[i], tCause, cp, -1); 322 "getCertPath() must return ".concat(cp.toString()), tE 323 .getCertPath(), cp); 371 CertPath cp = mcp.get("X.509"); local 374 tE = new CertPathValidatorException(msgs[i], tCause, cp, -1); 378 "getCertPath() must return ".concat(cp.toString()), tE 379 .getCertPath(), cp); 418 CertPath cp = mcp.get("X.509"); local [all...] |
/build/tools/zipalign/ |
ZipAlign.cpp | 212 const char* cp = argv[0] +1; local 214 while (*cp != '\0') { 215 switch (*cp) { 226 fprintf(stderr, "ERROR: unknown flag -%c\n", *cp); 231 cp++;
|
/external/e2fsprogs/lib/ext2fs/ |
finddev.c | 82 char path[1024], *cp; local 103 cp = malloc(strlen(path)+1); 104 if (!cp) { 108 strcpy(cp, path); 109 *ret_path = cp;
|
/external/javassist/src/main/javassist/expr/ |
NewExpr.java | 43 private int getNameAndType(ConstPool cp) { 49 return cp.getInterfaceMethodrefNameAndType(index); 51 return cp.getMethodrefNameAndType(index); 113 ConstPool cp = getConstPool(); local 115 String desc = cp.getMethodrefType(index); 133 ConstPool cp = getConstPool(); 135 String desc = cp.getMethodrefType(index); 183 ClassPool cp = thisClass.getClassPool(); local 186 CtClass[] params = Descriptor.getParameterTypes(signature, cp); 187 CtClass newType = cp.get(newTypeName) [all...] |