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

<<21222324252627282930>>

  /external/clang/test/Analysis/
taint-tester.cpp 17 FILE *fp; local
  /external/clang/test/CXX/temp/temp.param/
p4.cpp 13 template<int (*fp)(float, double)> struct A7;
  /external/clang/test/SemaCXX/
attr-unavailable.cpp 15 void (*fp)(...) = &bar; // expected-error{{'bar' is unavailable}}
  /external/clang/test/SemaTemplate/
instantiate-init.cpp 13 void test_f0(int *ip, float *fp, double *dp) {
14 f0(ip, fp);
24 void test_f1(X0 *x0, int *ip, float *fp, double *dp) {
25 f1(x0, ip, fp);
typename-specifier-2.cpp 21 bind_metafun<add_pointer, float>::type::type fp = &i; // expected-error{{cannot initialize a variable of type 'bind_metafun<add_pointer, float>::type::type' (aka 'float *') with an rvalue of type 'int *'}} variable
  /external/icu4c/i18n/unicode/
fpositer.h 97 UBool next(FieldPosition& fp);
  /external/iproute2/misc/
lnstat.h 31 FILE *fp; member in struct:lnstat_file
  /external/iproute2/tc/
tc_util.c 467 void print_tcstats2_attr(FILE *fp, struct rtattr *rta, char *prefix, struct rtattr **xstats)
477 fprintf(fp, "%sSent %llu bytes %u pkt",
484 fprintf(fp, " (dropped %u, overlimits %u requeues %u) ",
491 fprintf(fp, "\n%srate %s %upps ",
499 fprintf(fp, "\n%s", prefix);
500 fprintf(fp, "backlog %s %up requeues %u ",
508 void print_tcstats_attr(FILE *fp, struct rtattr *tb[], char *prefix, struct rtattr **xstats)
513 print_tcstats2_attr(fp, tb[TCA_STATS2], prefix, xstats);
526 fprintf(fp, "%sSent %llu bytes %u pkts (dropped %u, overlimits %u) ",
531 fprintf(fp, "\n%s", prefix)
    [all...]
  /external/mdnsresponder/mDNSPosix/
Responder.c 472 static mDNSBool ReadALine(char *buf, size_t bufSize, FILE *fp, mDNSBool skipBlankLines)
480 if (fgets(buf, bufSize, fp) == NULL)
505 FILE * fp = fopen(filePath, "r"); local
507 if (fp == NULL) {
527 if (! ReadALine(name, sizeof(nameBuf), fp, mDNStrue))
543 if (! ReadALine(type, sizeof(type), fp, mDNSfalse))
562 if (! ReadALine(port, sizeof(port), fp, mDNSfalse))
575 if (!ReadALine(rawText, sizeof(rawText), fp, mDNSfalse)) break;
599 } while (!feof(fp));
601 if (!feof(fp)) {
676 FILE *fp; local
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_glsl_to_tgsi.h 57 void get_pixel_transfer_visitor(struct st_fragment_program *fp,
60 void get_bitmap_visitor(struct st_fragment_program *fp,
  /external/openfst/src/include/fst/
bi-table.h 271 // It is passed a function object FP that should fingerprint entries
273 // VectorBiTable constructs the FP object. The user can instead
276 template <class I, class T, class FP>
280 explicit VectorBiTable(FP *fp = 0, size_t table_size = 0)
281 : fp_(fp ? fp : new FP()) {
286 VectorBiTable(const VectorBiTable<I, T, FP> &table)
287 : fp_(table.fp_ ? new FP(*table.fp_) : 0)
294 ssize_t fp = (*fp_)(entry); local
372 uint64 fp = (*fp_)(entry); local
    [all...]
  /external/openssl/crypto/pkcs12/
p12_utl.c 104 int i2d_PKCS12_fp(FILE *fp, PKCS12 *p12)
106 return ASN1_item_i2d_fp(ASN1_ITEM_rptr(PKCS12), fp, p12);
115 PKCS12 *d2i_PKCS12_fp(FILE *fp, PKCS12 **p12)
117 return ASN1_item_d2i_fp(ASN1_ITEM_rptr(PKCS12), fp, p12);
  /ndk/sources/host-tools/nawk-20071023/
maketab.c 118 FILE *fp; local
135 fp = stdin;
137 if ((fp = fopen(input, "rt")) == NULL) {
144 while (fgets(buf, sizeof buf, fp) != NULL) {
  /packages/inputmethods/PinyinIME/jni/share/
dictlist.cpp 379 bool DictList::save_list(FILE *fp) {
380 if (!initialized_ || NULL == fp)
387 if (fwrite(&scis_num_, sizeof(size_t), 1, fp) != 1)
390 if (fwrite(start_pos_, sizeof(size_t), kMaxLemmaSize + 1, fp) !=
394 if (fwrite(start_id_, sizeof(size_t), kMaxLemmaSize + 1, fp) !=
398 if (fwrite(scis_hz_, sizeof(char16), scis_num_, fp) != scis_num_)
401 if (fwrite(scis_splid_, sizeof(SpellingId), scis_num_, fp) != scis_num_)
404 if (fwrite(buf_, sizeof(char16), start_pos_[kMaxLemmaSize], fp) !=
411 bool DictList::load_list(FILE *fp) {
412 if (NULL == fp)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/
input.h 65 int snd_input_stdio_attach(snd_input_t **inputp, FILE *fp, int _close);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/alsa/
input.h 65 int snd_input_stdio_attach(snd_input_t **inputp, FILE *fp, int _close);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/alsa/
input.h 65 int snd_input_stdio_attach(snd_input_t **inputp, FILE *fp, int _close);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
zipfile.py 134 def _check_zipfile(fp):
136 if _EndRecData(fp):
150 result = _check_zipfile(fp=filename)
152 with open(filename, "rb") as fp:
153 result = _check_zipfile(fp)
720 fp = None # Set here since __del__ checks it variable in class:ZipFile
752 self.fp = open(file, modeDict[mode])
756 self.fp = open(file, modeDict[mode])
761 self.fp = file
776 self.fp.seek(self.start_dir, 0
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
zipfile.py 134 def _check_zipfile(fp):
136 if _EndRecData(fp):
150 result = _check_zipfile(fp=filename)
152 with open(filename, "rb") as fp:
153 result = _check_zipfile(fp)
720 fp = None # Set here since __del__ checks it variable in class:ZipFile
752 self.fp = open(file, modeDict[mode])
756 self.fp = open(file, modeDict[mode])
761 self.fp = file
776 self.fp.seek(self.start_dir, 0
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_test_arit.c 46 write_tsv_header(FILE *fp)
48 fprintf(fp,
52 fflush(fp);
293 test_unary(unsigned verbose, FILE *fp, const struct unary_test_t *test)
366 test_all(unsigned verbose, FILE *fp)
372 if (!test_unary(verbose, fp, &unary_tests[i])) {
382 test_some(unsigned verbose, FILE *fp,
389 return test_all(verbose, fp);
394 test_single(unsigned verbose, FILE *fp)
  /external/chromium_org/third_party/skia/src/utils/
SkRTConf.cpp 13 SkFILE *fp = sk_fopen(configFileLocation(), kRead_SkFILE_Flag); local
15 if (!fp) {
21 while (!sk_feof(fp)) {
23 if (!sk_fgets(line, sizeof(line), fp)) {
53 sk_fclose(fp);
64 SkFILE *fp = sk_fopen(path, kRead_SkFILE_Flag); local
65 if (!fp) {
68 size_t configFileSize = sk_fgetsize(fp);
72 sk_fclose(fp);
  /external/e2fsprogs/intl/
relocatable.c 318 FILE *fp; local
321 fp = fopen ("/proc/self/maps", "r");
322 if (fp)
330 if (fscanf (fp, "%lx-%lx", &start, &end) != 2)
335 while (c = getc (fp), c != EOF && c != '\n' && c != '/')
342 ungetc (c, fp);
344 len = getline (&shared_library_fullname, &size, fp);
354 while (c = getc (fp), c != EOF && c != '\n')
357 fclose (fp);
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test_arit.c 46 write_tsv_header(FILE *fp)
48 fprintf(fp,
52 fflush(fp);
293 test_unary(unsigned verbose, FILE *fp, const struct unary_test_t *test)
366 test_all(unsigned verbose, FILE *fp)
372 if (!test_unary(verbose, fp, &unary_tests[i])) {
382 test_some(unsigned verbose, FILE *fp,
389 return test_all(verbose, fp);
394 test_single(unsigned verbose, FILE *fp)
  /external/skia/src/utils/
SkRTConf.cpp 13 SkFILE *fp = sk_fopen(configFileLocation(), kRead_SkFILE_Flag); local
15 if (!fp) {
21 while (!sk_feof(fp)) {
23 if (!sk_fgets(line, sizeof(line), fp)) {
53 sk_fclose(fp);
64 SkFILE *fp = sk_fopen(path, kRead_SkFILE_Flag); local
65 if (!fp) {
68 size_t configFileSize = sk_fgetsize(fp);
72 sk_fclose(fp);
  /external/v8/src/
frames-inl.h 165 return Memory::Object_at(fp() + offset);
170 return Memory::Address_at(fp() + StandardFrameConstants::kCallerFPOffset);
175 return Memory::Address_at(ComputePCAddress(fp()));
179 inline Address StandardFrame::ComputePCAddress(Address fp) {
180 return fp + StandardFrameConstants::kCallerPCOffset;
184 inline bool StandardFrame::IsArgumentsAdaptorFrame(Address fp) {
186 Memory::Object_at(fp + StandardFrameConstants::kContextOffset);
191 inline bool StandardFrame::IsConstructFrame(Address fp) {
193 Memory::Object_at(fp + StandardFrameConstants::kMarkerOffset);

Completed in 1305 milliseconds

<<21222324252627282930>>