Home
last modified time | relevance | path

Searched refs:kStartBit (Results 1 – 1 of 1) sorted by relevance

/third_party/node/deps/v8/src/strings/
Dunicode.cc19 static const int kStartBit = (1 << 30); variable
41 static inline uchar GetEntry(int32_t entry) { return entry & (kStartBit - 1); } in GetEntry()
43 static inline bool IsStart(int32_t entry) { return (entry & kStartBit) != 0; } in IsStart()