HomeSort by relevance Sort by last modified time
    Searched refs:bytep (Results 1 - 10 of 10) sorted by null

  /external/iptables/extensions/
libxt_mangle.c 288 const unsigned char *bytep; local
290 bytep = (const unsigned char *) &(addrp->s_addr);
291 sprintf(buf, "%d.%d.%d.%d", bytep[0], bytep[1], bytep[2], bytep[3]);
  /external/iproute2/tc/
m_ipt.c 113 const unsigned char *bytep; local
115 bytep = (const unsigned char *) &(addrp->s_addr);
116 sprintf(buf, "%d.%d.%d.%d", bytep[0], bytep[1], bytep[2], bytep[3]);
  /toolchain/binutils/binutils-2.25/gas/config/
tc-rl78.c 239 int bytep, bitp; local
254 bytep = pos / 8;
265 gas_assert (bytep < rl78_bytes.n_base);
266 rl78_bytes.base[bytep] |= svalm;
270 bytep ++;
274 gas_assert (bytep < rl78_bytes.n_base);
275 rl78_bytes.base[bytep] |= valm;
    [all...]
tc-rx.c 858 int bytep, bitp;
873 bytep = pos / 8;
884 gas_assert (bytep < rx_bytes.n_base);
885 rx_bytes.base[bytep] |= svalm;
889 bytep ++;
893 gas_assert (bytep < rx_bytes.n_base);
894 rx_bytes.base[bytep] |= valm;
857 int bytep, bitp; local
    [all...]
  /external/iptables/iptables/
nft-arp.c 49 const unsigned char *bytep; local
51 bytep = (const unsigned char *) &(addrp->s_addr);
52 sprintf(buf, "%d.%d.%d.%d", bytep[0], bytep[1], bytep[2], bytep[3]);
  /external/iptables/libxtables/
xtables.c 1205 const unsigned char *bytep = (const void *)&addrp->s_addr; local
1207 sprintf(buf, "%u.%u.%u.%u", bytep[0], bytep[1], bytep[2], bytep[3]);
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
mbitmap.go 173 // bytep points to the byte holding the mark bit.
174 // mask is a byte with a single bit set that can be &ed with *bytep
182 bytep *uint8
309 return *m.bytep&m.mask != 0
319 atomic.Or8(m.bytep, m.mask)
324 *m.bytep |= m.mask
332 atomic.And8(m.bytep, ^m.mask)
337 *m.bytep ^= m.mask
355 m.bytep = (*uint8)(unsafe.Pointer(uintptr(unsafe.Pointer(m.bytep)) + 1)
    [all...]
mgcmark.go     [all...]
  /prebuilts/go/linux-x86/src/runtime/
mbitmap.go 173 // bytep points to the byte holding the mark bit.
174 // mask is a byte with a single bit set that can be &ed with *bytep
182 bytep *uint8
309 return *m.bytep&m.mask != 0
319 atomic.Or8(m.bytep, m.mask)
324 *m.bytep |= m.mask
332 atomic.And8(m.bytep, ^m.mask)
337 *m.bytep ^= m.mask
355 m.bytep = (*uint8)(unsafe.Pointer(uintptr(unsafe.Pointer(m.bytep)) + 1)
    [all...]
mgcmark.go     [all...]

Completed in 531 milliseconds