Home
last modified time | relevance | path

Searched refs:readBool (Results 1 – 25 of 95) sorted by relevance

1234

/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/model/
DSeqParameterSet.java83 .readBool("SPS: constraint_set_0_flag"); in read()
85 .readBool("SPS: constraint_set_1_flag"); in read()
87 .readBool("SPS: constraint_set_2_flag"); in read()
89 .readBool("SPS: constraint_set_3_flag"); in read()
100 .readBool("SPS: residual_color_transform_flag"); in read()
107 .readBool("SPS: qpprime_y_zero_transform_bypass_flag"); in read()
109 .readBool("SPS: seq_scaling_matrix_present_lag"); in read()
124 .readBool("SPS: delta_pic_order_always_zero_flag"); in read()
139 .readBool("SPS: gaps_in_frame_num_value_allowed_flag"); in read()
144 sps.frame_mbs_only_flag = reader.readBool("SPS: frame_mbs_only_flag"); in read()
[all …]
DPictureParameterSet.java93 .readBool("PPS: entropy_coding_mode_flag"); in read()
95 .readBool("PPS: pic_order_present_flag"); in read()
118 .readBool("PPS: slice_group_change_direction_flag"); in read()
143 pps.weighted_pred_flag = reader.readBool("PPS: weighted_pred_flag"); in read()
151 .readBool("PPS: deblocking_filter_control_present_flag"); in read()
153 .readBool("PPS: constrained_intra_pred_flag"); in read()
155 .readBool("PPS: redundant_pic_cnt_present_flag"); in read()
159 .readBool("PPS: transform_8x8_mode_flag"); in read()
161 .readBool("PPS: pic_scaling_matrix_present_flag"); in read()
166 .readBool("PPS: pic_scaling_list_present_flag"); in read()
/external/skia/src/gpu/
DGrPersistentCacheUtils.cpp96 if (reader->readBool() && meta) { in UnpackCachedShaders()
99 if (reader->readBool()) { in UnpackCachedShaders()
100 meta->fSettings->fFlipY = reader->readBool(); in UnpackCachedShaders()
101 meta->fSettings->fFragColorIsInOut = reader->readBool(); in UnpackCachedShaders()
102 meta->fSettings->fForceHighPrecision = reader->readBool(); in UnpackCachedShaders()
103 meta->fSettings->fUsePushConstants = reader->readBool(); in UnpackCachedShaders()
115 meta->fHasCustomColorOutput = reader->readBool(); in UnpackCachedShaders()
116 meta->fHasSecondaryColorOutput = reader->readBool(); in UnpackCachedShaders()
/external/angle/src/libANGLE/
DProgramExecutable.cpp230 mIsCompute = stream->readBool(); in load()
232 mPipelineHasGraphicsUniformBuffers = stream->readBool(); in load()
233 mPipelineHasComputeUniformBuffers = stream->readBool(); in load()
234 mPipelineHasGraphicsStorageBuffers = stream->readBool(); in load()
235 mPipelineHasComputeStorageBuffers = stream->readBool(); in load()
236 mPipelineHasGraphicsAtomicCounterBuffers = stream->readBool(); in load()
237 mPipelineHasComputeAtomicCounterBuffers = stream->readBool(); in load()
238 mPipelineHasGraphicsDefaultUniforms = stream->readBool(); in load()
239 mPipelineHasComputeDefaultUniforms = stream->readBool(); in load()
240 mPipelineHasGraphicsTextures = stream->readBool(); in load()
[all …]
DBinaryStream.h83 bool readBool() in readBool() function
90 void readBool(bool *outValue) { *outValue = readBool(); } in readBool() function
DProgram.cpp733 var->setActive(shaderType, stream->readBool()); in LoadShaderVariableBuffer()
767 var->setActive(shaderType, stream->readBool()); in LoadBufferVariable()
785 block->isArray = stream->readBool(); in LoadInterfaceBlock()
926 var->isRowMajorMatrix = stream->readBool(); in LoadBlockMemberInfo()
974 var->staticUse = stream->readBool(); in LoadShaderVar()
975 var->active = stream->readBool(); in LoadShaderVar()
984 var->isRowMajorLayout = stream->readBool(); in LoadShaderVar()
986 var->hasImplicitLocation = stream->readBool(); in LoadShaderVar()
990 var->readonly = stream->readBool(); in LoadShaderVar()
991 var->writeonly = stream->readBool(); in LoadShaderVar()
[all …]
/external/skia/experimental/skrive/src/
DNode.cpp24 node->setCollapsedVisibility(sr->readBool("isCollapsed")); in parse_node()
34 /*const auto intersect =*/ sr->readBool("intersect"); in parse_node()
DDrawable.cpp20 node->setIsHidden(!sr->readBool("isVisible")); in parse_node()
DShape.cpp23 node->setTransformAffectsStroke(sr->readBool("transformAffectsStroke")); in parse_node()
/external/skia/experimental/skrive/tests/
DBinaryReader.cpp57 REPORTER_ASSERT(reporter, sr->readBool("clipContents")); in DEF_TEST()
62 REPORTER_ASSERT(reporter, !sr->readBool("INVALID")); in DEF_TEST()
DJsonReader.cpp47 REPORTER_ASSERT(reporter, sr->readBool("clipContents")); in DEF_TEST()
52 REPORTER_ASSERT(reporter, !sr->readBool("INVALID")); in DEF_TEST()
/external/boringssl/src/ssl/test/runner/
Dticket.go78 func readBool(reader *byteReader, out *bool) bool { func
112 if !readBool(&reader, &s.extendedMasterSecret) {
129 !readBool(&reader, &s.hasApplicationSettings) {
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
DH264TrackImpl.java480 field_pic_flag = reader.readBool("SliceHeader: field_pic_flag"); in SliceHeader()
482 bottom_field_flag = reader.readBool("SliceHeader: bottom_field_flag"); in SliceHeader()
650 … clock_timestamp_flag = reader.readBool("pic_timing SEI: clock_timestamp_flag[" + i + "]"); in SEIMessage()
664 if (reader.readBool("pic_timing SEI: seconds_flag")) { in SEIMessage()
666 … if (reader.readBool("pic_timing SEI: minutes_flag")) { in SEIMessage()
668 … if (reader.readBool("pic_timing SEI: hours_flag")) { in SEIMessage()
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DCodedInputStreamReader.java151 public boolean readBool() throws IOException { in readBool() method in CodedInputStreamReader
153 return input.readBool(); in readBool()
700 plist.addBoolean(input.readBool()); in readBoolList()
706 plist.addBoolean(input.readBool()); in readBoolList()
726 target.add(input.readBool()); in readBoolList()
732 target.add(input.readBool()); in readBoolList()
1283 return readBool(); in readField()
/external/protobuf/objectivec/
DGPBCodedInputStream.h169 - (BOOL)readBool;
/external/skia/experimental/skrive/src/reader/
DStreamReader.h66 virtual bool readBool (const char label[]) = 0;
/external/skia/tools/
Dskpinfo.cpp70 if (!stream.readBool(&hasData)) { return kTruncatedFile; } in main()
/external/skqp/tools/
Dskpinfo.cpp70 if (!stream.readBool(&hasData)) { return kTruncatedFile; } in main()
/external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
DCodedInputByteBufferNano.java183 public boolean readBool() throws IOException { in readBool() method in CodedInputByteBufferNano
662 return readBool(); in readPrimitiveField()
/external/skia/src/core/
DSkColorFilter.cpp418 bool useDstTF = buffer.readBool(), in CreateProc()
419 useDstGamut = buffer.readBool(), in CreateProc()
420 useDstAT = buffer.readBool(); in CreateProc()
/external/skqp/src/shaders/
DSkLights.cpp26 bool isPoint = buf.readBool(); in MakeFromBuffer()
/external/skqp/src/core/
DSkReadBuffer.h83 bool readBool();
274 bool readBool() { return 0; } in readBool() function
/external/protobuf/js/binary/
Dreader.js494 return this.readBool();
895 jspb.BinaryReader.prototype.readBool = function() { method in jspb.BinaryReader
1187 return this.readPackedField_(this.decoder_.readBool);
/external/grpc-grpc-java/protobuf-nano/src/generated/test/javanano/io/grpc/protobuf/nano/
DMessages.java110 this.b = input.readBool(); in mergeFrom()
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/read/
DCAVLCReader.java93 public boolean readBool(String message) throws IOException { in readBool() method in CAVLCReader

1234