/external/clang/test/Sema/ |
transparent-union.c | 4 float *fp; member in union:__anon16939 11 void g(int *ip, float *fp, char *cp) { 13 f(fp);
|
/external/libppp/src/ |
ipv6cp.h | 59 #define fsm2ipv6cp(fp) (fp->proto == PROTO_IPV6CP ? (struct ipv6cp *)fp : NULL)
|
/external/libvpx/libvpx/nestegg/test/ |
test.c | 18 stdio_read(void * p, size_t length, void * fp) 22 r = fread(p, length, 1, fp); 23 if (r == 0 && feof(fp)) 29 stdio_seek(int64_t offset, int whence, void * fp) 31 return fseek(fp, offset, whence); 35 stdio_tell(void * fp) 37 return ftell(fp); 77 FILE * fp; local 98 fp = fopen(argv[1], "rb"); 99 if (!fp) [all...] |
/external/mesa3d/src/mesa/state_tracker/ |
st_debug.c | 97 tgsi_dump( st->fp->variants[0].tgsi.tokens, 0 ); 98 if (st->fp->Base.Base.Parameters) 99 _mesa_print_parameter_list(st->fp->Base.Base.Parameters);
|
/external/openssl/crypto/pem/ |
pem_pk8.c | 183 int i2d_PKCS8PrivateKey_fp(FILE *fp, EVP_PKEY *x, const EVP_CIPHER *enc, 187 return do_pk8pkey_fp(fp, x, 1, -1, enc, kstr, klen, cb, u); 190 int i2d_PKCS8PrivateKey_nid_fp(FILE *fp, EVP_PKEY *x, int nid, 194 return do_pk8pkey_fp(fp, x, 1, nid, NULL, kstr, klen, cb, u); 197 int PEM_write_PKCS8PrivateKey_nid(FILE *fp, EVP_PKEY *x, int nid, 201 return do_pk8pkey_fp(fp, x, 0, nid, NULL, kstr, klen, cb, u); 204 int PEM_write_PKCS8PrivateKey(FILE *fp, EVP_PKEY *x, const EVP_CIPHER *enc, 207 return do_pk8pkey_fp(fp, x, 0, -1, enc, kstr, klen, cb, u); 210 static int do_pk8pkey_fp(FILE *fp, EVP_PKEY *x, int isder, int nid, const EVP_CIPHER *enc, 216 if(!(bp = BIO_new_fp(fp, BIO_NOCLOSE))) [all...] |
pem_all.c | 186 RSA *PEM_read_RSAPrivateKey(FILE *fp, RSA **rsa, pem_password_cb *cb, 190 pktmp = PEM_read_PrivateKey(fp, NULL, cb, u); 221 int PEM_write_RSAPrivateKey(FILE *fp, RSA *x, const EVP_CIPHER *enc, 235 ret = PEM_write_PrivateKey(fp, k, enc, kstr, klen, cb, u); 241 PEM_STRING_RSA,fp,x,enc,kstr,klen,cb,u); 305 int PEM_write_DSAPrivateKey(FILE *fp, DSA *x, const EVP_CIPHER *enc, 317 ret = PEM_write_PrivateKey(fp, k, enc, kstr, klen, cb, u); 323 PEM_STRING_DSA,fp,x,enc,kstr,klen,cb,u); 337 DSA *PEM_read_DSAPrivateKey(FILE *fp, DSA **dsa, pem_password_cb *cb, 341 pktmp = PEM_read_PrivateKey(fp, NULL, cb, u) [all...] |
/frameworks/base/graphics/java/android/renderscript/ |
ScriptIntrinsicConvolve3x3.java | 95 FieldPacker fp = new FieldPacker(9*4); local 98 fp.addF32(mValues[ct]); 100 setVar(0, fp);
|
ScriptIntrinsicConvolve5x5.java | 96 FieldPacker fp = new FieldPacker(25*4); local 99 fp.addF32(mValues[ct]); 101 setVar(0, fp);
|
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/ |
ScriptIntrinsicConvolve3x3.java | 90 FieldPacker fp = new FieldPacker(9*4); local 93 fp.addF32(mValues[ct]); 95 setVar(0, fp);
|
ScriptIntrinsicConvolve5x5.java | 86 FieldPacker fp = new FieldPacker(25*4); local 89 fp.addF32(mValues[ct]); 91 setVar(0, fp);
|
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
pythonrun.h | 51 #define PyParser_SimpleParseFile(FP, S, B) \ 52 PyParser_SimpleParseFileFlags(FP, S, B, 0) 85 #define PyRun_AnyFile(fp, name) PyRun_AnyFileExFlags(fp, name, 0, NULL) 86 #define PyRun_AnyFileEx(fp, name, closeit) \ 87 PyRun_AnyFileExFlags(fp, name, closeit, NULL) 88 #define PyRun_AnyFileFlags(fp, name, flags) \ 89 PyRun_AnyFileExFlags(fp, name, 0, flags) 95 #define PyRun_File(fp, p, s, g, l) \ 96 PyRun_FileExFlags(fp, p, s, g, l, 0, NULL [all...] |
/prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
pythonrun.h | 51 #define PyParser_SimpleParseFile(FP, S, B) \ 52 PyParser_SimpleParseFileFlags(FP, S, B, 0) 85 #define PyRun_AnyFile(fp, name) PyRun_AnyFileExFlags(fp, name, 0, NULL) 86 #define PyRun_AnyFileEx(fp, name, closeit) \ 87 PyRun_AnyFileExFlags(fp, name, closeit, NULL) 88 #define PyRun_AnyFileFlags(fp, name, flags) \ 89 PyRun_AnyFileExFlags(fp, name, 0, flags) 95 #define PyRun_File(fp, p, s, g, l) \ 96 PyRun_FileExFlags(fp, p, s, g, l, 0, NULL [all...] |
/external/v8/src/ |
frames.cc | 66 : limit_(frame->fp()), handler_(handler) { 115 bool use_top, Address fp, Address sp) 120 fp_(use_top ? NULL : fp), sp_(sp), 123 if (use_top || fp != NULL) { 173 state.fp = fp_; 244 bool SafeStackFrameIterator::ExitFrameValidator::IsValidFP(Address fp) { 245 if (!validator_.IsValid(fp)) return false; 246 Address sp = ExitFrame::ComputeStackPointer(fp); 249 ExitFrame::FillState(fp, sp, &state); 273 Address fp, Address sp, Address low_bound, Address high_bound) 291 Address fp = Isolate::c_entry_fp(top); local 490 Address fp = Memory::Address_at(this->fp() + offset); local 682 Address fp = caller_fp(); local [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/bn/asm/ |
mips3-mont.pl | 44 $fp="t8"; 64 move $fp,sp 65 .frame $fp,64,ra 71 PTR_ADD sp,$fp,64 85 sd s0,0($fp) 86 sd s1,8($fp) 87 sd s2,16($fp) 88 sd s3,24($fp) 89 sd s4,32($fp) 90 sd s5,40($fp) [all...] |
/external/openssl/crypto/bn/asm/ |
mips3-mont.pl | 44 $fp="t8"; 64 move $fp,sp 65 .frame $fp,64,ra 71 PTR_ADD sp,$fp,64 85 sd s0,0($fp) 86 sd s1,8($fp) 87 sd s2,16($fp) 88 sd s3,24($fp) 89 sd s4,32($fp) 90 sd s5,40($fp) [all...] |
/packages/inputmethods/PinyinIME/jni/share/ |
dicttrie.cpp | 112 bool DictTrie::save_dict(FILE *fp) { 113 if (NULL == fp) 116 if (fwrite(&lma_node_num_le0_, sizeof(size_t), 1, fp) != 1) 119 if (fwrite(&lma_node_num_ge1_, sizeof(size_t), 1, fp) != 1) 122 if (fwrite(&lma_idx_buf_len_, sizeof(size_t), 1, fp) != 1) 125 if (fwrite(&top_lmas_num_, sizeof(size_t), 1, fp) != 1) 128 if (fwrite(root_, sizeof(LmaNodeLE0), lma_node_num_le0_, fp) 132 if (fwrite(nodes_ge1_, sizeof(LmaNodeGE1), lma_node_num_ge1_, fp) 136 if (fwrite(lma_idx_buf_, sizeof(unsigned char), lma_idx_buf_len_, fp) != 153 FILE *fp = fopen(filename, "wb") local [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/pem/ |
pem_all.c | 186 RSA *PEM_read_RSAPrivateKey(FILE *fp, RSA **rsa, pem_password_cb *cb, 190 pktmp = PEM_read_PrivateKey(fp, NULL, cb, u); 221 int PEM_write_RSAPrivateKey(FILE *fp, RSA *x, const EVP_CIPHER *enc, 235 ret = PEM_write_PrivateKey(fp, k, enc, kstr, klen, cb, u); 241 PEM_STRING_RSA,fp,x,enc,kstr,klen,cb,u); 305 int PEM_write_DSAPrivateKey(FILE *fp, DSA *x, const EVP_CIPHER *enc, 317 ret = PEM_write_PrivateKey(fp, k, enc, kstr, klen, cb, u); 323 PEM_STRING_DSA,fp,x,enc,kstr,klen,cb,u); 337 DSA *PEM_read_DSAPrivateKey(FILE *fp, DSA **dsa, pem_password_cb *cb, 341 pktmp = PEM_read_PrivateKey(fp, NULL, cb, u) [all...] |
/external/iproute2/tc/ |
tc_class.c | 154 FILE *fp = (FILE*)arg; local 185 fprintf(fp, "deleted "); 194 fprintf(fp, "class %s %s ", rta_getattr_str(tb[TCA_KIND]), abuf); 197 fprintf(fp, "dev %s ", ll_index_to_name(t->tcm_ifindex)); 200 fprintf(fp, "root "); 206 fprintf(fp, "parent %s ", abuf); 209 fprintf(fp, "leaf %x: ", t->tcm_info>>16); 213 q->print_copt(q, fp, tb[TCA_OPTIONS]); 215 fprintf(fp, "[cannot parse class parameters]"); 217 fprintf(fp, "\n") [all...] |
tc_filter.c | 188 FILE *fp = (FILE*)arg; local 214 fprintf(fp, "deleted "); 216 fprintf(fp, "filter "); 218 fprintf(fp, "dev %s ", ll_index_to_name(t->tcm_ifindex)); 222 fprintf(fp, "root "); 225 fprintf(fp, "parent %s ", abuf); 234 fprintf(fp, "protocol %s ", 240 fprintf(fp, "pref %u ", prio); 243 fprintf(fp, "%s ", rta_getattr_str(tb[TCA_KIND])); 247 q->print_fopt(q, fp, tb[TCA_OPTIONS], t->tcm_handle) [all...] |
/dalvik/vm/arch/mips/ |
CallO32.S | 67 * R - return type enumeration, really only important for hardware FP 96 * |__________| saved fp 139 /* save fp and ra to stack */ 143 sw $fp,16($sp) 146 move $fp,$sp 200 * $fp: sp top for args 203 beq $t1,$fp,.Largs_done 268 move $sp,$fp 270 lw $fp,16($sp)
|
/dalvik/vm/interp/ |
Stack.h | 48 +-----------------+ <-- curFrame: FP for cur function 57 +-----------------+ <-- frame ptr (FP) for previous function 82 e.g. register v2 is fp[2]. 64-bit quantities are stored in two adjacent 117 * saved PC and FP. At some point we'd like to have interpreted and 169 INLINE bool dvmIsBreakFrame(const u4* fp) 171 return SAVEAREA_FROM_FP(fp)->method == NULL; 234 int dvmComputeExactFrameDepth(const void* fp); 235 int dvmComputeVagueFrameDepth(Thread* thread, const void* fp); 248 * Get the caller's caller's class. Pass in the current fp. 256 * Get the caller's caller's caller's class. Pass in the current fp [all...] |
/external/linux-tools-perf/util/ |
cgroup.c | 14 FILE *fp; local 19 fp = fopen("/proc/mounts", "r"); 20 if (!fp) 28 while (fscanf(fp, "%*s %"STR(MAX_PATH)"s %"STR(MAX_PATH)"s %" 47 fclose(fp);
|
debugfs.c | 47 FILE *fp; local 63 fp = fopen("/proc/mounts", "r"); 64 if (fp == NULL) 67 while (fscanf(fp, "%*s %" 74 fclose(fp);
|
/hardware/qcom/display/msm8974/libqdutils/ |
mdp_version.cpp | 118 FILE* fp = fopen("/sys/class/graphics/fb0/msm_fb_split", "r"); local 119 if(fp){ 121 if(fread(split, sizeof(char), 64, fp)) { 133 if(fp) 134 fclose(fp);
|
/sdk/emulator/opengl/host/tools/emugen/ |
Var.h | 93 void printType(FILE *fp) { fprintf(fp, "%s", m_type->name().c_str()); } 94 void printTypeName(FILE *fp) { printType(fp); fprintf(fp, " %s", m_name.c_str()); }
|