HomeSort by relevance Sort by last modified time
    Searched defs:SetBit (Results 1 - 17 of 17) sorted by null

  /external/ImageMagick/coders/
otb.c 309 #define SetBit(a,i,set) \
350 SetBit(info,4,1);
stegano.c 96 #define SetBit(i,set) SetPixelIndex(image,(Quantum) ((set) != 0 ? \
204 SetBit(i,GetBit(pixel.red,j));
209 SetBit(i,GetBit(pixel.green,j));
214 SetBit(i,GetBit(pixel.blue,j));
  /external/google-breakpad/src/client/linux/minidump_writer/
cpu_set.h 107 SetBit(start++);
128 void SetBit(uintptr_t index) {
  /art/compiler/optimizing/
intrinsics.h 124 void Set##name() { SetBit(k##name); } \
146 void SetBit(uint32_t bit) {
161 void Set##name() { SetBit(k##name); } \
  /art/runtime/base/
bit_vector.h 149 void SetBit(uint32_t idx) {
  /art/runtime/gc/accounting/
bitmap.h 62 ALWAYS_INLINE bool SetBit(size_t bit_index) {
164 return SetBit(BitIndexFromAddr(addr));
  /external/webrtc/webrtc/modules/audio_processing/utility/
delay_estimator_wrapper.c 26 static __inline uint32_t SetBit(uint32_t in, int pos) {
89 out = SetBit(out, i - kBandFirst);
119 out = SetBit(out, i - kBandFirst);
  /prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/compile/internal/big/
int.go 698 t.SetInt64(0).SetBit(&t, int(r-m-1), 1).Exp(&g, &t, p)
751 // SetBit sets z to x, with x's i'th bit set to b (0 or 1).
752 // That is, if b is 1 SetBit sets z = x | (1 << i);
753 // if b is 0 SetBit sets z = x &^ (1 << i). If b is not 0 or 1,
754 // SetBit will panic.
755 func (z *Int) SetBit(x *Int, i int, b uint) *Int {
761 t = t.setBit(t, uint(i), b^1)
766 z.abs = z.abs.setBit(x.abs, uint(i), b)
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/big/
int.go 695 t.SetInt64(0).SetBit(&t, int(r-m-1), 1).Exp(&g, &t, p)
748 // SetBit sets z to x, with x's i'th bit set to b (0 or 1).
749 // That is, if b is 1 SetBit sets z = x | (1 << i);
750 // if b is 0 SetBit sets z = x &^ (1 << i). If b is not 0 or 1,
751 // SetBit will panic.
752 func (z *Int) SetBit(x *Int, i int, b uint) *Int {
758 t = t.setBit(t, uint(i), b^1)
763 z.abs = z.abs.setBit(x.abs, uint(i), b)
  /prebuilts/go/darwin-x86/src/math/big/
int.go 697 t.SetInt64(0).SetBit(&t, int(r-m-1), 1).Exp(&g, &t, p)
750 // SetBit sets z to x, with x's i'th bit set to b (0 or 1).
751 // That is, if b is 1 SetBit sets z = x | (1 << i);
752 // if b is 0 SetBit sets z = x &^ (1 << i). If b is not 0 or 1,
753 // SetBit will panic.
754 func (z *Int) SetBit(x *Int, i int, b uint) *Int {
760 t = t.setBit(t, uint(i), b^1)
765 z.abs = z.abs.setBit(x.abs, uint(i), b)
  /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/big/
int.go 698 t.SetInt64(0).SetBit(&t, int(r-m-1), 1).Exp(&g, &t, p)
751 // SetBit sets z to x, with x's i'th bit set to b (0 or 1).
752 // That is, if b is 1 SetBit sets z = x | (1 << i);
753 // if b is 0 SetBit sets z = x &^ (1 << i). If b is not 0 or 1,
754 // SetBit will panic.
755 func (z *Int) SetBit(x *Int, i int, b uint) *Int {
761 t = t.setBit(t, uint(i), b^1)
766 z.abs = z.abs.setBit(x.abs, uint(i), b)
  /prebuilts/go/linux-x86/src/cmd/compile/internal/big/
int.go 695 t.SetInt64(0).SetBit(&t, int(r-m-1), 1).Exp(&g, &t, p)
748 // SetBit sets z to x, with x's i'th bit set to b (0 or 1).
749 // That is, if b is 1 SetBit sets z = x | (1 << i);
750 // if b is 0 SetBit sets z = x &^ (1 << i). If b is not 0 or 1,
751 // SetBit will panic.
752 func (z *Int) SetBit(x *Int, i int, b uint) *Int {
758 t = t.setBit(t, uint(i), b^1)
763 z.abs = z.abs.setBit(x.abs, uint(i), b)
  /prebuilts/go/linux-x86/src/math/big/
int.go 697 t.SetInt64(0).SetBit(&t, int(r-m-1), 1).Exp(&g, &t, p)
750 // SetBit sets z to x, with x's i'th bit set to b (0 or 1).
751 // That is, if b is 1 SetBit sets z = x | (1 << i);
752 // if b is 0 SetBit sets z = x &^ (1 << i). If b is not 0 or 1,
753 // SetBit will panic.
754 func (z *Int) SetBit(x *Int, i int, b uint) *Int {
760 t = t.setBit(t, uint(i), b^1)
765 z.abs = z.abs.setBit(x.abs, uint(i), b)
  /external/tpm2/
RSAKeySieve.c 43 // SetBit()
48 SetBit(
  /external/webrtc/webrtc/p2p/base/
stun.cc 657 void StunUInt32Attribute::SetBit(size_t index, bool value) {
  /external/protobuf/src/google/protobuf/
generated_message_reflection.cc     [all...]
  /external/ImageMagick/MagickCore/
fx.c     [all...]

Completed in 1047 milliseconds