HomeSort by relevance Sort by last modified time
    Searched full:byteindex (Results 1 - 25 of 69) sorted by null

1 2 3

  /prebuilts/go/darwin-x86/test/linkname.dir/
linkname2.go 5 //go:linkname byteIndex linkname1.indexByte
6 func byteIndex(xs []byte, b byte) int
9 if byteIndex(data, '/') != -1 {
  /prebuilts/go/linux-x86/test/linkname.dir/
linkname2.go 5 //go:linkname byteIndex linkname1.indexByte
6 func byteIndex(xs []byte, b byte) int
9 if byteIndex(data, '/') != -1 {
  /prebuilts/go/darwin-x86/test/
linkname.go 13 main.main: relocation target linkname2.byteIndex not defined
14 main.main: undefined: "linkname2.byteIndex"
  /prebuilts/go/linux-x86/test/
linkname.go 13 main.main: relocation target linkname2.byteIndex not defined
14 main.main: undefined: "linkname2.byteIndex"
  /external/proguard/src/proguard/classfile/constant/
Utf8Constant.java 207 int byteIndex = 0;
214 bytes[byteIndex++] = (byte)TWO_BYTE_CONSTANT1;
215 bytes[byteIndex++] = (byte)TWO_BYTE_CONSTANT2;
220 bytes[byteIndex++] = (byte)c;
225 bytes[byteIndex++] = (byte)(TWO_BYTE_CONSTANT1 | ((c >>> TWO_BYTE_SHIFT1) & TWO_BYTE_MASK1));
226 bytes[byteIndex++] = (byte)(TWO_BYTE_CONSTANT2 | ( c & TWO_BYTE_MASK2));
231 bytes[byteIndex++] = (byte)(THREE_BYTE_CONSTANT1 | ((c >>> THREE_BYTE_SHIFT1) & THREE_BYTE_MASK1));
232 bytes[byteIndex++] = (byte)(THREE_BYTE_CONSTANT2 | ((c >>> THREE_BYTE_SHIFT2) & THREE_BYTE_MASK2));
233 bytes[byteIndex++] = (byte)(THREE_BYTE_CONSTANT3 | ( c & THREE_BYTE_MASK3));
255 int byteIndex = 0
    [all...]
  /system/chre/host/common/
fragmented_load_transaction.cc 58 size_t byteIndex = 0;
63 appBinary.size(), getSubVector(appBinary, byteIndex, fragmentSize));
67 getSubVector(appBinary, byteIndex, fragmentSize));
70 byteIndex += fragmentSize;
71 } while (byteIndex < appBinary.size());
  /external/icu/icu4c/source/common/
