/external/oprofile/daemon/ |
D | opd_sfile.c | 82 do_match(struct sfile const * sf, cookie_t cookie, cookie_t app_cookie, in do_match() argument 90 if (sf->kernel != ki) in do_match() 94 if (sf->tid != tid || sf->tgid != tgid) in do_match() 99 if (sf->cpu != cpu) in do_match() 104 if (sf->app_cookie != app_cookie) in do_match() 114 if (sf->anon != anon) in do_match() 117 return sf->cookie == cookie; in do_match() 131 sfile_equal(struct sfile const * sf, struct sfile const * sf2) in sfile_equal() argument 133 return do_match(sf, sf2->cookie, sf2->app_cookie, sf2->kernel, in sfile_equal() 139 is_sf_ignored(struct sfile const * sf) in is_sf_ignored() argument [all …]
|
D | opd_mangling.c | 37 static char const * get_dep_name(struct sfile const * sf) in get_dep_name() argument 39 if (sf->anon) in get_dep_name() 40 return find_cookie(sf->app_cookie); in get_dep_name() 43 if (sf->cookie == sf->app_cookie) in get_dep_name() 46 if (!separate_kernel && !(separate_lib && !sf->kernel)) in get_dep_name() 50 if (sf->app_cookie == 0) in get_dep_name() 53 return find_cookie(sf->app_cookie); in get_dep_name() 69 mangle_filename(struct sfile * last, struct sfile const * sf, int counter, int cg) in mangle_filename() argument 77 if (sf->kernel) { in mangle_filename() 78 values.image_name = sf->kernel->name; in mangle_filename() [all …]
|
D | opd_ibs.c | 39 extern int sfile_equal(struct sfile const * sf, struct sfile const * sf2); 703 static int ibs_sfile_create(struct sfile * sf) in ibs_sfile_create() argument 706 sf->ext_files = xmalloc(ibs_selected_size * sizeof(odb_t)); in ibs_sfile_create() 708 odb_init(&sf->ext_files[i]); in ibs_sfile_create() 727 static int ibs_sfile_close(struct sfile * sf) in ibs_sfile_close() argument 730 if (sf->ext_files != NULL) { in ibs_sfile_close() 732 odb_close(&sf->ext_files[i]); in ibs_sfile_close() 734 free(sf->ext_files); in ibs_sfile_close() 735 sf->ext_files= NULL; in ibs_sfile_close() 740 static int ibs_sfile_sync(struct sfile * sf) in ibs_sfile_sync() argument [all …]
|
D | opd_extended.c | 139 void opd_ext_sfile_create(struct sfile * sf) in opd_ext_sfile_create() argument 144 ext_feature_table[opd_ext_feat_index].handlers->ext_sfile->create(sf); in opd_ext_sfile_create() 157 void opd_ext_sfile_close (struct sfile * sf) in opd_ext_sfile_close() argument 162 ext_feature_table[opd_ext_feat_index].handlers->ext_sfile->close(sf); in opd_ext_sfile_close() 166 void opd_ext_sfile_sync(struct sfile * sf) in opd_ext_sfile_sync() argument 171 ext_feature_table[opd_ext_feat_index].handlers->ext_sfile->sync(sf); in opd_ext_sfile_sync()
|
D | opd_extended.h | 80 extern void opd_ext_sfile_create(struct sfile * sf); 82 extern void opd_ext_sfile_close(struct sfile * sf); 83 extern void opd_ext_sfile_sync(struct sfile * sf);
|
/external/antlr/antlr-3.4/runtime/JavaScript/third/ |
D | antcontrib.properties | 1 antclipse=net.sf.antcontrib.antclipse.ClassPathTask 2 antserver=net.sf.antcontrib.antserver.server.ServerTask 3 remoteant=net.sf.antcontrib.antserver.client.ClientTask 4 verifydesign=net.sf.antcontrib.design.VerifyDesign 5 inifile=net.sf.antcontrib.inifile.IniFileTask 6 if=net.sf.antcontrib.logic.IfTask 7 foreach=net.sf.antcontrib.logic.ForEach 8 for=net.sf.antcontrib.logic.ForTask 9 throw=net.sf.antcontrib.logic.Throw 10 trycatch=net.sf.antcontrib.logic.TryCatchTask [all …]
|
/external/qemu/target-i386/ |
D | helper_template.h | 57 int cf, pf, af, zf, sf, of; in glue() local 65 sf = lshift(CC_DST, 8 - DATA_BITS) & 0x80; in glue() 67 return cf | pf | af | zf | sf | of; in glue() 81 int cf, pf, af, zf, sf, of; in glue() local 89 sf = lshift(CC_DST, 8 - DATA_BITS) & 0x80; in glue() 91 return cf | pf | af | zf | sf | of; in glue() 105 int cf, pf, af, zf, sf, of; in glue() local 113 sf = lshift(CC_DST, 8 - DATA_BITS) & 0x80; in glue() 115 return cf | pf | af | zf | sf | of; in glue() 130 int cf, pf, af, zf, sf, of; in glue() local [all …]
|
/external/libvpx/vp8/encoder/ |
D | onyx_if.c | 541 SPEED_FEATURES *sf = &cpi->sf; in vp8_set_speed_features() local 546 int last_improved_quant = sf->improved_quant; in vp8_set_speed_features() 559 sf->RD = 1; in vp8_set_speed_features() 560 sf->search_method = NSTEP; in vp8_set_speed_features() 561 sf->improved_quant = 1; in vp8_set_speed_features() 562 sf->improved_dct = 1; in vp8_set_speed_features() 563 sf->auto_filter = 1; in vp8_set_speed_features() 564 sf->recode_loop = 1; in vp8_set_speed_features() 565 sf->quarter_pixel_search = 1; in vp8_set_speed_features() 566 sf->half_pixel_search = 1; in vp8_set_speed_features() [all …]
|
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/ |
D | SimpleFormatterTest.java | 33 SimpleFormatter sf; field in SimpleFormatterTest 44 sf = new SimpleFormatter(); in setUp() 50 sf.format(null); in testFormatNull() 54 sf.format(new LogRecord(Level.SEVERE, null)); in testFormatNull() 64 String str = sf.format(lr); in testLocalizedFormat() 71 str = sf.format(lr); in testLocalizedFormat() 77 String str = sf.format(lr); 96 str = sf.format(lr); 108 assertEquals("", sf.getHead(null)); in testGetHead() 112 assertEquals("", sf.getTail(null)); in testGetTail()
|
/external/apache-harmony/x-net/src/test/impl/java.injected/javax/net/ |
D | SocketFactoryTest.java | 42 SocketFactory sf = new MySocketFactory(); in testCreateSocket() local 44 sf.createSocket(); in testCreateSocket() 56 SocketFactory sf = SocketFactory.getDefault(); in testGetDefault() local 58 if (!(sf instanceof DefaultSocketFactory)) { in testGetDefault() 62 s = sf.createSocket("localhost", 8082); in testGetDefault() 67 s = sf.createSocket("localhost", 8081, InetAddress.getLocalHost(), 8082); in testGetDefault() 72 s = sf.createSocket(InetAddress.getLocalHost(), 8081); in testGetDefault() 77 s = sf.createSocket(InetAddress.getLocalHost(), 8081, InetAddress.getLocalHost(), 8082); in testGetDefault()
|
D | ServerSocketFactoryTest.java | 42 ServerSocketFactory sf = new MyServerSocketFactory(); in testCreateServerSocket() local 44 sf.createServerSocket(); in testCreateServerSocket() 56 ServerSocketFactory sf = ServerSocketFactory.getDefault(); in testGetDefault() local 58 if (!(sf instanceof DefaultServerSocketFactory)) { in testGetDefault() 62 s = sf.createServerSocket(0); in testGetDefault() 67 s = sf.createServerSocket(0, 50); in testGetDefault() 72 s = sf.createServerSocket(0, 50, InetAddress.getLocalHost()); in testGetDefault()
|
/external/ppp/pppd/plugins/radius/ |
D | buildreq.c | 95 FILE *sf; in rc_get_seqnbr() local 100 if ((sf = fopen(seqfile, "a+")) == NULL) in rc_get_seqnbr() 107 while (do_lock_exclusive(fileno(sf))!= 0) in rc_get_seqnbr() 111 fclose(sf); in rc_get_seqnbr() 123 fclose(sf); in rc_get_seqnbr() 127 pos = ftell(sf); in rc_get_seqnbr() 128 rewind(sf); in rc_get_seqnbr() 129 if (fscanf(sf, "%d", &seq_nbr) != 1) { in rc_get_seqnbr() 130 if (pos != ftell(sf)) { in rc_get_seqnbr() 137 rewind(sf); in rc_get_seqnbr() [all …]
|
/external/valgrind/main/none/tests/x86/ |
D | aad_aam.c | 21 int cf __attribute__((unused)),pf,af __attribute__((unused)),zf,sf; in main() local 43 sf=!!(flags&0x80); in main() 56 if (sf != !!(out&0x80)) { in main() 90 sf=!!(flags&0x80); in main() 103 if (sf != !!(out&0x80)) { in main() 104 printf("Error with aad (sf) %d %d!\n",sf,!!(out&0x80)); in main()
|
/external/libpcap/ |
D | savefile.c | 935 if (p->sf.rfile != stdin) in sf_close() 936 (void)fclose(p->sf.rfile); in sf_close() 937 if (p->sf.base != NULL) in sf_close() 938 free(p->sf.base); in sf_close() 1017 p->sf.swapped = 1; in pcap_fopen_offline() 1038 p->sf.hdrsize = sizeof(struct pcap_sf_patched_pkthdr); in pcap_fopen_offline() 1040 p->sf.hdrsize = sizeof(struct pcap_sf_pkthdr); in pcap_fopen_offline() 1070 p->sf.rfile = fp; in pcap_fopen_offline() 1098 p->sf.base = (u_char *)malloc(p->bufsize + BPF_ALIGNMENT); in pcap_fopen_offline() 1099 if (p->sf.base == NULL) { in pcap_fopen_offline() [all …]
|
/external/aac/libFDK/src/ |
D | FDK_trigFcts.cpp | 138 INT sf,sfo,stf; in fixp_atan2() local 145 q = fDivNormHighPrec( y, x, &sf); // both pos. in fixp_atan2() 148 q = -fDivNormHighPrec( y,-x, &sf); // x neg. in fixp_atan2() 152 sf = 0; in fixp_atan2() 158 q = -fDivNormHighPrec(-y, x, &sf); // y neg. in fixp_atan2() 161 q = fDivNormHighPrec(-y,-x, &sf); // both neg. in fixp_atan2() 165 sf = 0; in fixp_atan2() 170 sf = 0; in fixp_atan2() 172 sfo = sf; in fixp_atan2()
|
/external/bluetooth/glib/glib/ |
D | Makefile.am | 347 mv -f "$(DESTDIR)$(bindir)/$$sf" "$(DESTDIR)$(bindir)/$$sf".tmp \ 348 && sed < "$(DESTDIR)$(bindir)/$$sf".tmp > "$(DESTDIR)$(bindir)/$$sf" \ 352 rm -f "$(DESTDIR)$(bindir)/$$sf".tmp ; \
|
/external/valgrind/main/exp-sgcheck/ |
D | sg_main.c | 1320 static void initialise_II_hash_table ( StackFrame* sf ) in initialise_II_hash_table() argument 1323 sf->htab_size = N_HTAB_FIXED; /* initial hash table size */ in initialise_II_hash_table() 1324 sf->htab = &sf->htab_fixed[0]; in initialise_II_hash_table() 1325 tl_assert(sf->htab); in initialise_II_hash_table() 1326 sf->htab_used = 0; in initialise_II_hash_table() 1327 for (i = 0; i < sf->htab_size; i++) in initialise_II_hash_table() 1328 sf->htab[i].insn_addr = 0; /* NOT IN USE */ in initialise_II_hash_table() 1333 static void resize_II_hash_table ( StackFrame* sf ) in resize_II_hash_table() argument 1338 tl_assert(sf && sf->htab); in resize_II_hash_table() 1339 old_size = sf->htab_size; in resize_II_hash_table() [all …]
|
/external/elfutils/src/ |
D | debugpred.h | 42 const char **sf = &__start_predict_file; in predprint() local 46 printf ("%s:%lu: wrong=%lu, correct=%lu%s\n", *sf, *sl, s[0], s[1], in predprint() 49 ++sf; in predprint()
|
/external/llvm/test/Transforms/Inline/ |
D | devirtualize-3.ll | 36 %sf = alloca %struct.foo_sf_t, align 8 ; <%struct.foo_sf_t*> [#uses=3] 38 %tmp = getelementptr inbounds %struct.foo_sf_t* %sf, i32 0, i32 0 ; <%struct.cont_t**> [#uses=1] 40 %tmp2 = getelementptr inbounds %struct.foo_sf_t* %sf, i32 0, i32 1 ; <i32*> [#uses=1] 45 %conv = bitcast %struct.foo_sf_t* %sf to i8* ; <i8*> [#uses=1] 51 define internal void @foo2(%struct.foo_sf_t* %sf, i32 %y) nounwind ssp { 53 %tmp1 = getelementptr inbounds %struct.foo_sf_t* %sf, i32 0, i32 0 ; <%struct.cont_t**> [#uses=1] 57 %tmp6 = getelementptr inbounds %struct.foo_sf_t* %sf, i32 0, i32 0 ; <%struct.cont_t**> [#uses=1] 60 %tmp9 = getelementptr inbounds %struct.foo_sf_t* %sf, i32 0, i32 1 ; <i32*> [#uses=1]
|
/external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/ |
D | HttpsURLConnectionTest.java | 74 SSLSocketFactory sf = HttpsURLConnection.getDefaultSSLSocketFactory(); in testGetDefaultSSLSocketFactory() local 75 if (!sf.equals(SSLSocketFactory.getDefault())) { in testGetDefaultSSLSocketFactory() 82 SSLSocketFactory sf = con.getSSLSocketFactory(); in testGetSSLSocketFactory() local 83 if (!sf.equals(SSLSocketFactory.getDefault())) { in testGetSSLSocketFactory()
|
/external/apache-http/src/org/apache/http/impl/conn/ |
D | DefaultClientConnectionOperator.java | 127 final SocketFactory sf = schm.getSocketFactory(); in openConnection() local 130 if (sf instanceof LayeredSocketFactory) { in openConnection() 132 layered_sf = (LayeredSocketFactory)sf; in openConnection() 134 plain_sf = sf; in openConnection() 172 conn.openCompleted(sf.isSecure(layeredsock), params); in openConnection() 174 conn.openCompleted(sf.isSecure(sock), params); in openConnection()
|
/external/libpcap/packaging/ |
D | pcap.spec | 40 ln -sf libpcap.so.0.9.4 libpcap.so.$V1 42 ln -sf libpcap.so.$V1 libpcap.so.$V2 43 ln -sf libpcap.so.$V2 libpcap.so 45 ln -sf libpcap.so.$V1 libpcap.so
|
/external/qemu/distrib/sdl-1.2.12/src/video/ |
D | SDL_blit_A.c | 372 SDL_PixelFormat* sf = info->src; in BlitRGBtoRGBPixelAlphaMMX() local 373 Uint32 amask = sf->Amask; in BlitRGBtoRGBPixelAlphaMMX() 377 movd_m2r(sf->Amask, mm7); /* 0000F000 -> mm7 */ in BlitRGBtoRGBPixelAlphaMMX() 390 : : "rm" ((Uint32) sf->Ashift) ); /* Ashift -> mm5 */ in BlitRGBtoRGBPixelAlphaMMX() 603 SDL_PixelFormat* sf = info->src; in BlitRGBtoRGBPixelAlphaMMX() local 604 Uint32 chanmask = sf->Rmask | sf->Gmask | sf->Bmask; in BlitRGBtoRGBPixelAlphaMMX() 605 Uint32 amask = sf->Amask; in BlitRGBtoRGBPixelAlphaMMX() 606 Uint32 ashift = sf->Ashift; in BlitRGBtoRGBPixelAlphaMMX() 1585 SDL_PixelFormat* sf = info->src; in BlitRGBtoRGBPixelAlphaMMX3DNOW() local 1586 Uint32 amask = sf->Amask; in BlitRGBtoRGBPixelAlphaMMX3DNOW() [all …]
|
/external/valgrind/main/VEX/priv/ |
D | guest_amd64_helpers.c | 192 { Long cf, pf, af, zf, sf, of; \ 201 sf = lshift(res, 8 - DATA_BITS) & 0x80; \ 204 return cf | pf | af | zf | sf | of; \ 213 { Long cf, pf, af, zf, sf, of; \ 222 sf = lshift(res, 8 - DATA_BITS) & 0x80; \ 225 return cf | pf | af | zf | sf | of; \ 234 { Long cf, pf, af, zf, sf, of; \ 247 sf = lshift(res, 8 - DATA_BITS) & 0x80; \ 250 return cf | pf | af | zf | sf | of; \ 259 { Long cf, pf, af, zf, sf, of; \ [all …]
|
D | guest_x86_helpers.c | 150 { Int cf, pf, af, zf, sf, of; \ 159 sf = lshift(res, 8 - DATA_BITS) & 0x80; \ 162 return cf | pf | af | zf | sf | of; \ 171 { Int cf, pf, af, zf, sf, of; \ 180 sf = lshift(res, 8 - DATA_BITS) & 0x80; \ 183 return cf | pf | af | zf | sf | of; \ 192 { Int cf, pf, af, zf, sf, of; \ 205 sf = lshift(res, 8 - DATA_BITS) & 0x80; \ 208 return cf | pf | af | zf | sf | of; \ 217 { Int cf, pf, af, zf, sf, of; \ [all …]
|