HomeSort by relevance Sort by last modified time
    Searched refs:fp (Results 201 - 225 of 781) sorted by null

1 2 3 4 5 6 7 891011>>

  /dalvik/vm/mterp/armv5te/
unopWide.S 13 add r3, rFP, r3, lsl #2 @ r3<- &fp[B]
14 add r9, rFP, r9, lsl #2 @ r9<- &fp[A]
  /dalvik/vm/mterp/armv6t2/
OP_IPUT_QUICK.S 7 GET_VREG(r3, r2) @ r3<- fp[B], the object pointer
11 GET_VREG(r0, r2) @ r0<- fp[A]
unopWide.S 12 add r3, rFP, r3, lsl #2 @ r3<- &fp[B]
13 add r9, rFP, r9, lsl #2 @ r9<- &fp[A]
  /dalvik/vm/mterp/c/
OP_MONITOR_ENTER.c 9 if (!checkForNullExportPC(obj, fp, pc))
  /dalvik/vm/mterp/portable/
portdbg.c 5 checkDebugAndProf(pc, fp, self, curMethod, &debugIsMethodEntry)
  /dalvik/vm/mterp/x86-atom/
OP_IPUT_WIDE_QUICK.S 36 movq (rFP, rINST, 4), %xmm0 # %xmm0<- fp[A]
37 movq %xmm0, (%edx, %ecx) # object field<- %xmm0; fp[A]
  /external/clearsilver/python/examples/base/
PassSGMLParser.py 11 def __init__(self, fp, pass_unknown=0, verbose=0):
14 self.fp = fp
27 return self.fp.write(data)
  /external/icu4c/i18n/