bytestriebuilder.cpp 286 BytesTrieBuilder::getElementUnit(int32_t i, int32_t byteIndex) const {
287 return (uint8_t)elements[i].charAt(byteIndex, *strings);
296 BytesTrieBuilder::getLimitOfLinearMatch(int32_t first, int32_t last, int32_t byteIndex) const {
300 while(++byteIndex<minStringLength &&
301 firstElement.charAt(byteIndex, *strings)==
302 lastElement.charAt(byteIndex, *strings)) {}
303 return byteIndex;
307 BytesTrieBuilder::countElementUnits(int32_t start, int32_t limit, int32_t byteIndex) const {
308 int32_t length=0; // Number of different bytes at byteIndex.
311 char byte=elements[i++].charAt(byteIndex, *strings)
    [all...]
ucnv_u7.cpp 220 uint8_t byteIndex;
250 byteIndex=cnv->toULength;
253 sourceIndex=byteIndex==0 ? 0 : -1;
266 byteIndex=0;
277 byteIndex=1;
290 byteIndex=0;
315 bytes[byteIndex++]=b=*source++;
338 byteIndex=1;
345 --byteIndex;
383 byteIndex=1
    [all...]
  /hardware/interfaces/automotive/vehicle/2.0/default/common/src/
Obd2SensorStore.cpp 37 const size_t byteIndex = index / 8;
39 const uint8_t byte = mStorage[byteIndex];
41 mStorage[byteIndex] = newValue;
45 const size_t byteIndex = index / 8;
47 const uint8_t byte = mStorage[byteIndex];
  /external/icu/icu4c/source/common/unicode/
bytestriebuilder.h 130 virtual char16_t getElementUnit(int32_t i, int32_t byteIndex) const;
133 virtual int32_t getLimitOfLinearMatch(int32_t first, int32_t last, int32_t byteIndex) const;
135 virtual int32_t countElementUnits(int32_t start, int32_t limit, int32_t byteIndex) const;
136 virtual int32_t skipElementsBySomeUnits(int32_t i, int32_t byteIndex, int32_t count) const;
137 virtual int32_t indexOfElementWithNextUnit(int32_t i, int32_t byteIndex, char16_t byte) const;
158 virtual Node *createLinearMatchNode(int32_t i, int32_t byteIndex, int32_t length,
164 virtual int32_t writeElementUnits(int32_t i, int32_t byteIndex, int32_t length);
  /device/linaro/bootloader/edk2/MdePkg/Library/DxeHstiLib/
HstiDxe.c 372 @param ByteIndex Byte index of FeaturesVerified of HSTI data.
379 @retval EFI_UNSUPPORTED The ByteIndex is invalid.
385 IN UINT32 ByteIndex,
401 if (ByteIndex >= Hsti->SecurityFeaturesSize) {
408 SecurityFeaturesVerified[ByteIndex] = (UINT8)(SecurityFeaturesVerified[ByteIndex] | (Bit));
410 SecurityFeaturesVerified[ByteIndex] = (UINT8)(SecurityFeaturesVerified[ByteIndex] & (~Bit));
430 @param ByteIndex Byte index of FeaturesVerified of HSTI data.
435 @retval EFI_UNSUPPORTED The ByteIndex is invalid.
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Library/
HstiLib.h 74 @param ByteIndex Byte index of FeaturesVerified of HSTI data.
79 @retval EFI_UNSUPPORTED The ByteIndex is invalid.
86 IN UINT32 ByteIndex,
98 @param ByteIndex Byte index of FeaturesVerified of HSTI data.
103 @retval EFI_UNSUPPORTED The ByteIndex is invalid.
110 IN UINT32 ByteIndex,
  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
CharsetUTF7.java 194 int byteIndex;
211 byteIndex=toULength;
213 sourceIndex=byteIndex==0 ? 0 : -1;
227 byteIndex=0;
239 byteIndex=1;
258 byteIndex=0;
284 toUBytesArray[byteIndex++]=(byte)b;
307 byteIndex=1;
314 --byteIndex;
360 byteIndex=1
    [all...]
  /external/clang/test/Analysis/
reference.cpp 177 int refParam(int &byteIndex) {
178 return byteIndex;
187 int ptrRefParam(int *&byteIndex) {
188 return *byteIndex; // expected-warning {{Dereference of null pointer}}
  /prebuilts/go/darwin-x86/src/net/
port_unix.go 24 if i := byteIndex(line, '#'); i >= 0 {
lookup_plan9.go 114 if n, _, ok := dtoi(s[byteIndex(s, '=')+1:]); ok {
137 if i := byteIndex(addr, '!'); i >= 0 {
189 if i := byteIndex(s, '!'); i >= 0 {
283 if i := byteIndex(line, '\t'); i >= 0 {
ipsock.go 173 end := byteIndex(hostport, ']')
195 if byteIndex(host, ':') >= 0 {
199 if byteIndex(hostport[j:], '[') >= 0 {
202 if byteIndex(hostport[k:], ']') >= 0 {
229 if byteIndex(host, ':') >= 0 {
  /prebuilts/go/linux-x86/src/net/
port_unix.go 24 if i := byteIndex(line, '#'); i >= 0 {
lookup_plan9.go 114 if n, _, ok := dtoi(s[byteIndex(s, '=')+1:]); ok {
137 if i := byteIndex(addr, '!'); i >= 0 {
189 if i := byteIndex(s, '!'); i >= 0 {
283 if i := byteIndex(line, '\t'); i >= 0 {
ipsock.go 173 end := byteIndex(hostport, ']')
195 if byteIndex(host, ':') >= 0 {
199 if byteIndex(hostport[j:], '[') >= 0 {
202 if byteIndex(hostport[k:], ']') >= 0 {
229 if byteIndex(host, ':') >= 0 {
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/EbcDxe/EbcDebugger/
EdbCmdMemory.c 89 UINTN ByteIndex;
139 for (ByteIndex = 0; ByteIndex < NumberInLine; ByteIndex++) {
159 for (ByteIndex = 0; ByteIndex < ByteNumber; ByteIndex++) {
EdbDisasmSupport.c 1056 UINTN ByteIndex;
1080 for (ByteIndex = 0; ByteIndex < EDB_BYTECODE_NUMBER_IN_LINE; ByteIndex++) {
1088 for (ByteIndex = 0; ByteIndex < ByteNumber; ByteIndex++) {
1092 for (ByteIndex = 0; ByteIndex < EDB_BYTECODE_NUMBER_IN_LINE - ByteNumber; ByteIndex++) {
    [all...]
  /external/skia/src/sfnt/
SkOTTable_glyf.h 195 struct ByteIndex {
199 } byteIndex;
  /external/skqp/src/sfnt/
SkOTTable_glyf.h 195 struct ByteIndex {
199 } byteIndex;
  /packages/services/Car/obd2-lib/src/com/android/car/obd2/
Obd2Connection.java 277 for (int byteIndex = 0; byteIndex < 4; ++byteIndex) {
279 if (fourByteBitSet.getBit(byteIndex, bitIndex)) {
280 int command = basePid + 8 * byteIndex + 7 - bitIndex;

Completed in 639 milliseconds

1 2 3