HomeSort by relevance Sort by last modified time
    Searched defs:bw (Results 26 - 50 of 180) sorted by null

12 3 4 5 6 7 8

  /libcore/luni/src/test/java/libcore/java/io/
OldFileWriterTest.java 35 BufferedWriter bw; field in class:OldFileWriterTest
155 bw.close();
  /libcore/luni/src/test/java/libcore/java/nio/file/
FilesSetup.java 84 BufferedWriter bw = new BufferedWriter(fw); local
85 bw.write(TEST_FILE_DATA);
86 bw.close();
  /libcore/ojluni/src/main/java/sun/misc/
JarIndex.java 273 BufferedWriter bw = new BufferedWriter local
275 bw.write("JarIndex-Version: 1.0\n\n");
281 bw.write(jar + "\n");
286 bw.write(listitr.next() + "\n");
289 bw.write("\n");
291 bw.flush();
  /bionic/libc/arch-mips/string/
memmove.c 82 a[i] = bw.b.B##i; \
128 bitfields_t bw; local
129 bw.v = *((reg_t*) b);
memcpy.c 82 a[i] = bw.b.B##i; \
113 bitfields_t bw; local
114 bw.v = *((reg_t*) b);
207 bitfields_t bw; local
208 bw.v = *((reg_t*) b);
211 x[0] = bw.b.B0;
212 x[1] = bw.b.B1;
213 x[2] = bw.b.B2;
214 x[3] = bw.b.B3;
215 x[4] = bw.b.B4
    [all...]
  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
GatherAPIData.java 178 BufferedWriter bw = null; local
181 bw = new BufferedWriter(osw);
184 bw.write(String.valueOf(APIInfo.VERSION) + APIInfo.SEP); // header version
185 bw.write(srcName + APIInfo.SEP); // source name
186 bw.write((base == null ? "" : base) + APIInfo.SEP); // base
187 bw.newLine();
188 writeResults(results, bw);
189 bw.close(); // should flush, close all, etc
191 try { bw.close(); } catch (IOException e2) {}
GatherAPIDataOld.java 169 BufferedWriter bw = null; local
172 bw = new BufferedWriter(osw);
175 bw.write(String.valueOf(APIInfo.VERSION) + APIInfo.SEP); // header version
176 bw.write(srcName + APIInfo.SEP); // source name
177 bw.write((base == null ? "" : base) + APIInfo.SEP); // base
178 bw.newLine();
179 writeResults(results, bw);
180 bw.close(); // should flush, close all, etc
182 try { bw.close(); } catch (IOException e2) {}
  /external/libvpx/libvpx/vp9/encoder/
