HomeSort by relevance Sort by last modified time
    Searched refs:fp (Results 401 - 425 of 2100) sorted by null

<<11121314151617181920>>

  /dalvik/vm/mterp/mips/
OP_IPUT_QUICK.S 6 GET_VREG(a3, a2) # a3 <- fp[B], the object pointer
10 GET_VREG(a0, a2) # a0 <- fp[A]
unflopWide.S 12 EAS2(a3, rFP, a3) # a3 <- &fp[B]
13 EAS2(rOBJ, rFP, rOBJ) # t1 <- &fp[A]
  /external/chromium_org/base/memory/
shared_memory_posix.cc 133 ScopedFILE fp; local
144 fp.reset(base::CreateAndOpenTemporaryShmemFile(&path, options.executable));
146 if (fp) {
151 fp.reset();
209 fp.reset(fdopen(fd, "a+"));
212 if (fp && fix_size) {
215 if (fstat(fileno(fp.get()), &stat) != 0)
219 if (HANDLE_EINTR(ftruncate(fileno(fp.get()), options.size)) != 0)
224 if (fp == NULL) {
241 return PrepareMapFile(fp.Pass(), readonly_fd.Pass())
    [all...]
  /external/chromium_org/chrome/browser/storage_monitor/
mtab_watcher_linux.cc 58 FILE* fp = setmntent(mtab_path_.value().c_str(), "r"); local
59 if (!fp)
68 while (getmntent_r(fp, &entry, buf, sizeof(buf))) {
78 endmntent(fp);
  /external/chromium_org/third_party/icu/source/i18n/unicode/
fpositer.h 97 UBool next(FieldPosition& fp);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_test_main.c 47 dump_type(FILE *fp,
50 fprintf(fp, "%s%s%u%sx%u",
284 dump_vec(FILE *fp, struct lp_type type, const void *src)
289 fprintf(fp, " ");
303 fprintf(fp, "%f", value);
331 fprintf(fp, format, value);
358 fprintf(fp, format, value);
368 FILE *fp = NULL; local
380 fp = fopen(argv[++i], "wt");
396 if(fp) {
    [all...]
  /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/linux-tools-perf/util/
values.h 24 void perf_read_values_display(FILE *fp, struct perf_read_values *values,
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test_main.c 47 dump_type(FILE *fp,
50 fprintf(fp, "%s%s%u%sx%u",
284 dump_vec(FILE *fp, struct lp_type type, const void *src)
289 fprintf(fp, " ");
303 fprintf(fp, "%f", value);
331 fprintf(fp, format, value);
358 fprintf(fp, format, value);
368 FILE *fp = NULL; local
380 fp = fopen(argv[++i], "wt");
396 if(fp) {
    [all...]
  /hardware/ti/omap4xxx/
mapinfo.c 54 FILE *fp = fopen(data, "r"); local
55 if(fp) {
56 while(fgets(data, sizeof(data), fp)) {
63 fclose(fp);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/tests/
test_tool.py 50 with open(infile, "w") as fp:
52 fp.write(self.data)
66 with open(outfile, "r") as fp:
67 self.assertEqual(fp.read(), self.expect)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/tests/
test_tool.py 50 with open(infile, "w") as fp:
52 fp.write(self.data)
66 with open(outfile, "r") as fp:
67 self.assertEqual(fp.read(), self.expect)
  /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...]
  /bootable/recovery/minui/
resources.c 58 FILE* fp = fopen(resPath, "rb"); local
59 if (fp == NULL) {
64 size_t bytesRead = fread(header, 1, sizeof(header), fp);
92 png_init_io(png_ptr, fp);
171 if (fp != NULL) {
172 fclose(fp);
211 FILE* fp = fopen(resPath, "rb"); local
212 if (fp == NULL) {
217 size_t bytesRead = fread(header, 1, sizeof(header), fp);
245 png_init_io(png_ptr, fp);
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ScriptTest.java 48 FieldPacker fp = new FieldPacker(4); local
49 fp.addI32(3);
50 S.setVar(12, fp); // structTest
  /dalvik/vm/mterp/portable/
entry.cpp 17 u4* fp; // frame pointer local
32 fp = self->interpSave.curFrame;
37 LOGVV("threadid=%d: %s.%s pc=%#x fp=%p",
39 pc - curMethod->insns, fp);
  /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/chromium_org/third_party/mesa/src/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/chromium_org/third_party/openssl/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...]
  /external/chromium_org/v8/src/arm/
frames-arm.h 71 1 << 11; // r11 v8 (fp in JavaScript code)
74 // The call code will take care of lr, fp, etc.
117 // The calling JS function is below FP.
120 // FP-relative displacement of the caller's SP. It points just
128 // FP-relative.
141 // FP-relative.
151 // FP-relative.
164 // FP-relative.
171 return Memory::Object_at(fp() + offset);
175 inline void StackHandler::SetFp(Address slot, Address fp) {
    [all...]
  /external/chromium_org/v8/src/
cpu.cc 115 FILE* fp = fopen("/proc/self/auxv", "r");
116 if (fp != NULL) {
119 size_t n = fread(&entry, sizeof(entry), 1, fp);
128 fclose(fp);
143 FILE* fp = fopen(PATHNAME, "r");
144 if (fp != NULL) {
147 size_t n = fread(buffer, 1, sizeof(buffer), fp);
153 fclose(fp);
158 fp = fopen(PATHNAME, "r");
159 if (fp != NULL)
    [all...]
  /external/chromium_org/v8/src/ia32/
frames-ia32.h 82 // FP-relative displacement of the caller's SP. It points just
90 // FP-relative.
105 // FP-relative.
115 // FP-relative.
128 // FP-relative.
135 return Memory::Object_at(fp() + offset);
139 inline void StackHandler::SetFp(Address slot, Address fp) {
140 Memory::Address_at(slot) = fp;
  /external/chromium_org/v8/src/mips/
frames-mips.h 75 1 << 30; // fp/s8
148 22, // fp
174 // The calling JS function is between FP and PC.
180 // FP-relative displacement of the caller's SP.
187 // FP-relative.
200 // FP-relative.
210 // FP-relative.
223 // FP-relative.
230 return Memory::Object_at(fp() + offset);
234 inline void StackHandler::SetFp(Address slot, Address fp) {
    [all...]
  /external/chromium_org/v8/src/x64/
frames-x64.h 75 // FP-relative displacement of the caller's SP. It points just
83 // FP-relative.
96 // FP-relative.
106 // FP-relative.
119 // FP-relative.
126 return Memory::Object_at(fp() + offset);
130 inline void StackHandler::SetFp(Address slot, Address fp) {
131 Memory::Address_at(slot) = fp;
  /external/clang/test/Analysis/
stream.c 10 extern int fclose(FILE *fp);
77 void pr7831(FILE *fp) {
78 fclose(fp); // no-warning

Completed in 1436 milliseconds

<<11121314151617181920>>