/third_party/skia/third_party/externals/icu/source/common/ |
D | utrace.cpp | 92 static void outputChar(char c, char *outBuf, int32_t *outIx, int32_t capacity, int32_t indent) { in outputChar() argument 104 (c!='\n' && c!=0 && *outIx < capacity && outBuf[(*outIx)-1]=='\n') || /* case 2. */ in outputChar() 110 outBuf[*outIx] = ' '; in outputChar() 117 outBuf[*outIx] = c; in outputChar() 128 char *outBuf, int32_t *outIx, int32_t capacity) { in outputHexBytes() argument 133 outputChar(c, outBuf, outIx, capacity, 0); in outputHexBytes() 138 static void outputPtrBytes(void *val, char *outBuf, int32_t *outIx, int32_t capacity) { in outputPtrBytes() argument 152 outputHexBytes(*p, 2, outBuf, outIx, capacity); in outputPtrBytes() 157 static void outputString(const char *s, char *outBuf, int32_t *outIx, int32_t capacity, int32_t ind… in outputString() argument 165 outputChar(c, outBuf, outIx, capacity, indent); in outputString() [all …]
|
/third_party/node/deps/icu-small/source/common/ |
D | utrace.cpp | 92 static void outputChar(char c, char *outBuf, int32_t *outIx, int32_t capacity, int32_t indent) { in outputChar() argument 104 (c!='\n' && c!=0 && *outIx < capacity && outBuf[(*outIx)-1]=='\n') || /* case 2. */ in outputChar() 110 outBuf[*outIx] = ' '; in outputChar() 117 outBuf[*outIx] = c; in outputChar() 128 char *outBuf, int32_t *outIx, int32_t capacity) { in outputHexBytes() argument 133 outputChar(c, outBuf, outIx, capacity, 0); in outputHexBytes() 138 static void outputPtrBytes(void *val, char *outBuf, int32_t *outIx, int32_t capacity) { in outputPtrBytes() argument 152 outputHexBytes(*p, 2, outBuf, outIx, capacity); in outputPtrBytes() 157 static void outputString(const char *s, char *outBuf, int32_t *outIx, int32_t capacity, int32_t ind… in outputString() argument 165 outputChar(c, outBuf, outIx, capacity, indent); in outputString() [all …]
|
/third_party/icu/icu4c/source/common/ |
D | utrace.cpp | 92 static void outputChar(char c, char *outBuf, int32_t *outIx, int32_t capacity, int32_t indent) { in outputChar() argument 104 (c!='\n' && c!=0 && *outIx < capacity && outBuf[(*outIx)-1]=='\n') || /* case 2. */ in outputChar() 110 outBuf[*outIx] = ' '; in outputChar() 117 outBuf[*outIx] = c; in outputChar() 128 char *outBuf, int32_t *outIx, int32_t capacity) { in outputHexBytes() argument 133 outputChar(c, outBuf, outIx, capacity, 0); in outputHexBytes() 138 static void outputPtrBytes(void *val, char *outBuf, int32_t *outIx, int32_t capacity) { in outputPtrBytes() argument 152 outputHexBytes(*p, 2, outBuf, outIx, capacity); in outputPtrBytes() 157 static void outputString(const char *s, char *outBuf, int32_t *outIx, int32_t capacity, int32_t ind… in outputString() argument 165 outputChar(c, outBuf, outIx, capacity, indent); in outputString() [all …]
|
/third_party/lzma/C/ |
D | Lzma2Enc.c | 129 static SRes Lzma2EncInt_EncodeSubblock(CLzma2EncInt *p, Byte *outBuf, in Lzma2EncInt_EncodeSubblock() argument 146 outBuf + lzHeaderSize, &packSize, LZMA2_PACK_SIZE_MAX, &unpackSize); in Lzma2EncInt_EncodeSubblock() 173 …outBuf[destPos++] = (Byte)(p->srcPos == 0 ? LZMA2_CONTROL_COPY_RESET_DIC : LZMA2_CONTROL_COPY_NO_R… in Lzma2EncInt_EncodeSubblock() 174 outBuf[destPos++] = (Byte)((u - 1) >> 8); in Lzma2EncInt_EncodeSubblock() 175 outBuf[destPos++] = (Byte)(u - 1); in Lzma2EncInt_EncodeSubblock() 176 memcpy(outBuf + destPos, LzmaEnc_GetCurBuf(p->enc) - unpackSize, u); in Lzma2EncInt_EncodeSubblock() 184 if (ISeqOutStream_Write(outStream, outBuf, destPos) != destPos) in Lzma2EncInt_EncodeSubblock() 205 outBuf[destPos++] = (Byte)(LZMA2_CONTROL_LZMA | (mode << 5) | ((u >> 16) & 0x1F)); in Lzma2EncInt_EncodeSubblock() 206 outBuf[destPos++] = (Byte)(u >> 8); in Lzma2EncInt_EncodeSubblock() 207 outBuf[destPos++] = (Byte)u; in Lzma2EncInt_EncodeSubblock() [all …]
|
D | XzDec.c | 440 static SRes Lzma2State_SetFromMethod(IStateCoder *p, Byte *outBuf, size_t outBufSize, ISzAllocPtr a… in Lzma2State_SetFromMethod() argument 457 if (outBuf) in Lzma2State_SetFromMethod() 460 spec->decoder.decoder.dic = outBuf; in Lzma2State_SetFromMethod() 467 static SRes Lzma2State_ResetOutBuf(IStateCoder *p, Byte *outBuf, size_t outBufSize) in Lzma2State_ResetOutBuf() argument 470 if ((spec->outBufMode && !outBuf) || (!spec->outBufMode && outBuf)) in Lzma2State_ResetOutBuf() 472 if (outBuf) in Lzma2State_ResetOutBuf() 474 spec->decoder.decoder.dic = outBuf; in Lzma2State_ResetOutBuf() 490 p->outBuf = NULL; in MixCoder_Construct() 540 static SRes MixCoder_SetFromMethod(CMixCoder *p, unsigned coderIndex, UInt64 methodId, Byte *outBuf… in MixCoder_SetFromMethod() argument 546 case XZ_ID_LZMA2: return Lzma2State_SetFromMethod(sc, outBuf, outBufSize, p->alloc); in MixCoder_SetFromMethod() [all …]
|
D | Lzma2DecMt.c | 61 Byte *outBuf; member 152 t->outBuf = NULL; in Lzma2DecMt_Create() 170 if (t->outBuf) in Lzma2DecMt_FreeOutBufs() 172 ISzAlloc_Free(p->allocMid, t->outBuf); in Lzma2DecMt_FreeOutBufs() 173 t->outBuf = NULL; in Lzma2DecMt_FreeOutBufs() 420 Byte *dest = t->outBuf; in Lzma2DecMt_MtCallback_PreCode() 433 t->outBuf = NULL; in Lzma2DecMt_MtCallback_PreCode() 443 t->outBuf = dest; in Lzma2DecMt_MtCallback_PreCode() 537 const Byte *data = t->outBuf; in Lzma2DecMt_MtCallback_Write()
|
D | XzEnc.c | 289 Byte *outBuf; member 303 memcpy(p->outBuf + (size_t)p->processed, data, size); in SeqSizeOutStream_Write() 801 seqSizeOutStream.outBuf = outBufData; in Xz_CompressBlock() 848 Byte *outBuf = NULL; in Xz_CompressBlock() local 861 outBuf = seqSizeOutStream.outBuf; // + (size_t)seqSizeOutStream.processed; in Xz_CompressBlock() 866 outBuf ? NULL : &seqSizeOutStream.vt, in Xz_CompressBlock() 867 outBuf, in Xz_CompressBlock() 868 outBuf ? &outSize : NULL, in Xz_CompressBlock() 884 if (outBuf) in Xz_CompressBlock() 907 seqSizeOutStream.outBuf = outBufHeader; in Xz_CompressBlock()
|
D | Xz.h | 203 Byte *outBuf; member 266 Byte *outBuf; member 277 void XzUnpacker_SetOutBuf(CXzUnpacker *p, Byte *outBuf, size_t outBufSize);
|
D | Lzma2Enc.h | 50 Byte *outBuf, size_t *outBufSize,
|
/third_party/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/ |
D | ConverterPerformanceTest.java | 208 CharBuffer outBuf = CharBuffer.allocate(unicodeBuffer.length); 215 decoder.decode(srcBuf,outBuf,false); 218 outBuf.rewind(); 237 ByteBuffer outBuf = ByteBuffer.allocate(encBuffer.length); 244 encoder.encode(srcBuf,outBuf,false); 247 outBuf.rewind(); 266 CharBuffer outBuf = CharBuffer.allocate(unicodeBuffer.length); 273 decoder.decode(srcBuf,outBuf,false); 276 outBuf.rewind(); 295 ByteBuffer outBuf = ByteBuffer.allocate(encBuffer.length); [all …]
|
/third_party/glslang/Test/baseResults/ |
D | spv.1.4.OpCopyLogical.comp.out | 25 Name 27 "outBuf" 57 Decorate 27(outBuf) DescriptorSet 0 58 Decorate 27(outBuf) Binding 1 99 27(outBuf): 26(ptr) Variable StorageBuffer 130 29: 21(ptr) AccessChain 27(outBuf) 20 138 41: 21(ptr) AccessChain 27(outBuf) 20
|
D | spv.1.4.OpCopyLogicalBool.comp.out | 25 Name 37 "outBuf" 57 Decorate 37(outBuf) DescriptorSet 0 58 Decorate 37(outBuf) Binding 1 104 37(outBuf): 36(ptr) Variable StorageBuffer 146 39: 22(ptr) AccessChain 37(outBuf) 21 166 64: 22(ptr) AccessChain 37(outBuf) 21
|
D | spv.multiStruct.comp.out | 25 Name 41 "outBuf" 57 Decorate 41(outBuf) DescriptorSet 0 58 Decorate 41(outBuf) Binding 1 105 41(outBuf): 40(ptr) Variable Uniform 154 43: 22(ptr) AccessChain 41(outBuf) 21 182 75: 22(ptr) AccessChain 41(outBuf) 21
|
/third_party/glslang/Test/ |
D | spv.multiStruct.comp | 17 } outBuf; 42 outBuf.b = t; 44 outBuf.b = t;
|
D | spv.1.4.OpCopyLogicalBool.comp | 17 } outBuf; 42 outBuf.b = t; 44 outBuf.b = t;
|
D | spv.1.4.OpCopyLogical.comp | 17 } outBuf; 42 outBuf.b = t; 44 outBuf.b = t;
|
/third_party/node/test/async-hooks/ |
D | test-zlib.zlib-binding.deflate.js | 32 outBuf: new Uint8Array(1), property 48 handle.write(true, buffers.inBuf, 0, 1, buffers.outBuf, 0, 1); 56 handle.write(true, buffers.inBuf, 0, 1, buffers.outBuf, 0, 1);
|
/third_party/skia/third_party/externals/icu/source/common/unicode/ |
D | utrace.h | 464 utrace_vformat(char *outBuf, int32_t capacity, 485 utrace_format(char *outBuf, int32_t capacity,
|
/third_party/node/deps/icu-small/source/common/unicode/ |
D | utrace.h | 464 utrace_vformat(char *outBuf, int32_t capacity, 485 utrace_format(char *outBuf, int32_t capacity,
|
/third_party/icu/icu4c/source/common/unicode/ |
D | utrace.h | 464 utrace_vformat(char *outBuf, int32_t capacity, 485 utrace_format(char *outBuf, int32_t capacity,
|
/third_party/lzma/C/Util/Lzma/ |
D | LzmaUtil.c | 110 Byte outBuf[OUT_BUF_SIZE]; in Decode2() local 133 res = LzmaDec_DecodeToBuf(state, outBuf + outPos, &outProcessed, in Decode2() 140 if (outStream->Write(outStream, outBuf, outPos) != outPos) in Decode2()
|
/third_party/icu/icu4j/main/tests/charset/src/com/ibm/icu/dev/test/charset/ |
D | TestCharset.java | 1857 ByteBuffer outBuf = ByteBuffer.allocate(in.length*2+2); in TestUTF16Bom() local 1859 encoder.encode(inBuf, outBuf, true); in TestUTF16Bom() 1860 outBuf.rewind(); in TestUTF16Bom() 1861 if(outBuf.get(0)!= (byte)0xFE && outBuf.get(1)!= (byte)0xFF){ in TestUTF16Bom() 1862 errln("The UTF16 encoder did not appended bom. Length returned: " + outBuf.remaining()); in TestUTF16Bom() 1864 while(outBuf.hasRemaining()){ in TestUTF16Bom() 1865 logln("0x"+hex(outBuf.get())); in TestUTF16Bom() 1868 outBuf.rewind(); in TestUTF16Bom() 1870 CoderResult cr = decoder.decode(outBuf, rt, true); in TestUTF16Bom() 1877 outBuf.rewind(); in TestUTF16Bom() [all …]
|
/third_party/icu/icu4c/source/i18n/ |
D | unum.cpp | 432 char *outBuf, in unum_parseDecimal() argument 439 if ((outBuf == NULL && outBufLength != 0) || outBufLength < 0) { in unum_parseDecimal() 451 uprv_strncpy(outBuf, sp.data(), sp.size()); in unum_parseDecimal() 455 uprv_strcpy(outBuf, sp.data()); in unum_parseDecimal()
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
D | unum.cpp | 435 char *outBuf, in unum_parseDecimal() argument 442 if ((outBuf == NULL && outBufLength != 0) || outBufLength < 0) { in unum_parseDecimal() 454 uprv_strncpy(outBuf, sp.data(), sp.size()); in unum_parseDecimal() 458 uprv_strcpy(outBuf, sp.data()); in unum_parseDecimal()
|
/third_party/node/deps/icu-small/source/i18n/ |
D | unum.cpp | 448 char *outBuf, in unum_parseDecimal() argument 455 if ((outBuf == nullptr && outBufLength != 0) || outBufLength < 0) { in unum_parseDecimal() 467 uprv_strncpy(outBuf, sp.data(), sp.size()); in unum_parseDecimal() 471 uprv_strcpy(outBuf, sp.data()); in unum_parseDecimal()
|