Home
last modified time | relevance | path

Searched refs:back (Results 1 - 25 of 1904) sorted by relevance

12345678910>>...77

/third_party/json/include/nlohmann/detail/input/
H A Djson_sax.hpp233 if (JSON_HEDLEY_UNLIKELY(len != static_cast<std::size_t>(-1) && len > ref_stack.back()->max_size())) in start_object()
235 JSON_THROW(out_of_range::create(408, concat("excessive object size: ", std::to_string(len)), ref_stack.back())); in start_object()
244 JSON_ASSERT(ref_stack.back()->is_object()); in key()
247 object_element = &(ref_stack.back()->m_value.object->operator[](val)); in key()
254 JSON_ASSERT(ref_stack.back()->is_object()); in end_object()
256 ref_stack.back()->set_parents(); in end_object()
265 if (JSON_HEDLEY_UNLIKELY(len != static_cast<std::size_t>(-1) && len > ref_stack.back()->max_size())) in start_array()
267 JSON_THROW(out_of_range::create(408, concat("excessive array size: ", std::to_string(len)), ref_stack.back())); in start_array()
276 JSON_ASSERT(ref_stack.back()->is_array()); in end_array()
278 ref_stack.back() in end_array()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/BinaryFormat/
H A DMsgPackDocument.cpp129 else if (Stack.back().Node.getKind() == Type::Array) { in readFromBlob()
131 auto &Array = Stack.back().Node.getArray(); in readFromBlob()
134 auto &Map = Stack.back().Node.getMap(); in readFromBlob()
135 if (!Stack.back().MapEntry) { in readFromBlob()
137 Stack.back().MapEntry = &Map[Node]; in readFromBlob()
140 *Stack.back().MapEntry = Node; in readFromBlob()
141 Stack.back().MapEntry = nullptr; in readFromBlob()
157 if (Stack.back().Node.getKind() == msgpack::Type::Array) { in readFromBlob()
158 if (Stack.back().Node.getArray().size() != Stack.back() in readFromBlob()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Demangle/
H A DItaniumDemangle.cpp465 if (!db.template_param.back().empty()) { in parse_template_param()
466 for (auto &t : db.template_param.back().front()) in parse_template_param()
484 if (sub < db.template_param.back().size()) { in parse_template_param()
485 for (auto &temp : db.template_param.back()[sub]) in parse_template_param()
512 auto expr = db.names.back().move_full(); in parse_const_cast_expr()
516 db.names.back() = in parse_const_cast_expr()
517 "const_cast<" + db.names.back().move_full() + ">(" + expr + ")"; in parse_const_cast_expr()
538 auto expr = db.names.back().move_full(); in parse_dynamic_cast_expr()
542 db.names.back() = in parse_dynamic_cast_expr()
543 "dynamic_cast<" + db.names.back() in parse_dynamic_cast_expr()
[all...]
/third_party/icu/icu4c/source/layoutex/
H A DLXUtilities.cpp79 le_int32 front, back; in reverse() local
81 for (front = 0, back = length - 1; front < back; front += 1, back -= 1) { in reverse()
84 array[front] = array[back]; in reverse()
85 array[back] = swap; in reverse()
91 le_int32 front, back; in reverse() local
93 for (front = 0, back = length - 1; front < back; front += 1, back in reverse()
[all...]
/third_party/vk-gl-cts/external/amber/src/src/vulkan/
H A Dvertex_buffer.cc47 vertex_attr_desc_.back().binding = binding; in SetData()
48 vertex_attr_desc_.back().location = location; in SetData()
49 vertex_attr_desc_.back().offset = offset; in SetData()
50 vertex_attr_desc_.back().format = device_->GetVkFormat(*format); in SetData()
53 vertex_binding_desc_.back().binding = binding; in SetData()
54 vertex_binding_desc_.back().stride = stride; in SetData()
55 vertex_binding_desc_.back().inputRate = GetVkInputRate(rate); in SetData()
88 Result r = transfer_buffers_.back()->AddUsageFlags( in SendVertexData()
92 r = transfer_buffers_.back()->Initialize(); in SendVertexData()
94 std::memcpy(transfer_buffers_.back() in SendVertexData()
[all...]
/third_party/nghttp2/lib/
H A Dnghttp2_queue.c31 queue->front = queue->back = NULL; in nghttp2_queue_init()
55 if (queue->back) { in nghttp2_queue_push()
56 queue->back->next = new_cell; in nghttp2_queue_push()
57 queue->back = new_cell; in nghttp2_queue_push()
60 queue->front = queue->back = new_cell; in nghttp2_queue_push()
69 if (front == queue->back) { in nghttp2_queue_pop()
70 queue->back = NULL; in nghttp2_queue_pop()
81 assert(queue->back); in nghttp2_queue_back()
82 return queue->back->data; in nghttp2_queue_back()
/third_party/node/deps/nghttp2/lib/
H A Dnghttp2_queue.c31 queue->front = queue->back = NULL; in nghttp2_queue_init()
55 if (queue->back) { in nghttp2_queue_push()
56 queue->back->next = new_cell; in nghttp2_queue_push()
57 queue->back = new_cell; in nghttp2_queue_push()
60 queue->front = queue->back = new_cell; in nghttp2_queue_push()
69 if (front == queue->back) { in nghttp2_queue_pop()
70 queue->back = NULL; in nghttp2_queue_pop()
81 assert(queue->back); in nghttp2_queue_back()
82 return queue->back->data; in nghttp2_queue_back()
/third_party/skia/src/gpu/
H A DGrBufferAllocPool.cpp97 GrBuffer* buffer = fBlocks.back().fBuffer.get(); in deleteBlocks()
99 UNMAP_BUFFER(fBlocks.back()); in deleteBlocks()
125 BufferBlock& block = fBlocks.back(); in unmap()
132 this->flushCpuData(fBlocks.back(), flushSize); in unmap()
145 const GrBuffer* buffer = fBlocks.back().fBuffer.get(); in validate()
150 const GrBuffer* buffer = fBlocks.back().fBuffer.get(); in validate()
199 BufferBlock& back = fBlocks.back(); in makeSpace() local
200 size_t usedBytes = back.fBuffer->size() - back in makeSpace()
233 BufferBlock& back = fBlocks.back(); makeSpace() local
[all...]
/third_party/skia/src/core/
H A DSkRasterClipStack.h29 Rec& rec = fStack.back(); in setNewSize()
34 const SkRasterClip& rc() const { return fStack.back().fRC; } in rc()
38 SkASSERT(fStack.back().fDeferredCount >= 0); in save()
39 fStack.back().fDeferredCount += 1; in save()
46 if (--fStack.back().fDeferredCount < 0) { in restore()
47 SkASSERT(fStack.back().fDeferredCount == -1); in restore()
112 SkASSERT(fStack.back().fDeferredCount >= 0); in writable_rc()
113 if (fStack.back().fDeferredCount > 0) { in writable_rc()
114 fStack.back().fDeferredCount -= 1; in writable_rc()
115 fStack.emplace_back(fStack.back() in writable_rc()
[all...]
H A DSkClipStack.cpp579 Element* element = (Element*)fDeque.back(); in reset()
598 Element* element = (Element*)fDeque.back(); in restoreTo()
626 Element* element = (Element*)fDeque.back(); in getBounds()
698 // Use reverse iterator instead of back because Rect path may need previous in pushElement()
705 prior = (Element*) fDeque.back(); in pushElement()
780 Element* element = (Element*) fDeque.back(); in clipEmpty()
787 ((Element*)fDeque.back())->fGenID = kEmptyGenID; in clipEmpty()
881 const Element* back = static_cast<const Element*>(fDeque.back()); in isRRect() local
882 if (!back) { in isRRect()
952 const Element* back = static_cast<const Element*>(fDeque.back()); getTopmostGenID() local
[all...]
/third_party/ffmpeg/libavutil/
H A Dlzo.c114 * @param back how many bytes back we start, must be > 0
117 * cnt > back is valid, this will copy the bytes we just copied,
118 * thus creating a repeating pattern with a period length of back.
120 static inline void copy_backptr(LZOContext *c, int back, int cnt) in copy_backptr() argument
124 if (dst - c->out_start < back) { in copy_backptr()
132 av_memcpy_backptr(dst, back, cnt); in copy_backptr()
164 int cnt, back; in av_lzo1x_decode() local
168 back = (GETB(c) << 3) + ((x >> 2) & 7) + 1; in av_lzo1x_decode()
172 back in av_lzo1x_decode()
[all...]
/third_party/json/docs/examples/
H A Dback.cpp18 // call back() in main()
19 std::cout << j_boolean.back() << '\n'; in main()
20 std::cout << j_number_integer.back() << '\n'; in main()
21 std::cout << j_number_float.back() << '\n'; in main()
22 std::cout << j_object.back() << '\n'; in main()
23 //std::cout << j_object_empty.back() << '\n'; // undefined behavior in main()
24 std::cout << j_array.back() << '\n'; in main()
25 //std::cout << j_array_empty.back() << '\n'; // undefined behavior in main()
26 std::cout << j_string.back() << '\n'; in main()
28 // back() calle in main()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DSCCIterator.h130 /// still contain a loop if the node has an edge back to itself.
160 while (VisitStack.back().NextChild != GT::child_end(VisitStack.back().Node)) { in DFSVisitChildren()
162 NodeRef childN = *VisitStack.back().NextChild++; in DFSVisitChildren()
172 if (VisitStack.back().MinVisited > childNum) in DFSVisitChildren()
173 VisitStack.back().MinVisited = childNum; in DFSVisitChildren()
183 NodeRef visitingN = VisitStack.back().Node; in GetNextSCC()
184 unsigned minVisitNum = VisitStack.back().MinVisited; in GetNextSCC()
185 assert(VisitStack.back().NextChild == GT::child_end(visitingN)); in GetNextSCC()
189 if (!VisitStack.empty() && VisitStack.back() in GetNextSCC()
[all...]
/third_party/musl/libc-test/src/functionalext/supplement/stat/
H A Dlstat.c42 int32_t back = lstat(ptr, &statbuff); in lstat_0100() local
43 EXPECT_EQ("lstat_0100", back, 0); in lstat_0100()
64 int32_t back = __lstat_time64(ptr, &statbuff); in lstat_time64_0100() local
65 EXPECT_EQ("lstat_0100", back, 0); in lstat_time64_0100()
79 int32_t back = lstat(STR_TEST_TXT, &statbuff); in lstat_0200() local
80 EXPECT_EQ("lstat_0200", back, -1); in lstat_0200()
101 int32_t back = lstat(ptrlink, &statbuff); in lstat_0300() local
102 EXPECT_EQ("lstat_0300", back, 0); in lstat_0300()
/third_party/pulseaudio/src/pulsecore/
H A Dqueue.c40 struct queue_entry *front, *back; member
47 q->front = q->back = NULL; in pa_queue_new()
62 pa_assert(!q->back); in pa_queue_free()
80 if (q->back) { in pa_queue_push()
82 q->back->next = e; in pa_queue_push()
88 q->back = e; in pa_queue_push()
103 if (q->back == e) { in pa_queue_pop()
105 q->back = NULL; in pa_queue_pop()
/third_party/skia/third_party/externals/libpng/contrib/libtests/
H A Dpngstest.c1203 gpc_noop(Pixel *out, const Pixel *in, const Background *back) in gpc_noop() argument
1205 (void)back; in gpc_noop()
1214 gpc_nop8(Pixel *out, const Pixel *in, const Background *back) in gpc_nop8() argument
1216 (void)back; in gpc_nop8()
1233 gpc_nop6(Pixel *out, const Pixel *in, const Background *back) in gpc_nop6() argument
1235 (void)back; in gpc_nop6()
1253 gpc_bckg(Pixel *out, const Pixel *in, const Background *back) in gpc_bckg() argument
1256 out->r = out->g = out->b = back->ig; in gpc_bckg()
1265 out->r = out->g = out->b = sRGB(sRGB_to_d[in->g] * a + back->dg * (1-a)); in gpc_bckg()
1273 gpc_bckc(Pixel *out, const Pixel *in, const Background *back) in gpc_bckc() argument
1303 gpc_g8(Pixel *out, const Pixel *in, const Background *back) gpc_g8() argument
1319 gpc_g8b(Pixel *out, const Pixel *in, const Background *back) gpc_g8b() argument
1348 gpc_lin(Pixel *out, const Pixel *in, const Background *back) gpc_lin() argument
1384 gpc_pre(Pixel *out, const Pixel *in, const Background *back) gpc_pre() argument
1420 gpc_preq(Pixel *out, const Pixel *in, const Background *back) gpc_preq() argument
1456 gpc_glin(Pixel *out, const Pixel *in, const Background *back) gpc_glin() argument
1472 gpc_gpre(Pixel *out, const Pixel *in, const Background *back) gpc_gpre() argument
1488 gpc_gprq(Pixel *out, const Pixel *in, const Background *back) gpc_gprq() argument
1505 gpc_Lin(Pixel *out, const Pixel *in, const Background *back) gpc_Lin() argument
1543 gpc_Pre(Pixel *out, const Pixel *in, const Background *back) gpc_Pre() argument
1581 gpc_Preq(Pixel *out, const Pixel *in, const Background *back) gpc_Preq() argument
1620 gpc_Glin(Pixel *out, const Pixel *in, const Background *back) gpc_Glin() argument
1640 gpc_Gpre(Pixel *out, const Pixel *in, const Background *back) gpc_Gpre() argument
1658 gpc_Gprq(Pixel *out, const Pixel *in, const Background *back) gpc_Gprq() argument
1676 gpc_sRGB(Pixel *out, const Pixel *in, const Background *back) gpc_sRGB() argument
1712 gpc_unpg(Pixel *out, const Pixel *in, const Background *back) gpc_unpg() argument
1731 gpc_unpc(Pixel *out, const Pixel *in, const Background *back) gpc_unpc() argument
1752 gpc_b16g(Pixel *out, const Pixel *in, const Background *back) gpc_b16g() argument
1771 gpc_b16c(Pixel *out, const Pixel *in, const Background *back) gpc_b16c() argument
1796 gpc_sG(Pixel *out, const Pixel *in, const Background *back) gpc_sG() argument
1806 gpc_sGp(Pixel *out, const Pixel *in, const Background *back) gpc_sGp() argument
1825 gpc_sCp(Pixel *out, const Pixel *in, const Background *back) gpc_sCp() argument
1847 gpc_gb16(Pixel *out, const Pixel *in, const Background *back) gpc_gb16() argument
1869 gpc_cb16(Pixel *out, const Pixel *in, const Background *back) gpc_cb16() argument
1902 gpc_A(Pixel *out, const Pixel *in, const Background *back) gpc_A() argument
1913 gpc_g16(Pixel *out, const Pixel *in, const Background *back) gpc_g16() argument
1922 gpc_g16q(Pixel *out, const Pixel *in, const Background *back) gpc_g16q() argument
2379 Pixel back; logpixel() local
[all...]
/third_party/gn/src/gn/
H A Dfunctions_target_rust_unittest.cc32 ASSERT_EQ(item_collector.back()->AsTarget()->rust_values().crate_name(), in TEST_F()
43 ASSERT_EQ(item_collector.back()->AsTarget()->rust_values().crate_name(), in TEST_F()
45 << item_collector.back()->AsTarget()->rust_values().crate_name(); in TEST_F()
67 item_collector.back()->AsTarget()->rust_values().crate_root().value(), in TEST_F()
81 item_collector.back()->AsTarget()->rust_values().crate_root().value(), in TEST_F()
93 item_collector.back()->AsTarget()->rust_values().crate_root().value(), in TEST_F()
105 item_collector.back()->AsTarget()->rust_values().crate_root().value(), in TEST_F()
117 item_collector.back()->AsTarget()->rust_values().crate_root().value(), in TEST_F()
140 item_collector.back()->AsTarget()->rust_values().crate_root().value(), in TEST_F()
162 ASSERT_EQ(item_collector.back() in TEST_F()
[all...]
/third_party/skia/gm/
H A Dpathmaskcache.cpp79 paths.back().moveTo(0.f, 0.f);
80 paths.back().lineTo(98.f, 100.f);
81 paths.back().lineTo(100.f, 100.f);
82 paths.back().conicTo(150.f, 50.f, 100.f, 0.f, 0.6f);
83 paths.back().conicTo(148.f, 50.f, 100.f, 100.f, 0.6f);
84 paths.back().conicTo(50.f, 30.f, 0.f, 100.f, 0.9f);
87 paths.back().addCircle(30.f, 30.f, 30.f);
88 paths.back().addRect(SkRect::MakeXYWH(45.f, 45.f, 50.f, 60.f));
89 paths.back().setFillType(SkPathFillType::kEvenOdd);
/third_party/skia/samplecode/
H A DSampleShadowUtils.cpp55 fConcavePaths.back().lineTo(9.62f, -16.6667f);
56 fConcavePaths.back().lineTo(28.867f, -16.6667f);
57 fConcavePaths.back().lineTo(19.24f, 0.0f);
58 fConcavePaths.back().lineTo(28.867f, 16.6667f);
59 fConcavePaths.back().lineTo(9.62f, 16.6667f);
60 fConcavePaths.back().lineTo(0.0f, 33.3333f);
61 fConcavePaths.back().lineTo(-9.62f, 16.6667f);
62 fConcavePaths.back().lineTo(-28.867f, 16.6667f);
63 fConcavePaths.back().lineTo(-19.24f, 0.0f);
64 fConcavePaths.back()
[all...]
/third_party/mesa3d/src/mesa/state_tracker/
H A Dst_atom_depth.c111 const GLuint back = ctx->Stencil._BackFace; in st_update_depth_stencil_alpha() local
113 dsa->stencil[1].func = func_to_gallium(ctx->Stencil.Function[back]); in st_update_depth_stencil_alpha()
114 dsa->stencil[1].fail_op = gl_stencil_op_to_pipe(ctx->Stencil.FailFunc[back]); in st_update_depth_stencil_alpha()
115 dsa->stencil[1].zfail_op = gl_stencil_op_to_pipe(ctx->Stencil.ZFailFunc[back]); in st_update_depth_stencil_alpha()
116 dsa->stencil[1].zpass_op = gl_stencil_op_to_pipe(ctx->Stencil.ZPassFunc[back]); in st_update_depth_stencil_alpha()
117 dsa->stencil[1].valuemask = ctx->Stencil.ValueMask[back] & 0xff; in st_update_depth_stencil_alpha()
118 dsa->stencil[1].writemask = ctx->Stencil.WriteMask[back] & 0xff; in st_update_depth_stencil_alpha()
119 sr.ref_value[1] = _mesa_get_stencil_ref(ctx, back); in st_update_depth_stencil_alpha()
/third_party/skia/third_party/externals/dawn/src/common/
H A DSerialQueue.h54 DAWN_ASSERT(this->Empty() || this->mStorage.back().first <= serial); in Enqueue()
56 if (this->Empty() || this->mStorage.back().first < serial) { in Enqueue()
59 this->mStorage.back().second.push_back(value); in Enqueue()
64 DAWN_ASSERT(this->Empty() || this->mStorage.back().first <= serial); in Enqueue()
66 if (this->Empty() || this->mStorage.back().first < serial) { in Enqueue()
69 this->mStorage.back().second.push_back(std::move(value)); in Enqueue()
75 DAWN_ASSERT(this->Empty() || this->mStorage.back().first <= serial); in Enqueue()
82 DAWN_ASSERT(this->Empty() || this->mStorage.back().first <= serial); in Enqueue()
/third_party/rust/crates/unicode-ident/generate/src/
H A Dmain.rs93 let mut back = [0u8; CHUNK / 2]; in main() variables
95 back.copy_from_slice(&chunk[CHUNK / 2..]); in main()
99 .push_back(back); in main()
110 let mut back = [0u8; CHUNK / 2]; in main() variables
112 back.copy_from_slice(&chunk[CHUNK / 2..]); in main()
121 halfdense.extend_from_slice(&back); in main()
122 while let Some(next) = halfchunkmap.get_mut(&back).and_then(VecDeque::pop_front) { in main()
124 concat[..CHUNK / 2].copy_from_slice(&back); in main()
138 back = next; in main()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
H A DDebugLocStream.cpp16 if (Lists.back().EntryOffset == Entries.size()) { in finalizeList()
23 Lists.back().Label = Asm.createTempSymbol("debug_loc"); in finalizeList()
28 if (Entries.back().ByteOffset != DWARFBytes.size()) in finalizeEntry()
32 Comments.erase(Comments.begin() + Entries.back().CommentOffset, in finalizeEntry()
36 assert(Lists.back().EntryOffset <= Entries.size() && in finalizeEntry()
/third_party/mesa3d/src/amd/compiler/
H A Daco_insert_exec_mask.cpp189 if (ctx.info[idx].exec.back().second & mask_type_wqm) in transition_to_WQM()
191 if (ctx.info[idx].exec.back().second & mask_type_global) { in transition_to_WQM()
192 Operand exec_mask = ctx.info[idx].exec.back().first; in transition_to_WQM()
195 ctx.info[idx].exec.back().first = exec_mask; in transition_to_WQM()
205 assert(ctx.info[idx].exec.back().second & mask_type_wqm); in transition_to_WQM()
206 assert(ctx.info[idx].exec.back().first.size() == bld.lm.size()); in transition_to_WQM()
207 assert(ctx.info[idx].exec.back().first.isTemp()); in transition_to_WQM()
208 ctx.info[idx].exec.back().first = in transition_to_WQM()
209 bld.copy(Definition(exec, bld.lm), ctx.info[idx].exec.back().first); in transition_to_WQM()
215 if (ctx.info[idx].exec.back() in transition_to_Exact()
[all...]
/third_party/glslang/glslang/HLSL/
H A DhlslTokenStream.cpp96 token = currentTokenStack.back(); in popTokenStream()
110 ++tokenPosition.back(); in advanceToken()
111 if (tokenPosition.back() >= (int)tokenStreamStack.back()->size()) in advanceToken()
114 token = (*tokenStreamStack.back())[tokenPosition.back()]; in advanceToken()

Completed in 14 milliseconds

12345678910>>...77