HomeSort by relevance Sort by last modified time
    Searched defs:bit (Results 51 - 75 of 92) sorted by null

1 23 4

  /external/tremolo/Tremolo/
codebook.c 98 /* 32 bit float (not IEEE; nonnormalized mantissa +
167 int bit=(entry>>(length-j-1))&1; local
174 if (chase < 0 || chase >= n || chase*2+bit > n*2+1) return 1;
175 if(!r[chase*2+bit])
176 r[chase*2+bit]=top;
177 chase=r[chase*2+bit];
181 int bit=(entry>>(length-j-1))&1; local
186 r[chase*2+bit]= decpack(i,count++,quantvals,b,opb,maptype) |
226 * This probably wastes a bit of space, but it shouldn't
478 /* this is the correct boundary here; we lose one bit t
658 int bit=(lok>>i)&1; local
688 int bit=(lok>>i)&1; local
    [all...]
mdct.c 251 int bit = 0; local
255 DATA_TYPE b = bitrev12(bit++);
bitwise.c 441 /* does EOF trip properly after a single additional bit? */
447 /* does EOF stay set over additional bit reads? */
475 /* does EOF trip properly after a single additional bit? */
486 /* does EOF stay set over additional bit reads? */
591 fprintf(stderr,"\nNull bit call (LSb): ");
599 fprintf(stderr,"\n32 bit preclipped packing (LSb): ");
635 fprintf(stderr,"\nSingle bit unclipped packing (LSb): ");
701 long bit=0; local
709 flat[word] |= ((values[j]>>k)&0x1)<<bit;
710 bit++
    [all...]
  /external/v8/src/mips/
