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

1 2 3

  /bionic/libm/src/
k_rem_pio2f.c 51 float z,fw,f[20],fq[20],q[20]; local
68 for(j=0,fw=0.0;j<=jx;j++) fw += x[j]*f[jx+i-j]; q[i] = fw;
75 fw = (float)((int32_t)(twon8* z));
76 iq[i] = (int32_t)(z-two8*fw);
77 z = q[j-1]+fw;
127 for(j=0,fw=0.0;j<=jx;j++) fw += x[j]*f[jx+i-j];
128 q[i] = fw;
    [all...]
k_rem_pio2.c 159 double z,fw,f[20],fq[20],q[20]; local
176 for(j=0,fw=0.0;j<=jx;j++) fw += x[j]*f[jx+i-j]; q[i] = fw;
183 fw = (double)((int32_t)(twon24* z));
184 iq[i] = (int32_t)(z-two24*fw);
185 z = q[j-1]+fw;
235 for(j=0,fw=0.0;j<=jx;j++) fw += x[j]*f[jx+i-j];
236 q[i] = fw;
    [all...]
  /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();
  /device/samsung/toro/recovery/
update_cdma_modem.c 56 static int modem_download_ioctl_fw(int sel, struct dpram_firmware* fw)
63 int ret = (fw != NULL) ? ioctl(fd, sel, fw) : ioctl(fd, sel);
76 struct dpram_firmware fw; local
90 fw.firmware = image_data;
91 fw.size = image_size;
92 fw.is_delta = 0;
94 ret = modem_download_ioctl_fw(IOCTL_MODEM_FW_UPDATE, &fw);
  /device/samsung/toroplus/recovery/
update_cdma_modem.c 56 static int modem_download_ioctl_fw(int sel, struct dpram_firmware* fw)
63 int ret = (fw != NULL) ? ioctl(fd, sel, fw) : ioctl(fd, sel);
76 struct dpram_firmware fw; local
90 fw.firmware = image_data;
91 fw.size = image_size;
92 fw.is_delta = 0;
94 ret = modem_download_ioctl_fw(IOCTL_MODEM_FW_UPDATE, &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();
  /build/core/
distdir.mk 55 $(eval fw := $(subst :,$(space),$(file))) \
56 $(eval src := $(word 1,$(fw))) \
57 $(eval dst := $(word 2,$(fw))) \
  /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));
  /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::__anon8075
  /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)
  /sdk/common/tests/src/com/android/utils/
PositionXmlParserTest.java 64 Writer fw = new BufferedWriter(new FileWriter(file)); local
65 fw.write(xml);
66 fw.close();
134 Writer fw = new BufferedWriter(new FileWriter(file)); local
135 fw.write(xml);
136 fw.close();
177 Writer fw = new BufferedWriter(new FileWriter(file)); local
178 fw.write(xml);
179 fw.close();
  /device/samsung/manta/self-extractors/samsung/staging/proprietary/
Android.mk 41 LOCAL_SRC_FILES := maxtouch.fw
42 LOCAL_MODULE_SUFFIX := .fw
51 LOCAL_SRC_FILES := maxtouch_hv.fw
52 LOCAL_MODULE_SUFFIX := .fw
61 LOCAL_SRC_FILES := maxtouch_nv.fw
62 LOCAL_MODULE_SUFFIX := .fw
  /external/iproute2/examples/
SYN-DoS.rate.limit 35 $TC filter add dev $INDEV parent ffff: protocol ip prio 50 handle 1 fw \
  /sdk/lint/libs/lint_checks/tests/src/com/android/tools/lint/
LintCliXmlParserTest.java 68 Writer fw = new BufferedWriter(new FileWriter(file)); local
69 fw.write(xml);
70 fw.close();
142 Writer fw = new BufferedWriter(new FileWriter(file)); local
143 fw.write(xml);
144 fw.close();
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/
TestSuiteFactory.java 119 FileWriter fw = new FileWriter(testSuite.getTestSuiteFile()); local
120 fw.write(data);
121 fw.flush();
122 fw.close();
  /hardware/samsung_slsi/exynos5/include/
exynos_gscaler.h 71 uint32_t fw; member in struct:__anon19378
  /packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
ImageViewTouchBase.java 314 final float fw = (float)mBitmapDisplayed.getWidth() / mThisWidth; local
317 return Math.max(fw, fh) * 4;
328 final float fw = (float)bitmapWidth / viewWidth; local
331 return Math.max(fw, fh) * 4;
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/
FlatPackageWriterImpl.java 162 FileWriter fw = new FileWriter(new File(outputDirectory, "Manifest")); local
163 fw.write(manifestWriter.getManifest(movieWithAdjustedTimescale));
164 fw.close();

Completed in 423 milliseconds

1 2 3