vp9_aq_variance.c 151 const int bw = 8 * num_8x8_blocks_wide_lookup[bs] - right_overflow; local
157 CONVERT_TO_BYTEPTR(vp9_highbd_64_zeros), 0, bw, bh,
163 bw, bh, &sse, &avg);
167 bw, bh, &sse, &avg);
169 var = sse - (unsigned int)(((int64_t)avg * avg) / (bw * bh));
170 return (unsigned int)(((uint64_t)256 * var) / (bw * bh));
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_rgtc.c 43 const unsigned bw = 4, bh = 4, comps = 4; local
49 for(x = 0; x < width; x += bw) {
51 for(i = 0; i < bw; ++i) {
69 const unsigned bw = 4, bh = 4, bytes_per_block = 8; local
74 for(x = 0; x < width; x += bw) {
75 uint8_t tmp[4][4]; /* [bh][bw][comps] */
77 for(i = 0; i < bw; ++i) {
116 const unsigned bw = 4, bh = 4, bytes_per_block = 8; local
121 for(x = 0; x < width; x += bw) {
122 uint8_t tmp[4][4]; /* [bh][bw][comps] *
167 const unsigned bw = 4, bh = 4, bytes_per_block = 8; local
235 const unsigned bw = 4, bh = 4, comps = 4; local
260 const unsigned bw = 4, bh = 4, bytes_per_block = 16; local
285 const unsigned bw = 4, bh = 4, bytes_per_block = 16; local
399 const unsigned bw = 4, bh = 4, bytes_per_block = 16; local
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_screen_cache.c 46 unsigned bw, bh, bpb, total_size, i; local
58 svga_format_size(key->format, &bw, &bh, &bpb);
66 unsigned img_size = ((w + bw - 1) / bw) * ((h + bh - 1) / bh) * d * bpb;
  /external/mesa3d/src/mesa/main/
texcompress_etc_tmp.h 146 const unsigned bw = 4, bh = 4, bs = 8, comps = 4; local
153 for (x = 0; x < width; x+= bw) {
158 for (i = 0; i < MIN2(bw, width - x); i++) {
  /external/mesa3d/src/mesa/swrast/
s_texture.c 218 GLuint bw, bh; local
233 _mesa_get_format_block_size(texImage->TexFormat, &bw, &bh);
235 assert(x % bw == 0);
247 map += stride * (y / bh) + texelSize * (x / bw);
  /external/python/cpython2/Lib/idlelib/
tabbedpages.py 178 bw = 2 # borderwidth variable in class:TabSet.TabButton
189 Frame.__init__(self, tab_row, borderwidth=self.bw, relief=RAISED)
237 self.mskl.ml = Frame(self.mskl, borderwidth=self.bw,
239 self.mskl.ml.place(x=0, y=-self.bw,
240 width=2*self.bw, height=self.bw*4)
245 self.mskr.mr = Frame(self.mskr, borderwidth=self.bw,
249 height = self.bw
251 height += self.bw
260 relx=0.0, x=-self.bw,
    [all...]
  /external/wpa_supplicant_8/src/ap/
ieee802_11_vht.c 169 u8 bw, chan1, chan2 = 0; local
179 bw = 0;
184 bw = 1;
186 bw = 3;
189 bw = 2;
212 *eid++ = bw; /* New Channel Width */
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
tabbedpages.py 178 bw = 2 # borderwidth variable in class:TabSet.TabButton
189 Frame.__init__(self, tab_row, borderwidth=self.bw, relief=RAISED)
237 self.mskl.ml = Frame(self.mskl, borderwidth=self.bw,
239 self.mskl.ml.place(x=0, y=-self.bw,
240 width=2*self.bw, height=self.bw*4)
245 self.mskr.mr = Frame(self.mskr, borderwidth=self.bw,
249 height = self.bw
251 height += self.bw
260 relx=0.0, x=-self.bw,
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
tabbedpages.py 178 bw = 2 # borderwidth variable in class:TabSet.TabButton
189 Frame.__init__(self, tab_row, borderwidth=self.bw, relief=RAISED)
237 self.mskl.ml = Frame(self.mskl, borderwidth=self.bw,
239 self.mskl.ml.place(x=0, y=-self.bw,
240 width=2*self.bw, height=self.bw*4)
245 self.mskr.mr = Frame(self.mskr, borderwidth=self.bw,
249 height = self.bw
251 height += self.bw
260 relx=0.0, x=-self.bw,
    [all...]
  /prebuilts/go/darwin-x86/src/regexp/syntax/
prog.go 286 func bw(b *bytes.Buffer, args ...string) { func
302 bw(b, pc, "\t")
304 bw(b, "\n")
315 bw(b, "alt -> ", u32(i.Out), ", ", u32(i.Arg))
317 bw(b, "altmatch -> ", u32(i.Out), ", ", u32(i.Arg))
319 bw(b, "cap ", u32(i.Arg), " -> ", u32(i.Out))
321 bw(b, "empty ", u32(i.Arg), " -> ", u32(i.Out))
323 bw(b, "match")
325 bw(b, "fail")
327 bw(b, "nop -> ", u32(i.Out)
    [all...]
  /prebuilts/go/linux-x86/src/regexp/syntax/
prog.go 286 func bw(b *bytes.Buffer, args ...string) { func
302 bw(b, pc, "\t")
304 bw(b, "\n")
315 bw(b, "alt -> ", u32(i.Out), ", ", u32(i.Arg))
317 bw(b, "altmatch -> ", u32(i.Out), ", ", u32(i.Arg))
319 bw(b, "cap ", u32(i.Arg), " -> ", u32(i.Out))
321 bw(b, "empty ", u32(i.Arg), " -> ", u32(i.Out))
323 bw(b, "match")
325 bw(b, "fail")
327 bw(b, "nop -> ", u32(i.Out)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
tabbedpages.py 178 bw = 2 # borderwidth variable in class:TabSet.TabButton
189 Frame.__init__(self, tab_row, borderwidth=self.bw, relief=RAISED)
237 self.mskl.ml = Frame(self.mskl, borderwidth=self.bw,
239 self.mskl.ml.place(x=0, y=-self.bw,
240 width=2*self.bw, height=self.bw*4)
245 self.mskr.mr = Frame(self.mskr, borderwidth=self.bw,
249 height = self.bw
251 height += self.bw
260 relx=0.0, x=-self.bw,
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
tabbedpages.py 178 bw = 2 # borderwidth variable in class:TabSet.TabButton
189 Frame.__init__(self, tab_row, borderwidth=self.bw, relief=RAISED)
237 self.mskl.ml = Frame(self.mskl, borderwidth=self.bw,
239 self.mskl.ml.place(x=0, y=-self.bw,
240 width=2*self.bw, height=self.bw*4)
245 self.mskr.mr = Frame(self.mskr, borderwidth=self.bw,
249 height = self.bw
251 height += self.bw
260 relx=0.0, x=-self.bw,
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/testtype/
InstrumentationFileTest.java 132 try (BufferedWriter bw = new BufferedWriter(new FileWriter(testFile))) {
134 bw.write(testToRun.getClassName() + METHOD_SEPARATOR + testToRun.getTestName());
135 bw.newLine();
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
JUnitCodeGen.java 316 BufferedWriter bw = new BufferedWriter(w); local
317 bw.write(content);
318 bw.close();
  /frameworks/base/core/java/android/ddm/
DdmHandleViewDebug.java 418 BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(b), 32 * 1024); local
420 ViewDebug.profileViewAndChildren(targetView, bw);
425 bw.close();
  /external/boringssl/src/crypto/base64/
base64.c 72 crypto_word_t bw = b; local
73 /* |crypto_word_t| is larger than |uint8_t|, so |aw| and |bw| have the same
74 * MSB. |aw| < |bw| iff MSB(|aw| - |bw|) is 1. */
75 return constant_time_msb_w(aw - bw);
  /external/flac/libFLAC/
bitwriter.c 71 #define FLAC__TOTAL_BITS(bw) (FLAC__WORDS_TO_BITS((bw)->words) + (bw)->bits)
85 FLAC__bool bitwriter_grow_(FLAC__BitWriter *bw, unsigned bits_to_add)
90 FLAC__ASSERT(0 != bw);
91 FLAC__ASSERT(0 != bw->buffer);
94 new_capacity = bw->words + ((bw->bits + bits_to_add + FLAC__BITS_PER_WORD - 1) / FLAC__BITS_PER_WORD);
99 if(bw->capacity >= new_capacity)
103 if((new_capacity - bw->capacity) % FLAC__BITWRITER_DEFAULT_INCREMENT
127 FLAC__BitWriter *bw = calloc(1, sizeof(FLAC__BitWriter)); local
    [all...]

Completed in 1135 milliseconds

12 3 4 5 6 7 8