assembler-mips.h 82 int bit() const { function in struct:v8::internal::Register
138 int bit() const { function in struct:v8::internal::FPURegister
473 // When paired with MTC1 to write a value to a 64-bit FPR, the MTC1 must be
  /external/yaffs2/yaffs2/utils/
mkyaffsimage.c 148 unsigned bit = 0; local
167 bit++;
170 ecc ^= bit;
  /external/yaffs2/yaffs2/
yaffs_tagscompat.c 72 unsigned bit = 0; local
78 bit++;
80 ecc ^= bit;
  /libcore/luni/src/main/java/org/apache/xpath/axes/
AxesWalker.java 206 int bit = WalkerFactory.getAnalysisBitFromAxes(axis); local
207 return bit;
UnionPathIterator.java 241 int bit = m_exprs[i].getAnalysisBits(); local
242 bits |= bit;
WalkingIterator.java 95 int bit = walker.getAnalysisBits(); local
96 bits |= bit;
LocPathIterator.java 123 int bit = WalkerFactory.getAnalysisBitFromAxes(axis); local
124 return bit;
521 // I'm a bit worried about this one, since it doesn't have the
  /device/samsung/crespo/alsa-lib/src/pcm/
pcm_iec958.c 73 * to be sure that bit 4 upt 31 will carry
79 int bit; local
81 data >>= 4; /* start from bit 4 */
83 for (bit = 4; bit <= 30; bit++) {
92 * Compose 32bit IEC958 subframe, two sub frames
95 * bit 0-3 = preamble
97 * 8-27 = data (12-27 for 16bit, 8-27 for 20bit, and 24bit without AUX
    [all...]
  /external/chromium/third_party/icu/source/i18n/
uspoof_impl.cpp 248 // bit for the script of this char. Gets rid of this special case.
691 uint32_t bit = 1 << (script & 31); local
693 bits[index] |= bit;
711 uint32_t bit = 1 << (script & 31);
717 bits[index] &= bit;
746 // This bit counter is good for sparse numbers of '1's, which is
753 x &= (x - 1); // and off the least significant one bit.
951 // int32_t all the rest // Swap the rest, all is 32 bit stuff.
  /external/emma/core/java12/com/vladium/jcd/lib/
Types.java 52 final int bit = IAccessFlags.ALL_ACC [f]; local
54 if ((flags & bit) != 0)
61 if (bit == IAccessFlags.ACC_SUPER)
72 final int bit = IAccessFlags.ALL_ACC [f]; local
74 if ((flags & bit) != 0)
  /external/icu4c/i18n/
uspoof_impl.cpp 248 // bit for the script of this char. Gets rid of this special case.
691 uint32_t bit = 1 << (script & 31); local
693 bits[index] |= bit;
711 uint32_t bit = 1 << (script & 31);
717 bits[index] &= bit;
746 // This bit counter is good for sparse numbers of '1's, which is
753 x &= (x - 1); // and off the least significant one bit.
951 // int32_t all the rest // Swap the rest, all is 32 bit stuff.
  /hardware/qcom/media/mm-video/vidc/vdec/inc/
h264_utils.h 173 uint32 bit; member in class:RbspParser
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/TNETW_Driver/TNETWIF/BusTxn/
wspi.c 91 #define WSPI_INIT_CMD_BYPASS_BIT 0x80 /* the extra bypass bit is sampled by the TNET as '1' */
132 /* The 31's bit in the WSPI cmd is read bit */
1327 UINT8 bit, temp; local
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/core/data_ctrl/Rx/
rx.c 634 /* if the pattern bit mask is enabled add it to the end of the request */
641 WLAN_REPORT_INFORMATION(pRxData->hReport, RX_DATA_MODULE_LOG, ("%s: Closed field pattern, length = %d, total length = %d, pattern bit mask = %d.\n", __FUNCTION__, fieldPattern->length, *lenFieldPatterns, ((fieldPattern->flag & RX_DATA_FILTER_FLAG_USE_BIT_MASK) == RX_DATA_FILTER_FLAG_USE_BIT_MASK)));
673 /* which byte in the mask and which bit in the byte we're at */
674 int bit = maskIter % BIT_TO_BYTE_FACTOR; local
677 /* is the bit in the mask set */
678 BOOL isSet = ((request->mask[byte] & (1 << bit)) == (1 << bit));
681 ("%s: MaskIter = %d, Byte = %d, Bit = %d, isSet = %d\n", __FUNCTION__, maskIter, byte, bit, isSet));
684 /* the current bit is not set or we've reached the ethernet header boundary *
    [all...]
  /external/blktrace/
blkiomon.c 45 struct blk_io_trace bit; member in struct:trace
108 struct blk_io_trace *bit = &t->bit; local
114 fprintf(debug.fp, "magic %16d\n", bit->magic);
115 fprintf(debug.fp, "sequence %16d\n", bit->sequence);
116 fprintf(debug.fp, "time %16ld\n", (unsigned long)bit->time);
117 fprintf(debug.fp, "sector %16ld\n", (unsigned long)bit->sector);
118 fprintf(debug.fp, "bytes %16d\n", bit->bytes);
119 fprintf(debug.fp, "action %16x\n", bit->action);
120 fprintf(debug.fp, "pid %16d\n", bit->pid)
454 struct blk_io_trace *bit; local
    [all...]
  /external/bluetooth/bluez/sbc/
sbc.c 77 /* bit number x set means joint stereo has been used in subband x */
148 char bit = ((octet ^ crc) & 0x80) >> 7; local
150 crc = ((crc & 0x7f) << 1) ^ (bit ? 0x1d : 0);
161 * the sampling frequency (as 2 bit integer)
387 int ch, sb, blk, bit; /* channel, subband, block and bit standard local
498 for (bit = 0; bit < bits[ch][sb]; bit++) {
503 audio_sample |= 1 << (bits[ch][sb] - bit - 1)
    [all...]
  /external/tcpdump/
print-802_11.c 962 /* There may be a problem w/ AP not having this bit set */
1006 print_radiotap_field(struct cpack_state *s, u_int32_t bit, int *pad)
1018 switch (bit) {
1055 /* this bit indicates a field whose
1059 printf("[0x%08x] ", bit);
1068 switch (bit) {
1134 #define BIT(n) (1 << n)
1136 (EXTRACT_LE_32BITS(__p) & BIT(IEEE80211_RADIOTAP_EXT)) != 0
1142 enum ieee80211_radiotap_type bit; local
1186 /* clear the least significant bit that is set *
    [all...]
  /hardware/ti/wlan/wl1271/stad/src/Data_link/
rx.c 616 /* if the pattern bit mask is enabled add it to the end of the request */
623 TRACE3(pRxData->hReport, REPORT_SEVERITY_INFORMATION, ": Closed field pattern, length = %d, total length = %d, pattern bit mask = %d.\n", fieldPattern->length, *lenFieldPatterns, ((fieldPattern->flag & RX_DATA_FILTER_FLAG_USE_BIT_MASK) == RX_DATA_FILTER_FLAG_USE_BIT_MASK));
655 /* which byte in the mask and which bit in the byte we're at */
656 int bit = maskIter % 8; local
659 /* is the bit in the mask set */
660 TI_BOOL isSet = ((request->mask[byte] & (1 << bit)) == (1 << bit));
662 TRACE4(pRxData->hReport, REPORT_SEVERITY_INFORMATION, ": MaskIter = %d, Byte = %d, Bit = %d, isSet = %d\n", maskIter, byte, bit, isSet);
665 /* the current bit is not set or we've reached the ethernet header boundary *
    [all...]
  /system/wlan/ti/wilink_6_1/stad/src/Data_link/
rx.c 610 /* if the pattern bit mask is enabled add it to the end of the request */
617 TRACE3(pRxData->hReport, REPORT_SEVERITY_INFORMATION, ": Closed field pattern, length = %d, total length = %d, pattern bit mask = %d.\n", fieldPattern->length, *lenFieldPatterns, ((fieldPattern->flag & RX_DATA_FILTER_FLAG_USE_BIT_MASK) == RX_DATA_FILTER_FLAG_USE_BIT_MASK));
649 /* which byte in the mask and which bit in the byte we're at */
650 int bit = maskIter % 8; local
653 /* is the bit in the mask set */
654 TI_BOOL isSet = ((request->mask[byte] & (1 << bit)) == (1 << bit));
656 TRACE4(pRxData->hReport, REPORT_SEVERITY_INFORMATION, ": MaskIter = %d, Byte = %d, Bit = %d, isSet = %d\n", maskIter, byte, bit, isSet);
659 /* the current bit is not set or we've reached the ethernet header boundary *
    [all...]
  /dalvik/vm/analysis/
RegisterMap.c 157 LOGI("Register Map bit difference stats:\n");
364 * Given a line of registers, output a bit vector that indicates whether
369 * in the low bit of the first byte.
380 val |= 0x80; /* set hi bit */
535 LOGE("GLITCH: addr %d reg %d: bit=%d reg=%d(%d)\n",
558 * Advance "ptr" to ensure 32-bit alignment.
764 /* a bit late */
1098 Each entry consists of an address and a bit vector. Adjacent entries are
1103 bit vectors. However, the register values at a given address do not
1311 int prev, cur, bit; local
    [all...]
  /external/v8/src/ia32/
assembler-ia32.h 75 int bit() const { function in struct:v8::internal::Register
300 // A Displacement describes the 32bit immediate field of an instruction which
476 // - unless specified otherwise, instructions operate on 32bit operands
477 // - instructions on 8bit (byte) operands/registers have a trailing '_b'
478 // - instructions on 16bit (word) operands/registers have a trailing '_w'
639 // Bit operations.
  /hardware/broadcom/wlan/bcm4329/src/bcmsdio/sys/
bcmsdspi.c 1052 sd_info(("%s: write ESCI bit\n", __FUNCTION__));
1053 /* Enable continuous SPI interrupt (ESCI bit) */
1104 /* sdspi_cmd_issue() returns with the command complete bit
1170 /* sdspi_cmd_issue() returns with the command complete bit
1188 sdspi_cmd_getrsp(sdioh_info_t *sd, uint32 *rsp_buffer, int count /* num 32 bit words */)
1267 /* Set upper bit in byte count if necessary, but don't set it for 512 bytes. */
1557 uint8 c, j, bit, crc = 0; local
1582 uint16 j, c, bit; local
    [all...]

Completed in 754 milliseconds

1 23 4