fpositer.cpp 102 UBool FieldPositionIterator::next(FieldPosition& fp) {
107 fp.setField(data->elementAti(pos++));
108 fp.setBeginIndex(data->elementAti(pos++));
109 fp.setEndIndex(data->elementAti(pos++));
  /external/srec/srec/Semproc/src/
SemanticGraphImpl.c 88 ESR_ReturnCode sr_semanticgraph_loadV2(SR_SemanticGraphImpl* impl, wordmap* ilabels, PFile* fp);
95 PFile* fp = NULL; local
114 fp = pfopen ( g2g, L("rb"));
115 /* CHKLOG(rc, PFileSystemCreatePFile(g2g, isLittleEndian, &fp));
116 CHKLOG(rc, PFileOpen(fp, L("rb")));*/
118 if ( fp == NULL )
122 if (pfread(&header, 4, 2, fp) != 2)
129 if (pfseek(fp, header.rec_context_image_size, SEEK_SET))
138 rc = sr_semanticgraph_loadV2(impl, ilabels, fp);
148 if (fp)
682 PFile* fp; local
    [all...]
  /external/blktrace/btt/
devmap.c 67 FILE *fp = my_fopen(fname, "r"); local
69 if (!fp) {
74 while (fscanf(fp, "%255[a-zA-Z0-9 :.,/_-]\n", line) == 1) {
  /external/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/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...]
  /frameworks/base/core/jni/
android_os_Debug.cpp 91 static void read_mapinfo(FILE *fp, stats_t* stats)
107 if(fgets(line, 1024, fp) == 0) return;
142 if (fgets(line, 1024, fp) == 0) {
193 FILE *fp; local
196 fp = fopen(tmp, "r");
197 if (fp == 0) return;
199 read_mapinfo(fp, stats);
200 fclose(fp);
231 FILE* fp = fopen(BINDER_STATS, "r"); local
232 if (fp == NULL)
    [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/iproute2/tc/
tc_class.c 154 FILE *fp = (FILE*)arg; local
185 fprintf(fp, "deleted ");
194 fprintf(fp, "class %s %s ", (char*)RTA_DATA(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 ", (char*)RTA_DATA(tb[TCA_KIND]));
247 q->print_fopt(q, fp, tb[TCA_OPTIONS], t->tcm_handle)
    [all...]
  /dalvik/vm/interp/
Stack.h 49 +-----------------+ <-- curFrame: FP for cur function
58 +-----------------+ <-- frame ptr (FP) for previous function
83 e.g. register v2 is fp[2]. 64-bit quantities are stored in two adjacent
119 * saved PC and FP. At some point we'd like to have interpreted and
175 INLINE bool dvmIsBreakFrame(const u4* fp)
177 return SAVEAREA_FROM_FP(fp)->method == NULL;
240 int dvmComputeExactFrameDepth(const void* fp);
241 int dvmComputeVagueFrameDepth(Thread* thread, const void* fp);
254 * Get the caller's caller's class. Pass in the current fp.
262 * Get the caller's caller's caller's class. Pass in the current fp
    [all...]
  /system/core/nexus/
Controller.cpp 96 FILE *fp = fopen("/proc/modules", "r"); local
98 if (!fp) {
104 while(fgets(line, sizeof(line), fp)) {
112 fclose(fp);
117 fclose(fp);
  /dalvik/vm/hprof/
HprofStack.c 211 void* fp; local
221 fp = self->curFrame;
236 while ((fp != NULL) && (i < STACK_DEPTH)) {
237 const StackSaveArea* saveArea = SAVEAREA_FROM_FP(fp);
241 if (!dvmIsBreakFrame(fp)) {
258 assert(fp != saveArea->prevFrame);
259 fp = saveArea->prevFrame;
  /external/blktrace/
stats.h 88 static inline int minmax_print(FILE *fp, const char *s, struct minmax *mm)
90 return fprintf(fp, "%s: num %Ld, min %Ld, max %Ld, sum %Ld, squ %Ld, "
139 static inline void histlog2_print(FILE *fp, const char *s, __u32 a[],
144 fprintf(fp, "%s:\n", s);
146 fprintf(fp, " %10ld:%6d",
149 fprintf(fp, "\n");
151 fprintf(fp, " >%8ld:%6d\n",
  /libcore/dalvik/src/main/native/
dalvik_system_TouchDex.cpp 241 FILE* fp; local
244 fp = fopen(localBuf, "r");
245 if (fp == NULL) {
252 fgets(localBuf, sizeof(localBuf), fp);
253 if (ferror(fp) || feof(fp))
258 fclose(fp);
  /external/bison/lib/
timevar.c 441 /* Summarize timing variables to FP. The timing variable TV_TOTAL has
446 timevar_print (fp)
447 FILE *fp;
460 if (fp == 0)
461 fp = stderr;
475 fputs (_("\nExecution times (seconds)\n"), fp);
498 fprintf (fp, " %-22s:", tv->name);
502 fprintf (fp, "%7.2f (%2.0f%%) usr",
509 fprintf (fp, "%7.2f (%2.0f%%) sys",
516 fprintf (fp, "%7.2f (%2.0f%%) wall"
    [all...]
  /external/bluetooth/bluez/tools/
hciattach_ti.c 117 FILE* fp; local
119 fp = fopen(file_name, "rb");
120 if (!fp) {
125 if (1 != fread(&header, sizeof(struct bts_header), 1, fp)) {
141 fclose(fp);
142 fp = NULL;
144 return fp;
147 static unsigned long bts_fetch_action(FILE* fp, unsigned char* action_buf,
153 if (!fp)
156 if (1 != fread(&action_hdr, sizeof(struct bts_action), 1, fp))
    [all...]
  /system/core/libnetutils/
ifc_utils.c 277 FILE *fp; local
280 fp = fopen("/proc/net/route", "r");
281 if (fp == NULL)
284 if (fscanf(fp, "%*[^\n]\n") < 0) {
285 fclose(fp);
290 int nread = fscanf(fp, "%63s%X%X%X%d%d%d%X%d%d%d\n",
311 fclose(fp);
328 FILE *fp; local
330 fp = fopen("/proc/net/route", "r");
331 if (fp == NULL
    [all...]

Completed in 1366 milliseconds

1 2 3 4 5 6 7 891011>>