Home
last modified time | relevance | path

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

/external/cbor-java/src/test/java/co/nstant/in/cbor/model/
DSpecialTypeTest.java10 Assert.assertTrue(SpecialType.ofByte(28).equals(SpecialType.UNALLOCATED)); in shouldDetectUnallocated()
11 Assert.assertTrue(SpecialType.ofByte(29).equals(SpecialType.UNALLOCATED)); in shouldDetectUnallocated()
12 Assert.assertTrue(SpecialType.ofByte(30).equals(SpecialType.UNALLOCATED)); in shouldDetectUnallocated()
/external/cbor-java/src/main/java/co/nstant/in/cbor/model/
DSpecialType.java10 UNALLOCATED, enumConstant
26 return UNALLOCATED; in ofByte()
DSimpleValueType.java10 UNALLOCATED(0); enumConstant
42 return UNALLOCATED; in ofByte()
/external/cbor-java/src/main/java/co/nstant/in/cbor/decoder/
DSpecialDecoder.java40 case UNALLOCATED: in decode()
54 case UNALLOCATED: in decode()
/external/cbor-java/src/main/java/co/nstant/in/cbor/encoder/
DSpecialEncoder.java43 case UNALLOCATED: in encode()
50 case UNALLOCATED: in encode()
/external/google-breakpad/src/client/
Dminidump_file_writer.h212 allocation_state_(UNALLOCATED) {} in TypedMDRVA()
260 UNALLOCATED = 0, enumerator
/external/llvm-project/llvm/test/tools/llvm-pdbutil/
Dexplain.test18 ; RUN: | FileCheck --check-prefix=UNALLOCATED %s
69 UNALLOCATED: Block:Offset = 3:0000.
70 UNALLOCATED-NEXT: Address is in block 3 (unallocated).
/external/cbor-java/src/test/java/co/nstant/in/cbor/encoder/
DSpecialEncoderTest.java29 encoder.encode(new Mock(SpecialType.UNALLOCATED)); in shouldNotEncodeReserved()