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

  /external/antlr/antlr-3.4/runtime/C/include/
antlr3string.h 102 pANTLR3_UINT8 (*append) (struct ANTLR3_STRING_struct * string, const char * newbit);
108 pANTLR3_UINT8 (*append8) (struct ANTLR3_STRING_struct * string, const char * newbit);
115 pANTLR3_UINT8 (*insert) (struct ANTLR3_STRING_struct * string, ANTLR3_UINT32 point, const char * newbit);
121 pANTLR3_UINT8 (*insert8) (struct ANTLR3_STRING_struct * string, ANTLR3_UINT32 point, const char * newbit);
131 pANTLR3_UINT8 (*appendS) (struct ANTLR3_STRING_struct * string, struct ANTLR3_STRING_struct * newbit);
136 pANTLR3_UINT8 (*insertS) (struct ANTLR3_STRING_struct * string, ANTLR3_UINT32 point, struct ANTLR3_STRING_struct * newbit);
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3string.c 58 static pANTLR3_UINT8 append8 (pANTLR3_STRING string, const char * newbit);
59 static pANTLR3_UINT8 appendUTF16_8 (pANTLR3_STRING string, const char * newbit);
60 static pANTLR3_UINT8 appendUTF16_UTF16 (pANTLR3_STRING string, const char * newbit);
61 static pANTLR3_UINT8 insert8 (pANTLR3_STRING string, ANTLR3_UINT32 point, const char * newbit);
62 static pANTLR3_UINT8 insertUTF16_8 (pANTLR3_STRING string, ANTLR3_UINT32 point, const char * newbit);
63 static pANTLR3_UINT8 insertUTF16_UTF16 (pANTLR3_STRING string, ANTLR3_UINT32 point, const char * newbit);
66 static pANTLR3_UINT8 appendS (pANTLR3_STRING string, pANTLR3_STRING newbit);
67 static pANTLR3_UINT8 insertS (pANTLR3_STRING string, ANTLR3_UINT32 point, pANTLR3_STRING newbit);
795 append8 (pANTLR3_STRING string, const char * newbit)
799 len = (ANTLR3_UINT32)strlen(newbit);
986 ANTLR3_UINT8 newbit[32]; local
995 ANTLR3_UINT8 newbit[32]; local
1005 ANTLR3_UINT8 newbit[32]; local
1013 ANTLR3_UINT8 newbit[32]; local
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
hashmap.go 801 newbit := uintptr(1) << (h.B - 1)
808 y := (*bmap)(add(h.buckets, (oldbucket+newbit)*uintptr(t.bucketsize)))
848 hash |= newbit
850 hash &^= newbit
858 if (hash & newbit) == 0 {
919 if oldbucket+1 == newbit { // newbit == # of oldbuckets
  /prebuilts/go/linux-x86/src/runtime/
hashmap.go 801 newbit := uintptr(1) << (h.B - 1)
808 y := (*bmap)(add(h.buckets, (oldbucket+newbit)*uintptr(t.bucketsize)))
848 hash |= newbit
850 hash &^= newbit
858 if (hash & newbit) == 0 {
919 if oldbucket+1 == newbit { // newbit == # of oldbuckets

Completed in 92 milliseconds