Home
last modified time | relevance | path

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

123

/third_party/abseil-cpp/absl/debugging/
Dstacktrace.cc68 int max_depth, int skip_count, in Unwind() argument
76 int size = (*f)(result, sizes, max_depth, skip_count + 1, uc, in Unwind()
86 void** result, int* sizes, int max_depth, int skip_count) { in GetStackFrames() argument
87 return Unwind<true, false>(result, sizes, max_depth, skip_count, nullptr, in GetStackFrames()
93 int skip_count, const void* uc, in GetStackFramesWithContext() argument
95 return Unwind<true, true>(result, sizes, max_depth, skip_count, uc, in GetStackFramesWithContext()
100 void** result, int max_depth, int skip_count) { in GetStackTrace() argument
101 return Unwind<false, false>(result, nullptr, max_depth, skip_count, nullptr, in GetStackTrace()
106 GetStackTraceWithContext(void** result, int max_depth, int skip_count, in GetStackTraceWithContext() argument
108 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/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/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/spirv-tools/source/fuzz/
Dfuzzer_pass_split_blocks.cpp67 std::map<SpvOp, uint32_t> skip_count; in Apply() local
78 skip_count.clear(); in Apply()
82 base, opcode, skip_count.count(opcode) ? skip_count.at(opcode) : 0)); in Apply()
84 skip_count[opcode] = in Apply()
85 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.cpp140 std::map<SpvOp, uint32_t> skip_count; in ForEachInstructionWithInstructionDescriptor() local
151 skip_count.clear(); in ForEachInstructionWithInstructionDescriptor()
159 skip_count.count(opcode) ? skip_count.at(opcode) : 0)); in ForEachInstructionWithInstructionDescriptor()
162 skip_count[opcode] = in ForEachInstructionWithInstructionDescriptor()
163 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/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/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/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--;
/third_party/abseil-cpp/absl/debugging/internal/
Dstacktrace_generic-inl.inc59 static int UnwindImpl(void** result, int* sizes, int max_depth, int skip_count,
72 skip_count++; // we want to skip the current frame as well
73 int result_count = size - skip_count;
79 result[i] = stack[i + skip_count];
86 if (size - skip_count - max_depth > 0) {
87 *min_dropped_frames = size - skip_count - max_depth;
Dstacktrace_aarch64-inl.inc130 static int UnwindImpl(void** result, int* sizes, int max_depth, int skip_count,
138 skip_count++; // Skip the frame for this function.
160 if (skip_count > 0) {
161 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--;
/third_party/libusb/tests/
Dtestlib.c82 int skip_count = 0; in libusb_testlib_run_tests() local
171 case TEST_STATUS_SKIP: skip_count++; break; in libusb_testlib_run_tests()
181 libusb_testlib_logf("Skipped %d tests", skip_count); in libusb_testlib_run_tests()
/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()

123