Home
last modified time | relevance | path

Searched refs:skip_count (Results 1 – 25 of 56) sorted by relevance

123

/third_party/skia/third_party/externals/abseil-cpp/absl/debugging/
Dstacktrace.cc70 int max_depth, int skip_count, in Unwind() argument
78 int size = (*f)(result, sizes, max_depth, skip_count + 1, uc, in Unwind()
88 void** result, int* sizes, int max_depth, int skip_count) { in GetStackFrames() argument
89 return Unwind<true, false>(result, sizes, max_depth, skip_count, nullptr, in GetStackFrames()
95 int skip_count, const void* uc, in GetStackFramesWithContext() argument
97 return Unwind<true, true>(result, sizes, max_depth, skip_count, uc, in GetStackFramesWithContext()
102 void** result, int max_depth, int skip_count) { in GetStackTrace() argument
103 return Unwind<false, false>(result, nullptr, max_depth, skip_count, nullptr, in GetStackTrace()
108 GetStackTraceWithContext(void** result, int max_depth, int skip_count, in GetStackTraceWithContext() argument
110 return Unwind<false, true>(result, nullptr, max_depth, skip_count, uc, in GetStackTraceWithContext()
Dstacktrace.h82 int skip_count);
106 int skip_count, const void* uc,
133 extern int GetStackTrace(void** result, int max_depth, int skip_count);
156 int skip_count, const void* uc,
188 int max_depth, int skip_count,
218 int skip_count, const void* uc,
/third_party/spirv-tools/source/fuzz/
Dfuzzer_pass_split_blocks.cpp68 std::map<SpvOp, uint32_t> skip_count; in Apply() local
79 skip_count.clear(); in Apply()
83 base, opcode, skip_count.count(opcode) ? skip_count.at(opcode) : 0)); in Apply()
85 skip_count[opcode] = in Apply()
86 skip_count.count(opcode) ? skip_count.at(opcode) + 1 : 1; in Apply()
Dinstruction_descriptor.cpp69 uint32_t skip_count = 0; // The number of these opcodes we have skipped when in MakeInstructionDescriptor() local
80 skip_count); in MakeInstructionDescriptor()
86 skip_count++; in MakeInstructionDescriptor()
96 return MakeInstructionDescriptor(block.id(), opcode, skip_count); in MakeInstructionDescriptor()
Dfuzzer_pass.cpp141 std::map<SpvOp, uint32_t> skip_count; in ForEachInstructionWithInstructionDescriptor() local
152 skip_count.clear(); in ForEachInstructionWithInstructionDescriptor()
160 skip_count.count(opcode) ? skip_count.at(opcode) : 0)); in ForEachInstructionWithInstructionDescriptor()
163 skip_count[opcode] = in ForEachInstructionWithInstructionDescriptor()
164 skip_count.count(opcode) ? skip_count.at(opcode) + 1 : 1; in ForEachInstructionWithInstructionDescriptor()
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/
Dfuzzer_pass_split_blocks.cpp68 std::map<SpvOp, uint32_t> skip_count; in Apply() local
79 skip_count.clear(); in Apply()
83 base, opcode, skip_count.count(opcode) ? skip_count.at(opcode) : 0)); in Apply()
85 skip_count[opcode] = in Apply()
86 skip_count.count(opcode) ? skip_count.at(opcode) + 1 : 1; in Apply()
Dinstruction_descriptor.cpp69 uint32_t skip_count = 0; // The number of these opcodes we have skipped when in MakeInstructionDescriptor() local
80 skip_count); in MakeInstructionDescriptor()
86 skip_count++; in MakeInstructionDescriptor()
96 return MakeInstructionDescriptor(block.id(), opcode, skip_count); in MakeInstructionDescriptor()
Dfuzzer_pass.cpp141 std::map<SpvOp, uint32_t> skip_count; in ForEachInstructionWithInstructionDescriptor() local
152 skip_count.clear(); in ForEachInstructionWithInstructionDescriptor()
160 skip_count.count(opcode) ? skip_count.at(opcode) : 0)); in ForEachInstructionWithInstructionDescriptor()
163 skip_count[opcode] = in ForEachInstructionWithInstructionDescriptor()
164 skip_count.count(opcode) ? skip_count.at(opcode) + 1 : 1; in ForEachInstructionWithInstructionDescriptor()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/
Dfuzzer_pass_split_blocks.cpp68 std::map<SpvOp, uint32_t> skip_count; in Apply() local
79 skip_count.clear(); in Apply()
83 base, opcode, skip_count.count(opcode) ? skip_count.at(opcode) : 0)); in Apply()
85 skip_count[opcode] = in Apply()
86 skip_count.count(opcode) ? skip_count.at(opcode) + 1 : 1; in Apply()
Dinstruction_descriptor.cpp69 uint32_t skip_count = 0; // The number of these opcodes we have skipped when in MakeInstructionDescriptor() local
80 skip_count); in MakeInstructionDescriptor()
86 skip_count++; in MakeInstructionDescriptor()
96 return MakeInstructionDescriptor(block.id(), opcode, skip_count); in MakeInstructionDescriptor()
Dfuzzer_pass.cpp141 std::map<SpvOp, uint32_t> skip_count; in ForEachInstructionWithInstructionDescriptor() local
152 skip_count.clear(); in ForEachInstructionWithInstructionDescriptor()
160 skip_count.count(opcode) ? skip_count.at(opcode) : 0)); in ForEachInstructionWithInstructionDescriptor()
163 skip_count[opcode] = in ForEachInstructionWithInstructionDescriptor()
164 skip_count.count(opcode) ? skip_count.at(opcode) + 1 : 1; in ForEachInstructionWithInstructionDescriptor()
/third_party/flutter/skia/third_party/externals/sfntly/cpp/src/sfntly/port/
Dfile_input_stream.cc121 int64_t skip_count = 0; in Skip() local
123 skip_count = std::max<int64_t>(0 - (int64_t)position_, n); in Skip()
124 position_ -= (size_t)(0 - skip_count); in Skip()
127 skip_count = std::min<size_t>(length_ - position_, (size_t)n); in Skip()
128 position_ += (size_t)skip_count; in Skip()
129 fseek(file_, (size_t)skip_count, SEEK_CUR); in Skip()
131 return skip_count; in Skip()
Dmemory_input_stream.cc115 int64_t skip_count = 0; in Skip() local
117 skip_count = std::max<int64_t>(0 - (int64_t)position_, n); in Skip()
118 position_ -= (size_t)(0 - skip_count); in Skip()
120 skip_count = std::min<size_t>(length_ - position_, (size_t)n); in Skip()
121 position_ += (size_t)skip_count; in Skip()
123 return skip_count; in Skip()
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/port/
Dfile_input_stream.cc121 int64_t skip_count = 0; in Skip() local
123 skip_count = std::max<int64_t>(0 - (int64_t)position_, n); in Skip()
124 position_ -= (size_t)(0 - skip_count); in Skip()
127 skip_count = std::min<size_t>(length_ - position_, (size_t)n); in Skip()
128 position_ += (size_t)skip_count; in Skip()
129 fseek(file_, (size_t)skip_count, SEEK_CUR); in Skip()
131 return skip_count; in Skip()
Dmemory_input_stream.cc115 int64_t skip_count = 0; in Skip() local
117 skip_count = std::max<int64_t>(0 - (int64_t)position_, n); in Skip()
118 position_ -= (size_t)(0 - skip_count); in Skip()
120 skip_count = std::min<size_t>(length_ - position_, (size_t)n); in Skip()
121 position_ += (size_t)skip_count; in Skip()
123 return skip_count; in Skip()
/third_party/skia/third_party/externals/abseil-cpp/absl/debugging/internal/
Dstacktrace_generic-inl.inc48 static int UnwindImpl(void** result, int* sizes, int max_depth, int skip_count,
61 skip_count++; // we want to skip the current frame as well
62 int result_count = size - skip_count;
68 result[i] = stack[i + skip_count];
75 if (size - skip_count - max_depth > 0) {
76 *min_dropped_frames = size - skip_count - max_depth;
Dstacktrace_emscripten-inl.inc65 static int UnwindImpl(void **result, int *sizes, int max_depth, int skip_count,
80 int result_count = size - skip_count;
83 for (int i = 0; i < result_count; i++) result[i] = stack[i + skip_count];
90 if (size - skip_count - max_depth > 0) {
91 *min_dropped_frames = size - skip_count - max_depth;
Dstacktrace_aarch64-inl.inc133 static int UnwindImpl(void** result, int* sizes, int max_depth, int skip_count,
141 skip_count++; // Skip the frame for this function.
163 if (skip_count > 0) {
164 skip_count--;
Dstacktrace_arm-inl.inc70 static int UnwindImpl(void** result, int* sizes, int max_depth, int skip_count,
94 if (skip_count > 0) {
95 skip_count--;
Dstacktrace_riscv-inl.inc172 static int UnwindImpl(void **result, int *sizes, int max_depth, int skip_count,
180 skip_count++; // Skip the frame for this function.
200 if (skip_count > 0) {
201 skip_count--;
Dstacktrace_win32-inl.inc64 static int UnwindImpl(void** result, int* sizes, int max_depth, int skip_count,
70 n = (int)RtlCaptureStackBackTrace_fn(skip_count + 2, max_depth, result, 0);
Dstacktrace_unimplemented-inl.inc6 int /* max_depth */, int /* skip_count */,
Dstacktrace_powerpc-inl.inc167 static int UnwindImpl(void** result, int* sizes, int max_depth, int skip_count,
190 skip_count++;
211 if (skip_count > 0) {
212 skip_count--;
/third_party/ffmpeg/libavcodec/
Dcavsdec.c984 int skip_count = -1; in decode_pic() local
1103 skip_count = -1; in decode_pic()
1104 if (h->skip_mode_flag && (skip_count < 0)) { in decode_pic()
1109 skip_count = get_ue_golomb(&h->gb); in decode_pic()
1111 if (h->skip_mode_flag && skip_count--) { in decode_pic()
1130 skip_count = -1; in decode_pic()
1131 if (h->skip_mode_flag && (skip_count < 0)) { in decode_pic()
1136 skip_count = get_ue_golomb(&h->gb); in decode_pic()
1138 if (h->skip_mode_flag && skip_count--) { in decode_pic()
/third_party/googletest/googlemock/test/
Dgmock-internal-utils_test.cc425 std::string CurrentStackTrace(int max_depth, int skip_count) override { in CurrentStackTrace()
426 return (testing::Message() << max_depth << "::" << skip_count << "\n") in CurrentStackTrace()
450 int skip_count = atoi(log.substr(expected_message.size()).c_str()); in TEST() local
463 EXPECT_THAT(skip_count, in TEST()

123