Searched refs:Byte (Results 51 - 73 of 73) sorted by relevance

123

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/bind/tuple/test/
H A DTupleFormatTest.java494 byteTest(Byte.MAX_VALUE - 1);
495 byteTest(Byte.MAX_VALUE);
496 byteTest(Byte.MAX_VALUE + 1);
497 byteTest(Byte.MIN_VALUE + 1);
498 byteTest(Byte.MIN_VALUE);
499 byteTest(Byte.MIN_VALUE - 1);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/sk98lin/
H A Dski2c.c327 int Byte) /* byte to send */
332 if (Byte & (1<<(7-i))) {
351 int Last) /* Last Byte Flag */
354 int Byte = 0; local
357 Byte <<= 1;
358 Byte |= SkI2cRcvBit(IoC);
368 return(Byte);
325 SkI2cSndByte( SK_IOC IoC, int Byte) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ppp-2.4.4/common/
H A Dzlib.c349 Byte data_type; /* UNKNOWN, BINARY or ASCII */
350 Byte method; /* STORED (for zip only) or DEFLATED */
795 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
816 s->method = (Byte)method;
939 put_byte(s, (Byte)(b >> 8));
940 put_byte(s, (Byte)(b & 0xff));
1159 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
1171 zmemcpy(ds->window, ss->window, ds->w_size * 2 * sizeof(Byte));
1296 register Byte scan_end1 = scan[best_len-1];
1297 register Byte scan_en
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/impl/
H A DSimpleFormat.java199 super(primitive ? Byte.TYPE : Byte.class, primitive);
204 return new Byte[len];
209 return Byte.valueOf(input.readByte());
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/
H A Ddeflate.h104 Byte method; /* STORED (for zip only) or DEFLATED */
H A Dtrees.c1169 put_byte(s, (Byte)s->bi_buf);
1184 put_byte(s, (Byte)s->bi_buf);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/
H A Ddeflate.h104 Byte method; /* STORED (for zip only) or DEFLATED */
H A Dtrees.c1169 put_byte(s, (Byte)s->bi_buf);
1184 put_byte(s, (Byte)s->bi_buf);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/asm/
H A DClassWriter.java821 } else if (cst instanceof Byte) {
822 int val = ((Byte) cst).intValue();
H A DClassReader.java1238 new Byte((byte) readInt(items[readUnsignedShort(v)])));
/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 DBindingTest.java243 {"f14", "java.lang.Byte"},
273 private Byte f14 = 123;
1254 {"f14", "java.lang.Byte"},
1255 {"g14", "java.lang.Byte"},
1281 {"f34", "java.lang.Byte"},
1293 checkSecKey(obj, "f2", obj.f2, Byte.class);
1305 checkSecKey(obj, "f14", obj.f14, Byte.class);
1325 nullifySecKey(obj, "f14", obj.f14, Byte.class);
1342 nullifySecKey(obj, "f34", obj.f34, Byte.class);
1432 private Byte f1
[all...]
H A DEvolveClasses.java2176 return "com.sleepycat.persist.evolve.IncompatibleClassException: Mutation is missing to evolve class: com.sleepycat.persist.test.EvolveClasses$DisallowNonKeyField_Byte2byte version: 0 to class: com.sleepycat.persist.test.EvolveClasses$DisallowNonKeyField_Byte2byte version: 1 Error: Old field type: java.lang.Byte is not compatible with the new type: byte for field: ff";
2738 return "com.sleepycat.persist.evolve.IncompatibleClassException: Mutation is missing to evolve class: com.sleepycat.persist.test.EvolveClasses$DisallowSecKeyField_Byte2short2 version: 0 to class: com.sleepycat.persist.test.EvolveClasses$DisallowSecKeyField_Byte2short2 version: 1 Error: Old field type: java.lang.Byte is not compatible with the new type: short for field: ff";
3213 return "com.sleepycat.persist.evolve.IncompatibleClassException: Type may not be changed for a primary key field or composite key class field when evolving class: com.sleepycat.persist.test.EvolveClasses$DisallowPriKeyField_Byte2short2 version: 0 to class: com.sleepycat.persist.test.EvolveClasses$DisallowPriKeyField_Byte2short2 version: 1 Error: Old field type: java.lang.Byte is not compatible with the new type: short for field: key";
3512 Byte key = 99;
3530 PrimaryIndex<Byte,AllowPriKeyField_byte2Byte>
3532 (Byte.class,
3536 TestCase.assertEquals(Byte.valueOf((byte) 99), obj.key);
3547 PrimaryIndex<Byte,AllowPriKeyField_byte2Byte>
3549 (Byte.class,
3598 PrimaryIndex<Byte,AllowPriKeyField_Byte2byte
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/bind/serial/test/
H A DSerialBindingTest.java111 primitiveBindingTest(new Byte((byte) 123));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/contrib/pascal/
H A Dzlibpas.pas226 procedure _memset(P: Pointer; B: Byte; count: Integer); cdecl;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/contrib/pascal/
H A Dzlibpas.pas226 procedure _memset(P: Pointer; B: Byte; count: Integer); cdecl;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/lib/zlib_inflate/
H A Dinflate.c764 Byte *saved_no = z->next_out;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/contrib/delphi/
H A DZLib.pas228 procedure _memset(P: Pointer; B: Byte; count: Integer); cdecl;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/contrib/delphi/
H A DZLib.pas228 procedure _memset(P: Pointer; B: Byte; count: Integer); cdecl;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68k/fpsp040/
H A Dutil.S640 | 0 - Byte
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/lib/zlib_deflate/
H A Ddeftree.c1082 s->data_type = (Byte)(bin_freq > (ascii_freq >> 2) ? Z_BINARY : Z_ASCII);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/model/
H A DBytecodeEnhancer.java103 PRIMITIVE_WRAPPERS.put(Byte.class.getName(), Type.BYTE);
1270 (INVOKESTATIC, "java/lang/Byte", "valueOf",
1271 "(B)Ljava/lang/Byte;");
1315 (INVOKEVIRTUAL, "java/lang/Byte", "byteValue", "()B");
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/contrib/minizip/
H A Dzip.c127 Byte buffered_data[Z_BUFSIZE];/* buffer contain compressed data to be writ*/
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/contrib/minizip/
H A Dzip.c127 Byte buffered_data[Z_BUFSIZE];/* buffer contain compressed data to be writ*/

Completed in 349 milliseconds

123