HomeSort by relevance Sort by last modified time
    Searched refs:fw (Results 1 - 25 of 88) sorted by null

1 2 3 4

  /external/chromium_org/third_party/libjingle/source/talk/base/
winfirewall_unittest.cc 37 WinFirewall fw; local
41 EXPECT_FALSE(fw.QueryAuthorized("bogus.exe", &authorized));
42 EXPECT_TRUE(fw.Initialize(&hr));
45 EXPECT_TRUE(fw.QueryAuthorized("bogus.exe", &authorized));
51 fw.Shutdown();
52 EXPECT_FALSE(fw.QueryAuthorized("bogus.exe", &authorized));
  /external/fdlibm/
k_rem_pio2.c 171 double z,fw,f[20],fq[20],q[20]; local
188 for(j=0,fw=0.0;j<=jx;j++) fw += x[j]*f[jx+i-j]; q[i] = fw;
195 fw = (double)((int)(twon24* z));
196 iq[i] = (int)(z-two24*fw);
197 z = q[j-1]+fw;
247 for(j=0,fw=0.0;j<=jx;j++) fw += x[j]*f[jx+i-j];
248 q[i] = fw;
    [all...]
  /libcore/luni/src/test/java/libcore/java/io/
OldFilterWriterTest.java 28 private FilterWriter fw; field in class:OldFilterWriterTest
81 fw.close();
86 fw.flush();
91 fw.write(0);
97 fw.write(buffer, 0, 5);
104 fw = new MyFilterWriter(new OutputStreamWriter(
108 fw.write(buffer, 0, -1);
115 fw.write(buffer, -1, 1);
122 fw.write(buffer, 10, 1);
130 fw.write("Hello world", 0, 5)
    [all...]
OldFileWriterTest.java 31 FileWriter fw; field in class:OldFileWriterTest
43 fw = new FileWriter(dir);
54 fw = new FileWriter(dir, true);
63 fw = new FileWriter(System.getProperty("java.io.tmpdir"));
73 fw = new FileWriter(System.getProperty("java.io.tmpdir"), false);
93 FileWriter fw = null; local
96 fw = new FileWriter(f);
97 fw.write(strChars);
98 fw.close();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/
ctor_func.pass.cpp 17 // UnaryOperation fw);
22 double fw(double x) function
31 D d(0, 0, 1, fw);
38 D d(1, 0, 1, fw);
45 D d(2, 0.5, 1.5, fw);
53 D d(4, 0, 2, fw);
param_ctor_func.pass.cpp 17 // UnaryOperation fw);
22 double fw(double x) function
32 P pa(0, 0, 1, fw);
40 P pa(1, 0, 1, fw);
48 P pa(2, 0.5, 1.5, fw);
57 P pa(4, 0, 2, fw);
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
SharingSupport.java 75 FileWriter fw = new FileWriter(getFilesDir() + "/foo.txt"); local
76 fw.write("This is a file share");
77 fw.close();
94 FileWriter fw = new FileWriter(getFilesDir() + "/foo.txt"); local
95 fw.write("This is a file share");
96 fw.close();
98 fw = new FileWriter(getFilesDir() + "/bar.txt");
99 fw.write("This is another file share");
100 fw.close();
  /development/tools/mkstubs/src/com/android/mkstubs/
SourceGenerator.java 61 FileWriter fw = null; local
63 fw = createWriter(baseDir, name);
64 visitClassSource(fw, cr, filter);
66 fw.close();
92 void visitClassSource(Writer fw, ClassReader cr, Filter filter) {
95 ClassVisitor javaWriter = new ClassSourcer(new Output(fw));
  /bionic/libm/upstream-freebsd/lib/msun/src/
k_rem_pio2.c 297 double z,fw,f[20],fq[20],q[20]; local
314 for(j=0,fw=0.0;j<=jx;j++) fw += x[j]*f[jx+i-j]; q[i] = fw;
321 fw = (double)((int32_t)(twon24* z));
322 iq[i] = (int32_t)(z-two24*fw);
323 z = q[j-1]+fw;
373 for(j=0,fw=0.0;j<=jx;j++) fw += x[j]*f[jx+i-j];
374 q[i] = fw;
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/
ctor_func.pass.cpp 17 // result_type xmax, UnaryOperation fw);
22 double fw(double x) function
31 D d(0, 0, 1, fw);
42 D d(1, 10, 12, fw);
53 D d(2, 6, 14, fw);
param_ctor_func.pass.cpp 17 // UnaryOperation fw);
22 double fw(double x) function
32 P pa(0, 0, 1, fw);
44 P pa(1, 10, 12, fw);
56 P pa(2, 6, 14, fw);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/
ctor_func.pass.cpp 17 // result_type xmax, UnaryOperation fw);
24 double fw(double x) function
33 D d(0, 0, 1, fw);
45 D d(1, 10, 12, fw);
57 D d(2, 6, 14, fw);
param_ctor_func.pass.cpp 17 // UnaryOperation fw);
22 double fw(double x) function
32 P pa(0, 0, 1, fw);
45 P pa(1, 10, 12, fw);
58 P pa(2, 6, 14, fw);
  /external/iptables/iptables/
iptables.c 547 /* e is called `fw' here for historical reasons */
549 print_firewall(const struct ipt_entry *fw,
566 t = ipt_get_target((struct ipt_entry *)fw);
567 flags = fw->ip.flags;
573 print_num(fw->counters.pcnt, format);
574 print_num(fw->counters.bcnt, format);
580 fputc(fw->ip.invflags & IPT_INV_PROTO ? '!' : ' ', stdout);
582 const char *pname = proto_to_name(fw->ip.proto, format&FMT_NUMERIC);
586 printf(FMT("%-5hu", "%hu "), fw->ip.proto);
592 fputc(fw->ip.invflags & IPT_INV_FRAG ? '!' : '-', stdout)
    [all...]
ip6tables.c 542 /* e is called `fw' here for historical reasons */
544 print_firewall(const struct ip6t_entry *fw,
560 t = ip6t_get_target((struct ip6t_entry *)fw);
566 print_num(fw->counters.pcnt, format);
567 print_num(fw->counters.bcnt, format);
573 fputc(fw->ipv6.invflags & IP6T_INV_PROTO ? '!' : ' ', stdout);
575 const char *pname = proto_to_name(fw->ipv6.proto, format&FMT_NUMERIC);
579 printf(FMT("%-5hu", "%hu "), fw->ipv6.proto);
593 if (fw->ipv6.invflags & IP6T_INV_VIA_IN) {
599 if (fw->ipv6.iniface[0] != '\0')
    [all...]
xshared.h 52 struct ipt_entry fw; member in union:iptables_command_state::__anon21383
  /ndk/sources/android/support/src/musl-locale/
strfmon.c 13 int lp, rp, w, fw; local
52 for (fw=0; isdigit(*fmt); fmt++)
53 fw = 10*fw + (*fmt-'0');
64 if (!left && fw>w) w = fw;
  /build/core/
distdir.mk 60 $(eval fw := $(subst :,$(space),$(file))) \
61 $(eval src := $(word 1,$(fw))) \
62 $(eval dst := $(word 2,$(fw))) \
  /external/iproute2/examples/diffserv/
Edge32-cb-chains 35 # tag the rest of incoming packets from subnet 10.2.0.0/24 to fw value 1
36 # tag all incoming packets from any other subnet to fw tag 2
52 # anything with fw tag of 1 is passed on with a tcindex value 1
55 $TC filter add dev $INDEV parent ffff: protocol ip prio 1 handle 1 fw \
58 $TC filter add dev $INDEV parent ffff: protocol ip prio 2 handle 1 fw \
65 $TC filter add dev $INDEV parent ffff: protocol ip prio 3 handle 1 fw \
68 $TC filter add dev $INDEV parent ffff: protocol ip prio 4 handle 1 fw \
75 $TC filter add dev $INDEV parent ffff: protocol ip prio 5 handle 1 fw \
78 $TC filter add dev $INDEV parent ffff: protocol ip prio 6 handle 1 fw \
85 $TC filter add dev $INDEV parent ffff: protocol ip prio 7 handle 2 fw \
    [all...]
Edge1 50 $TC filter add $EGDEV parent 1:0 protocol ip prio 4 handle 1 fw classid 1:1
51 $TC filter add $EGDEV parent 1:0 protocol ip prio 4 handle 2 fw classid 1:2
52 $TC filter add $EGDEV parent 1:0 protocol ip prio 4 handle 3 fw classid 1:3
Edge2 35 # attach a fw classifier to the ingress which polices anything marked
43 $TC filter add dev $INDEV parent ffff: protocol ip prio 50 handle 3 fw \
66 $TC filter add $EGDEV parent 1:0 protocol ip prio 4 handle 1 fw classid 1:1
67 $TC filter add $EGDEV parent 1:0 protocol ip prio 4 handle 2 fw classid 1:2
68 $TC filter add $EGDEV parent 1:0 protocol ip prio 4 handle 3 fw classid 1:3
Edge31-cb-chains 32 # tag the rest of incoming packets from subnet 10.2.0.0/24 to fw value 1
33 # tag all incoming packets from any other subnet to fw tag 2
49 # anything with fw tag of 1 is passed on with a tcindex value 1
52 $TC filter add dev $INDEV parent ffff: protocol ip prio 4 handle 1 fw \
59 $TC filter add dev $INDEV parent ffff: protocol ip prio 5 handle 1 fw \
66 $TC filter add dev $INDEV parent ffff: protocol ip prio 6 handle 1 fw \
73 $TC filter add dev $INDEV parent ffff: protocol ip prio 6 handle 2 fw \
104 # replaced it with the fw classifier instead)
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_state_framebuffer.c 186 float fw = viewport->scale[0] * 2; local
200 fw,
215 if (fw < 0) {
217 prescale.translate[0] += -fw;
218 fw = -fw;
232 prescale.scale[0] *= fw / (fw + fx);
233 fw += fx;
249 if (fx + fw > fb_width)
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_state_framebuffer.c 186 float fw = viewport->scale[0] * 2; local
200 fw,
215 if (fw < 0) {
217 prescale.translate[0] += -fw;
218 fw = -fw;
232 prescale.scale[0] *= fw / (fw + fx);
233 fw += fx;
249 if (fx + fw > fb_width)
    [all...]
  /frameworks/testing/uiautomator_test_libraries/src/com/android/uiautomator/platform/
SurfaceFlingerHelper.java 380 BufferedWriter fw = null; local
382 fw = new BufferedWriter(new FileWriter(new File(rawAndProcDataFileName), false));
384 fw.write(String.format("Jankiness count: %d\n", getVsyncJankiness()));
385 fw.write(String.format("Max accumulated frames: %d\n", getMaxDeltaVsync()));
386 fw.write(String.format("Frame rate is: %f\n", getFrameRate()));
389 fw.write(String.valueOf(mRefreshPeriod));
390 fw.write("\n");
391 fw.write("app\tvsync\tset\tdelta(vsync)\tdelta^2(vsync)\t" +
401 fw.write(line);
407 if (fw != null)
    [all...]

Completed in 783 milliseconds

1 2 3 4