HomeSort by: relevance | last modified time | path
    Searched refs:data_type (Results 1 - 22 of 22) sorted by relevancy

  /src/tests/lib/libcurses/director/
returns.h 52 data_enum_t data_type; member in struct:__anon65b358240208
53 void *data_value; /* used if data_type is data_num
58 if data_type is data_var */
testlang_parse.y 815 cur.data_type = ret_type;
1093 if (returns_count.data_type != data_count)
1095 enum_names[returns_count.data_type]);
1188 (response[0].data_type == data_slave_error))
1198 if ((response[i].data_type != data_byte) &&
1199 (response[i].data_type != data_err) &&
1200 (response[i].data_type != data_ok))
1208 fprintf(stderr, " data_type %s\n",
1209 enum_names[command.returns[i].data_type]);
1214 if (command.returns[i].data_type != data_var)
    [all...]
testlang_conf.l 325 yylval.retval->data_type = data_byte;
356 yylval.retval->data_type = data_byte;
  /src/common/dist/zlib/examples/
gznorm.c 167 } while (strm.avail_out == 0 && (strm.data_type & 0x80) == 0);
181 if (strm.data_type & 0x80) {
209 // If strm.data_type & 0xc0 is 0x80, then the last byte of
212 // also has strm.data_type & 0x1f bits of the next deflate
213 // block, in the range 0..7. If strm.data_type & 0xc0 is
215 // end of the deflate stream, followed by strm.data_type &
225 int bits = strm.data_type & 0x1f;
301 int mix = (strm.data_type & 0x80) && bits;
332 if (strm.data_type & 0x40) {
363 else if (strm.data_type & 0x80
    [all...]
gzjoin.c 341 if (strm.data_type & 128) {
347 pos = strm.data_type & 7;
378 pos = strm.data_type & 7;
gzappend.c 35 * - Use new data_type definition for zlib 1.2.1
326 if (strm->data_type & 128) {
327 if (strm->data_type & 64)
328 left = strm->data_type & 0x1f;
330 lastbit = strm->data_type & 0x1f;
zran.c 181 // order generate an access point there. Set data_type to imitate
183 strm.data_type = 0x80;
191 if ((strm.data_type & 0xc0) == 0x80 &&
198 index = add_point(index, strm.data_type & 7, totin - strm.avail_in,
440 } while (ret == Z_OK && (strm.data_type & 0x80) == 0);
  /src/common/dist/zlib/contrib/dotzlib/DotZLib/
DotZLib.cs 48 int data_type; field in struct:DotZLib.ZStream
  /src/sys/dev/marvell/
mvxpsec.c 1729 switch (mv_p->data_type) {
2484 mv_p->data_type = MVXPSEC_DATA_RAW;
2528 mv_p->data_type = MVXPSEC_DATA_NONE;
2535 mv_p->data_type = MVXPSEC_DATA_NONE;
2542 mv_p->data_type = MVXPSEC_DATA_MBUF;
2579 mv_p->data_type = MVXPSEC_DATA_NONE;
2586 mv_p->data_type = MVXPSEC_DATA_NONE;
2593 mv_p->data_type = MVXPSEC_DATA_UIO;
2607 if (mv_p->data_type == MVXPSEC_DATA_RAW) {
2611 else if (mv_p->data_type == MVXPSEC_DATA_MBUF)
    [all...]
mvxpsecvar.h 289 enum mvxpsec_data_type data_type; member in struct:mvxpsec_packet
  /src/sys/net/
zlib.h 378 int data_type; /* best guess about the data type: ascii or binary */ member in struct:z_stream_s
454 /* Possible values of the data_type field */
567 deflate() may update data_type if it can make a good guess about
zlib.c 376 Byte data_type; /* UNKNOWN, BINARY or ASCII */ member in struct:deflate_state
950 strm->data_type = Z_UNKNOWN;
3029 if (s->data_type == Z_UNKNOWN) set_data_type(s);
3227 s->data_type = (Byte)(bin_freq > (ascii_freq >> 2) ? Z_BINARY : Z_ASCII);
  /src/sys/dev/usb/
if_athn_usb.h 243 uint8_t data_type; member in struct:ar_tx_frame
if_athn_usb.c 2521 txf->data_type = AR_HTC_NORMAL;
  /src/common/dist/zlib/contrib/pascal/
zlibpas.pas 44 data_type: Integer; (* best guess about the data type: ascii or binary *)
  /src/common/dist/zlib/
trees.c 1006 if (s->strm->data_type == Z_UNKNOWN)
1007 s->strm->data_type = detect_data_type(s);
zlib.h 104 int data_type; /* best guess about the data type: binary or text member in struct:z_stream_s
209 /* Possible values of the data_type field for deflate() */
348 deflate() may update strm->data_type if it can make a good guess about
445 To assist in this, on return inflate() always sets strm->data_type to the
453 data_type is set, in which case the number of unused bits will be less than
454 eight. data_type is set as noted here every time inflate() returns for all
462 256 is added to the value of strm->data_type when inflate() returns
1030 location in the input stream can be determined from avail_in and data_type
inflate.c 1267 strm->data_type = (int)state->bits + (state->last ? 64 : 0) +
deflate.c 646 strm->data_type = Z_UNKNOWN;
  /src/common/dist/zlib/contrib/ada/
zlib-thin.ads 378 data_type : Int; -- best guess about the data type:
  /src/common/dist/zlib/contrib/delphi/
ZLib.pas 39 data_type: Integer; // best guess about the data type: ascii or binary
  /src/common/dist/zlib/contrib/minizip/
zip.c 1175 zi->ci.stream.data_type = Z_BINARY;
1585 if (zi->ci.stream.data_type == Z_ASCII)

Completed in 61 milliseconds