HomeSort by relevance Sort by last modified time
    Searched refs:fp (Results 426 - 450 of 2124) sorted by null

<<11121314151617181920>>

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
newapis.h 38 FARPROC fp; local
42 fp = GetProcAddress(hinst,"GetDiskFreeSpaceEx" __MINGW_PROCNAMEEXT_AW);
43 if(fp) {
44 *(FARPROC *)&RealGetDiskFreeSpaceEx = fp;
156 FARPROC fp; local
161 fp = GetProcAddress(hinst,"GetLongPathName" __MINGW_PROCNAMEEXT_AW);
162 if(fp) {
163 *(FARPROC *)&RealGetLongPathName = fp;
226 FARPROC fp; local
230 fp = GetProcAddress(hinst,"GetFileAttributesEx" __MINGW_PROCNAMEEXT_AW)
260 FARPROC fp; local
    [all...]
  /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)
  /system/core/logcat/tests/
logcat_benchmark.cpp 26 FILE *fp; local
28 ASSERT_TRUE(NULL != (fp = popen(
85 while (fgets(buffer, sizeof(buffer), fp)) {
111 pclose(fp);
  /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...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ScriptTest.java 46 FieldPacker fp = new FieldPacker(4); local
47 fp.addI32(3);
48 S.setVar(12, fp); // structTest
  /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/mojo/common/
data_pipe_utils.cc 21 base::ScopedFILE fp(base::OpenFile(destination, "wb"));
22 if (!fp)
31 size_t bytes_written = fwrite(buffer, 1, num_bytes, fp.get());
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/nestegg/test/
test.c 21 FILE * fp = file; local
23 r = fread(p, length, 1, fp);
24 if (r == 0 && feof(fp))
32 FILE * fp = file; local
33 return fseek(fp, offset, whence);
37 stdio_tell(void * fp)
39 return ftell(fp);
79 FILE * fp; local
100 fp = fopen(argv[1], "rb");
101 if (!fp)
    [all...]
  /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 46 1 << 11; // r11 v8 (fp in JavaScript code)
49 // The call code will take care of lr, fp, etc.
97 // The calling JS function is below FP.
100 // FP-relative displacement of the caller's SP. It points just
108 // FP-relative.
121 // FP-relative.
131 // FP-relative.
144 // FP-relative.
151 return Memory::Object_at(fp() + offset);
155 inline void StackHandler::SetFp(Address slot, Address fp) {
    [all...]
  /external/chromium_org/v8/src/arm64/
frames-arm64.h 44 static const int kCallerFPOffset = 0 * kPointerSize; // <- fp
55 // FP-relative.
58 // There are two words on the stack (saved fp and saved lr) between fp and
68 // FP-relative.
78 // FP-relative.
91 // FP-relative.
98 return Memory::Object_at(fp() + offset);
102 inline void StackHandler::SetFp(Address slot, Address fp) {
103 Memory::Address_at(slot) = fp;
    [all...]
  /external/chromium_org/v8/src/ia32/
frames-ia32.h 59 // FP-relative displacement of the caller's SP. It points just
69 // FP-relative.
84 // FP-relative.
94 // FP-relative.
107 // FP-relative.
114 return Memory::Object_at(fp() + offset);
118 inline void StackHandler::SetFp(Address slot, Address fp) {
119 Memory::Address_at(slot) = fp;
  /external/chromium_org/v8/src/mips/
frames-mips.h 52 1 << 30; // fp/s8
123 22, // fp
146 // The calling JS function is between FP and PC.
152 // FP-relative displacement of the caller's SP.
161 // FP-relative.
174 // FP-relative.
184 // FP-relative.
197 // FP-relative.
204 return Memory::Object_at(fp() + offset);
208 inline void StackHandler::SetFp(Address slot, Address fp) {
    [all...]
  /external/chromium_org/v8/src/x64/
frames-x64.h 53 // FP-relative displacement of the caller's SP. It points just
63 // FP-relative.
76 // FP-relative.
86 // FP-relative.
99 // FP-relative.
106 return Memory::Object_at(fp() + offset);
110 inline void StackHandler::SetFp(Address slot, Address fp) {
112 // Zero out the high-32 bit of FP for x32 port.
115 Memory::Address_at(slot) = fp;
  /external/chromium_org/v8/src/x87/
frames-x87.h 59 // FP-relative displacement of the caller's SP. It points just
69 // FP-relative.
84 // FP-relative.
94 // FP-relative.
107 // FP-relative.
114 return Memory::Object_at(fp() + offset);
118 inline void StackHandler::SetFp(Address slot, Address fp) {
119 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
  /external/clang/test/Sema/
transparent-union.c 4 float *fp; member in union:__anon22974
11 void g(int *ip, float *fp, char *cp) {
13 f(fp);
  /external/libedit/src/
fgetln.c 48 fgetln(FILE *fp, size_t *len)
61 if (fgets(buf, bufsiz, fp) == NULL)
78 if (fgets(&buf[bufsiz], BUFSIZ, fp) == NULL) {
  /external/libvpx/libvpx/third_party/nestegg/test/
test.c 21 FILE * fp = file; local
23 r = fread(p, length, 1, fp);
24 if (r == 0 && feof(fp))
32 FILE * fp = file; local
33 return fseek(fp, offset, whence);
37 stdio_tell(void * fp)
39 return ftell(fp);
79 FILE * fp; local
100 fp = fopen(argv[1], "rb");
101 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...]
  /frameworks/base/rs/java/android/renderscript/
ScriptIntrinsicConvolve5x5.java 94 FieldPacker fp = new FieldPacker(25*4); local
97 fp.addF32(mValues[ct]);
99 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);

Completed in 1194 milliseconds

<<11121314151617181920>>