Searched refs:cw (Results 1 - 25 of 27) sorted by relevance

12

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/asm/
H A DFieldWriter.java47 private ClassWriter cw; field in class:FieldWriter
100 * @param cw the class writer to which this field must be added.
108 final ClassWriter cw,
115 if (cw.firstField == null) {
116 cw.firstField = this;
118 cw.lastField.next = this;
120 cw.lastField = this;
121 this.cw = cw;
123 this.name = cw
107 FieldWriter( final ClassWriter cw, final int access, final String name, final String desc, final String signature, final Object value) argument
[all...]
H A DAnnotationWriter.java43 private final ClassWriter cw; field in class:AnnotationWriter
93 * @param cw the class writer to which this annotation must be added.
101 final ClassWriter cw,
107 this.cw = cw;
121 bv.putShort(cw.newUTF8(name));
124 bv.put12('s', cw.newUTF8((String) value));
126 bv.put12('B', cw.newInteger(((Byte) value).byteValue()).index);
129 bv.put12('Z', cw.newInteger(v).index);
131 bv.put12('C', cw
100 AnnotationWriter( final ClassWriter cw, final boolean named, final ByteVector bv, final ByteVector parent, final int offset) argument
[all...]
H A DAttribute.java136 * @param cw the class to which this attribute must be added. This parameter
154 ClassWriter cw,
184 * @param cw the class writer to be used to convert the attributes into byte
202 final ClassWriter cw,
211 cw.newUTF8(attr.type);
212 size += attr.write(cw, code, len, maxStack, maxLocals).length + 6;
222 * @param cw the class writer to be used to convert the attributes into byte
239 final ClassWriter cw,
248 ByteVector b = attr.write(cw, code, len, maxStack, maxLocals);
249 out.putShort(cw
153 write( ClassWriter cw, byte[] code, int len, int maxStack, int maxLocals) argument
201 getSize( final ClassWriter cw, final byte[] code, final int len, final int maxStack, final int maxLocals) argument
238 put( final ClassWriter cw, final byte[] code, final int len, final int maxStack, final int maxLocals, final ByteVector out) argument
[all...]
H A DMethodWriter.java49 ClassWriter cw; field in class:MethodWriter
75 * the ClassReader associated to this writer in <code>cw.cr</code>. More
77 * <code>cw.cr.b</code>.
83 * the ClassReader associated to this writer in <code>cw.cr</code>. More
85 * <code>cw.cr.b</code>.
503 * @param cw the class writer in which the method must be added.
514 final ClassWriter cw,
522 if (cw.firstMethod == null) {
523 cw.firstMethod = this;
525 cw
513 MethodWriter( final ClassWriter cw, final int access, final String name, final String desc, final String signature, final String[] exceptions, final boolean computeMaxs) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/ipv4/ipvs/
H A Dip_vs_wrr.c33 int cw; /* current weight */ member in struct:ip_vs_wrr_mark
102 mark->cw = 0;
129 if (mark->cw > mark->mw)
130 mark->cw = 0;
148 * This loop will always terminate, because mark->cw in (0, max_weight]
164 mark->cw -= mark->di;
165 if (mark->cw <= 0) {
166 mark->cw = mark->mw;
170 if (mark->cw == 0) {
185 atomic_read(&dest->weight) >= mark->cw) {
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/sys-i386/
H A Dsigcontext.c35 err |= clear_user_proc(&to->cw, sizeof(to->cw));
45 err |= copy_to_user_proc(&to->cw, &from->cw, sizeof(to->cw));
H A Duser-offsets.c41 OFFSET(HOST_SC_FP_CW, _fpstate, cw);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-i386/
H A Dsigcontext.h37 unsigned long cw; member in struct:_fpstate
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-x86_64/
H A Dsigcontext32.h26 __u32 cw; member in struct:_fpstate_ia32
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/dvb/
H A Dca.h73 unsigned char cw[8]; member in struct:ca_descr
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/dvb/ttpci/
H A Dav7110_ca.c315 (descr->cw[0]<<8)|descr->cw[1],
316 (descr->cw[2]<<8)|descr->cw[3],
317 (descr->cw[4]<<8)|descr->cw[5],
318 (descr->cw[6]<<8)|descr->cw[7]);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/persist/test/
H A DEnhanced3.java42 @KeyField(10) Character cw; field in class:Enhanced3
99 output.writeChar(cw.charValue());
125 cw = Character.valueOf(input.readChar());
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/zebra/ospfd/
H A Dospf_spf.c443 struct vertex *cw;
454 cw = (struct vertex *) getdata (node);
455 if (cw->distance > w->distance)
475 struct vertex *w, *cw;
610 cw = (struct vertex *) getdata (node);
613 if (cw->distance < w->distance)
619 else if (cw->distance == w->distance)
623 ospf_nexthop_merge (cw->nexthop, w->nexthop);
634 ospf_vertex_free (cw);
635 listnode_delete (candidate, cw);
441 struct vertex *cw; local
473 struct vertex *w, *cw; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/ata/
H A Dsata_mv.c1085 __le16 *cw; local
1110 cw = &pp->crqb[in_index].ata_cmd[0];
1125 mv_crqb_pack_cmd(cw++, tf->hob_nsect, ATA_REG_NSECT, 0);
1130 mv_crqb_pack_cmd(cw++, tf->hob_feature, ATA_REG_FEATURE, 0);
1131 mv_crqb_pack_cmd(cw++, tf->feature, ATA_REG_FEATURE, 0);
1138 mv_crqb_pack_cmd(cw++, tf->nsect, ATA_REG_NSECT, 0);
1139 mv_crqb_pack_cmd(cw++, tf->hob_lbal, ATA_REG_LBAL, 0);
1140 mv_crqb_pack_cmd(cw++, tf->lbal, ATA_REG_LBAL, 0);
1141 mv_crqb_pack_cmd(cw++, tf->hob_lbam, ATA_REG_LBAM, 0);
1142 mv_crqb_pack_cmd(cw
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dimc.c616 int i, j, cw_len, cw; local
623 cw = 0;
631 cw = get_bits(&q->gb, cw_len);
633 q->codewords[j] = cw;
H A Drv34.c75 uint16_t cw[size], syms[size]; local
93 cw[i] = codes[bits2[i]]++;
97 cw, 2, 2,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-cris/arch-v32/
H A Djuliette.h223 cw = 7 enumerator in enum:__anon8664
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/console/
H A Dbitblit.c208 unsigned int cw = vc->vc_font.width; local
210 unsigned int rw = info->var.xres - (vc->vc_cols*cw);
H A Dfbcon_ccw.c193 unsigned int cw = vc->vc_font.width; local
195 unsigned int rw = info->var.yres - (vc->vc_cols*cw);
H A Dfbcon_cw.c177 unsigned int cw = vc->vc_font.width; local
179 unsigned int rw = info->var.yres - (vc->vc_cols*cw);
H A Dfbcon_ud.c224 unsigned int cw = vc->vc_font.width; local
226 unsigned int rw = info->var.xres - (vc->vc_cols*cw);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ia64/ia32/
H A Dia32priv.h78 unsigned int cw, member in struct:_fpstate_ia32
H A Dia32_signal.c175 * cw ar.fcr(0:12) with bits 7 and 6 not used
233 __put_user(fcr & 0xffff, &save->cw);
342 /* setting bits 0..5 8..12 with cw and 39..47 from mxcsr */
343 __get_user(lo, (unsigned int __user *)&save->cw);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/video/
H A Dw9968cf.c1825 u16 x, y, w, h, scx, scy, cw, ch, ax, ay; local
1864 cw = (fw >= fh) ? cam->maxwidth : SC(win.width)/fh;
1867 cw = w;
1878 s_win.x = (s_win.width - cw) / 2;
1911 if ((ax + cw) > cam->maxwidth)
1912 ax = cam->maxwidth - cw;
1937 err += w9968cf_write_reg(cam, scx + x + cw, 0x12);
1968 "cw=%u, ch=%u, win.x=%u, win.y=%u, win.width=%u, win.height=%u",
1969 x, y, w, h, ax, ay, s_win.x, s_win.y, cw, ch, win.x, win.y,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/char/
H A Dsynclink_gt.c2912 static void remove_cond_wait(struct cond_wait **head, struct cond_wait *cw) argument
2915 remove_wait_queue(&cw->q, &cw->wait);
2918 if (w == cw) {

Completed in 161 milliseconds

12