/external/slf4j/slf4j-log4j12/src/main/java/org/slf4j/impl/ |
D | Log4jMDCAdapter.java | 78 public void setContextMap(Map contextMap) { in setContextMap() argument 81 Iterator entrySetIterator = contextMap.entrySet().iterator(); in setContextMap() 88 old.putAll(contextMap); in setContextMap()
|
/external/brotli/java/org/brotli/dec/ |
D | Decode.java | 436 private static int decodeContextMap(int contextMapSize, byte[] contextMap, State s) { in decodeContextMap() argument 441 Utils.fillBytesWithZeroes(contextMap, 0, contextMapSize); in decodeContextMap() 458 contextMap[i] = 0; in decodeContextMap() 467 contextMap[i] = 0; in decodeContextMap() 472 contextMap[i] = (byte) (code - maxRunLengthPrefix); in decodeContextMap() 478 inverseMoveToFrontTransform(contextMap, contextMapSize); in decodeContextMap() 509 s.literalTreeIndex = s.contextMap[s.contextMapSlice] & 0xFF; in decodeLiteralBlockSwitch() 622 s.contextMap = new byte[s.numLiteralBlockTypes << LITERAL_CONTEXT_BITS]; in readMetablockHuffmanCodesAndContextMaps() 624 s.contextMap, s); in readMetablockHuffmanCodesAndContextMaps() 627 if (s.contextMap[j] != j >> LITERAL_CONTEXT_BITS) { in readMetablockHuffmanCodesAndContextMaps() [all …]
|
D | State.java | 14 byte[] contextMap; field in State
|
/external/opencensus-java/contrib/log_correlation/log4j2/src/main/java/io/opencensus/contrib/logcorrelation/log4j2/ |
D | ContextDataUtils.java | 115 Map<String, String> contextMap = ThreadContext.getImmutableContext(); in getNonShareableContextData() local 116 return contextMap.isEmpty() in getNonShareableContextData() 118 : new UnmodifiableReadOnlyStringMap(contextMap); in getNonShareableContextData()
|
/external/slf4j/slf4j-api/src/main/java/org/slf4j/ |
D | MDC.java | 242 public static void setContextMap(Map<String, String> contextMap) { in setContextMap() argument 246 mdcAdapter.setContextMap(contextMap); in setContextMap()
|
/external/slf4j/slf4j-api/src/main/java/org/slf4j/helpers/ |
D | BasicMDCAdapter.java | 156 public void setContextMap(Map<String, String> contextMap) { in setContextMap() argument 157 …tring> map = Collections.<String, String> synchronizedMap(new HashMap<String, String>(contextMap)); in setContextMap()
|
D | NOPMDCAdapter.java | 59 public void setContextMap(Map<String, String> contextMap) { in setContextMap() argument
|
/external/brotli/csharp/org/brotli/dec/ |
D | Decode.cs | 349 …private static int DecodeContextMap(int contextMapSize, byte[] contextMap, Org.Brotli.Dec.BitReade… in DecodeContextMap() argument 355 Org.Brotli.Dec.Utils.FillWithZeroes(contextMap, 0, contextMapSize); in DecodeContextMap() 373 contextMap[i] = 0; in DecodeContextMap() 386 contextMap[i] = 0; in DecodeContextMap() 393 contextMap[i] = unchecked((byte)(code - maxRunLengthPrefix)); in DecodeContextMap() 399 InverseMoveToFrontTransform(contextMap, contextMapSize); in DecodeContextMap() 437 state.literalTreeIndex = state.contextMap[state.contextMapSlice] & unchecked((int)(0xFF)); in DecodeLiteralBlockSwitch() 578 state.contextMap = new byte[state.numBlockTypes[0] << LiteralContextBits]; in ReadMetablockHuffmanCodesAndContextMaps() 579 …iteralTrees = DecodeContextMap(state.numBlockTypes[0] << LiteralContextBits, state.contextMap, br); in ReadMetablockHuffmanCodesAndContextMaps() 583 if (state.contextMap[j] != j >> LiteralContextBits) in ReadMetablockHuffmanCodesAndContextMaps() [all …]
|
D | State.cs | 62 internal byte[] contextMap; field in Org.Brotli.Dec.State
|
/external/brotli/js/ |
D | decode.js | 429 function decodeContextMap(contextMapSize, contextMap, s) { argument 435 contextMap.fill(0, 0, contextMapSize); 459 contextMap[i] = 0; 471 contextMap[i] = 0; 476 contextMap[i] = (code - maxRunLengthPrefix); 485 inverseMoveToFrontTransform(contextMap, contextMapSize); 526 s.literalTreeIndex = s.contextMap[s.contextMapSlice] & 0xFF; 661 s.contextMap = new Int8Array(s.numLiteralBlockTypes << 6); 662 …var /** !number */ numLiteralTrees = decodeContextMap(s.numLiteralBlockTypes << 6, s.contextMap, s… 665 if (s.contextMap[j] != j >> 6) { [all …]
|
D | decode.min.js | 1 …contextMap[e.contextMapSlice]&255;e.literalTree=e.hGroup0[e.literalTreeIndex];var i=e.contextModes…
|
/external/slf4j/slf4j-api/src/main/java/org/slf4j/spi/ |
D | MDCAdapter.java | 90 public void setContextMap(Map<String, String> contextMap); in setContextMap() argument
|
/external/brotli/research/ |
D | brotlidump.py | 1610 numberOfTrees[blockType] = self.contextMap(blockType) 1721 def contextMap(self, kind): member in Layout
|