Home
last modified time | relevance | path

Searched full:front (Results 1 – 25 of 5061) sorted by relevance

12345678910>>...203

/external/webrtc/api/audio/
Dchannel_layout.h24 // Front C
27 // Front L, Front R
30 // Front L, Front R, Back C
33 // Front L, Front R, Front C
36 // Front L, Front R, Front C, Back C
39 // Front L, Front R, Side L, Side R
42 // Front L, Front R, Back L, Back R
45 // Front L, Front R, Front C, Side L, Side R
48 // Front L, Front R, Front C, LFE, Side L, Side R
51 // Front L, Front R, Front C, Back L, Back R
[all …]
/external/libchrome/base/memory/
Dref_counted_memory_unittest.cc36 EXPECT_EQ(45U, mem->front()[0]); in TEST()
37 EXPECT_EQ(99U, mem->front()[1]); in TEST()
45 EXPECT_EQ(12U, mem2->front()[0]); in TEST()
46 EXPECT_EQ(11U, mem2->front()[1]); in TEST()
47 EXPECT_EQ(99U, mem2->front()[2]); in TEST()
56 // Test non-const versions of data(), front() and front_as<>(). in TEST()
58 mem->front()[1] = 2; in TEST()
71 EXPECT_EQ('d', mem->front()[0]); in TEST()
72 EXPECT_EQ('e', mem->front()[1]); in TEST()
73 EXPECT_EQ('e', mem->front()[9]); in TEST()
[all …]
Dref_counted_memory.cc18 (memcmp(front(), other->front(), size()) == 0); in Equals()
25 const unsigned char* RefCountedStaticMemory::front() const { in front() function in base::RefCountedStaticMemory
53 const unsigned char* RefCountedBytes::front() const { in front() function in base::RefCountedBytes
54 // STL will assert if we do front() on an empty vector, but calling code in front()
56 return size() ? &data_.front() : nullptr; in front()
77 const unsigned char* RefCountedString::front() const { in front() function in base::RefCountedString
98 const unsigned char* RefCountedSharedMemory::front() const { in front() function in base::RefCountedSharedMemory
114 const unsigned char* RefCountedSharedMemoryMapping::front() const { in front() function in base::RefCountedSharedMemoryMapping
Dref_counted_memory.h32 virtual const unsigned char* front() const = 0;
40 // Handy method to simplify calling front() with a reinterpret_cast.
42 return reinterpret_cast<const T*>(front()); in front_as()
61 const unsigned char* front() const override;
96 const unsigned char* front() const override;
102 // Non-const versions of front() and front_as() that are simply shorthand for
104 unsigned char* front() { return data_.data(); } in front() function
107 return reinterpret_cast<T*>(front()); in front_as()
130 const unsigned char* front() const override;
153 const unsigned char* front() const override;
[all …]
/external/libcxx/test/std/containers/sequences/list/list.modifiers/
Demplace_front.pass.cpp44 assert(&r1 == &c.front()); in main()
45 assert(c.front().geti() == 2); in main()
46 assert(c.front().getd() == 3.5); in main()
49 assert(&r2 == &c.front()); in main()
53 assert(c.front().geti() == 2); in main()
54 assert(c.front().getd() == 3.5); in main()
58 assert(c.front().geti() == 3); in main()
59 assert(c.front().getd() == 4.5); in main()
69 assert(&r1 == &c.front()); in main()
70 assert(c.front().geti() == 2); in main()
[all …]
Demplace_back.pass.cpp46 assert(c.front().geti() == 2); in main()
47 assert(c.front().getd() == 3.5); in main()
54 assert(c.front().geti() == 2); in main()
55 assert(c.front().getd() == 3.5); in main()
59 assert(c.front().geti() == 2); in main()
60 assert(c.front().getd() == 3.5); in main()
70 assert(c.front().geti() == 2); in main()
71 assert(c.front().getd() == 3.5); in main()
78 assert(c.front().geti() == 2); in main()
79 assert(c.front().getd() == 3.5); in main()
[all …]
/external/libcxx/test/std/containers/sequences/vector/vector.modifiers/
Demplace_back.pass.cpp65 assert(c.front().geti() == 2); in main()
66 assert(c.front().getd() == 3.5); in main()
74 assert(c.front().geti() == 2); in main()
75 assert(c.front().getd() == 3.5); in main()
80 assert(c.front().geti() == 2); in main()
81 assert(c.front().getd() == 3.5); in main()
92 assert(c.front().geti() == 2); in main()
93 assert(c.front().getd() == 3.5); in main()
101 assert(c.front().geti() == 2); in main()
102 assert(c.front().getd() == 3.5); in main()
[all …]
Demplace.pass.cpp63 assert(c.front().geti() == 2); in main()
64 assert(c.front().getd() == 3.5); in main()
69 assert(c.front().geti() == 2); in main()
70 assert(c.front().getd() == 3.5); in main()
77 assert(c.front().geti() == 2); in main()
78 assert(c.front().getd() == 3.5); in main()
90 assert(c.front().geti() == 2); in main()
91 assert(c.front().getd() == 3.5); in main()
96 assert(c.front().geti() == 2); in main()
97 assert(c.front().getd() == 3.5); in main()
[all …]
/external/scudo/standalone/tests/
Dlist_test.cpp46 EXPECT_EQ(L->front(), I1); in checkList()
50 EXPECT_EQ(L->front(), I2); in checkList()
54 EXPECT_EQ(L->front(), I3); in checkList()
58 EXPECT_EQ(L->front(), I4); in checkList()
62 EXPECT_EQ(L->front(), I5); in checkList()
66 EXPECT_EQ(L->front(), I6); in checkList()
80 EXPECT_EQ(L.front(), X); in testListCommon()
88 EXPECT_EQ(L.front(), X); in testListCommon()
97 EXPECT_EQ(L.front(), Z); in testListCommon()
103 EXPECT_EQ(L.front(), Y); in testListCommon()
[all …]
/external/icu/icu4c/source/layoutex/
DLXUtilities.cpp79 le_int32 front, back; in reverse() local
81 for (front = 0, back = length - 1; front < back; front += 1, back -= 1) { in reverse()
82 le_int32 swap = array[front]; in reverse()
84 array[front] = array[back]; in reverse()
91 le_int32 front, back; in reverse() local
93 for (front = 0, back = length - 1; front < back; front += 1, back -= 1) { in reverse()
94 float swap = array[front]; in reverse()
96 array[front] = array[back]; in reverse()
/external/webrtc/audio/utility/
Dchannel_mixing_matrix.cc124 // Only place the mono input in the front left and right channels. in CreateTransformationMatrix()
159 // Mix front LR into center. in CreateTransformationMatrix()
172 // Mix center into front LR. in CreateTransformationMatrix()
174 // When up mixing from mono, just do a copy to front LR. in CreateTransformationMatrix()
181 // Mix back LR into: side LR || back center || front LR || front center. in CreateTransformationMatrix()
194 // Mix back LR into front LR. in CreateTransformationMatrix()
198 // Mix back LR into front center. in CreateTransformationMatrix()
204 // Mix side LR into: back LR || back center || front LR || front center. in CreateTransformationMatrix()
217 // Mix side LR into front LR. in CreateTransformationMatrix()
221 // Mix side LR into front center. in CreateTransformationMatrix()
[all …]
/external/crosvm/devices/src/virtio/snd/
Dconstants.rs94 pub const VIRTIO_SND_CHMAP_FL: u8 = 3; /* front left */
95 pub const VIRTIO_SND_CHMAP_FR: u8 = 4; /* front right */
98 pub const VIRTIO_SND_CHMAP_FC: u8 = 7; /* front center */
103 pub const VIRTIO_SND_CHMAP_FLC: u8 = 12; /* front left center */
104 pub const VIRTIO_SND_CHMAP_FRC: u8 = 13; /* front right center */
107 pub const VIRTIO_SND_CHMAP_FLW: u8 = 16; /* front left wide */
108 pub const VIRTIO_SND_CHMAP_FRW: u8 = 17; /* front right wide */
109 pub const VIRTIO_SND_CHMAP_FLH: u8 = 18; /* front left high */
110 pub const VIRTIO_SND_CHMAP_FCH: u8 = 19; /* front center high */
111 pub const VIRTIO_SND_CHMAP_FRH: u8 = 20; /* front right high */
[all …]
/external/libcxx/test/std/containers/sequences/array/
Dfront_back.pass.cpp12 // reference front(); // constexpr in C++17
14 // const_reference front(); // constexpr in C++14
30 return arr.front() == val; in check_front()
47 C::reference r1 = c.front(); in main()
61 C::const_reference r1 = c.front(); in main()
72 static_assert((std::is_same<decltype(c.front()), T &>::value), ""); in main()
73 static_assert((std::is_same<decltype(cc.front()), const T &>::value), ""); in main()
77 TEST_IGNORE_NODISCARD c.front(); in main()
79 TEST_IGNORE_NODISCARD cc.front(); in main()
88 static_assert((std::is_same<decltype(c.front()), const T &>::value), ""); in main()
[all …]
/external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/
Demplace_front.pass.cpp33 assert(c.front() == Emplaceable()); in main()
34 assert(&r1 == &c.front()); in main()
37 assert(c.front() == Emplaceable(1, 2.5)); in main()
38 assert(&r2 == &c.front()); in main()
41 assert(c.front() == Emplaceable()); in main()
44 assert(c.front() == Emplaceable(1, 2.5)); in main()
55 assert(c.front() == Emplaceable()); in main()
56 assert(&r1 == &c.front()); in main()
59 assert(c.front() == Emplaceable(1, 2.5)); in main()
60 assert(&r2 == &c.front()); in main()
[all …]
/external/eigen/unsupported/Eigen/CXX11/src/ThreadPool/
DRunQueue.h16 // Operations on front of the queue must be done by a single thread (owner),
54 unsigned front = front_.load(std::memory_order_relaxed); in PushFront() local
55 Elem* e = &array_[front & kMask]; in PushFront()
60 front_.store(front + 1 + (kSize << 1), std::memory_order_relaxed); in PushFront()
69 unsigned front = front_.load(std::memory_order_relaxed); in PopFront() local
70 Elem* e = &array_[(front - 1) & kMask]; in PopFront()
77 front = ((front - 1) & kMask2) | (front & ~kMask2); in PopFront()
78 front_.store(front, std::memory_order_relaxed); in PopFront()
177 // front/back, respectively. The remaining bits contain modification counters
194 unsigned front = front_.load(std::memory_order_acquire); in SizeOrNotEmpty() local
[all …]
/external/libcxx/test/std/containers/sequences/vector.bool/
Demplace_back.pass.cpp31 assert(c.front() == false); in main()
33 assert(c.front() == true); in main()
37 assert(c.front() == false); in main()
45 assert(c.front() == false); in main()
48 assert(c.front() == false); in main()
53 assert(c.front() == false); in main()
65 assert(c.front() == false); in main()
67 assert(c.front() == true); in main()
71 assert(c.front() == false); in main()
79 assert(c.front() == false); in main()
[all …]
/external/cldr/docs/rfc/
Ddraft-davis-t-langtag-ext.css24 rfc>front title {
31 rfc>front author:before {
38 rfc>front organization {
42 rfc>front address {
47 rfc>front email { display: block; }
48 rfc>front uri { display: block; }
50 rfc>front date:before {
57 rfc>front area:before { content: "Area: "; }
58 rfc>front area:after { content: "; "; }
59 rfc>front keyword:before { content: "Keyword: "; }
[all …]
/external/angle/src/common/
DCircularBuffer_unittest.cpp24 EXPECT_EQ(3, valueConstructor.front()); in TEST()
62 // Change front index to be non-zero. in TEST()
79 int &value = buf.front(); in TEST()
89 EXPECT_EQ(buf.front(), i % 7 + 10); in TEST()
101 int &value = buf.front(); in TEST()
110 // front is pointing. in TEST()
120 // Make sure iteration hasn't affected the front index. in TEST()
121 EXPECT_EQ(buf.front(), i % 3); in TEST()
146 s &value = buf.front(); in TEST()
152 // Make the front index non-zero. in TEST()
[all …]
/external/angle/src/libANGLE/renderer/vulkan/doc/
DShaderModuleCompilation.md42 participant "ANGLE Front-end"
47 App->"ANGLE Front-end": glCompileShader (VS)
48 "ANGLE Front-end"->"Vulkan Back-end": ShaderVk::compile
50 "ANGLE Translator"- ->"ANGLE Front-end": return SPIR-V
52 Note right of "ANGLE Front-end": SPIR-V is using bogus\ndecorations to be\ncorrected at link time.
56 App->"ANGLE Front-end": glCreateProgram (...)
57 App->"ANGLE Front-end": glAttachShader (...)
58 App->"ANGLE Front-end": glLinkProgram
59 "ANGLE Front-end"->"Vulkan Back-end": ProgramVk::link
65 "Vulkan Back-end"- ->"ANGLE Front-end": return success
[all …]
/external/compiler-rt/lib/sanitizer_common/tests/
Dsanitizer_list_test.cc37 CHECK_EQ(l->front(), i1); in CheckList()
41 CHECK_EQ(l->front(), i2); in CheckList()
45 CHECK_EQ(l->front(), i3); in CheckList()
49 CHECK_EQ(l->front(), i4); in CheckList()
53 CHECK_EQ(l->front(), i5); in CheckList()
57 CHECK_EQ(l->front(), i6); in CheckList()
81 CHECK_EQ(l.front(), x); in TEST()
89 CHECK_EQ(l.front(), x); in TEST()
98 CHECK_EQ(l.front(), z); in TEST()
104 CHECK_EQ(l.front(), y); in TEST()
[all …]
/external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.access/
Dfront.pass.cpp12 // reference front();
13 // const_reference front() const;
28 assert(c.front() == 0); in main()
29 c.front() = 10; in main()
30 assert(c.front() == 10); in main()
38 assert(c.front() == 0); in main()
47 assert(c.front() == 0); in main()
48 c.front() = 10; in main()
49 assert(c.front() == 10); in main()
57 assert(c.front() == 0); in main()
/external/mesa3d/src/compiler/nir/
Dnir_lower_two_sided_color.c37 nir_variable *front; /* COLn */ member
47 * instruction used to select front or back color based on FACE.
110 state->colors[state->colors_count].front = var; in setup_inputs()
124 if (state->colors[i].front->data.location == VARYING_SLOT_COL0) in setup_inputs()
131 state->colors[i].front->data.interpolation); in setup_inputs()
156 state->colors[idx].front->data.driver_location; in nir_lower_two_sided_color_block()
168 unsigned loc = state->colors[idx].front->data.location; in nir_lower_two_sided_color_block()
191 nir_ssa_def *front, *back; in nir_lower_two_sided_color_block() local
193 front = nir_load_var(b, state->colors[idx].front); in nir_lower_two_sided_color_block()
196 front = load_input(b, state->colors[idx].front); in nir_lower_two_sided_color_block()
[all …]
/external/autotest/test_suites/
Dcontrol.camerabox_facing-front6 NAME = "camerabox_facing-front"
7 PURPOSE = "Test front camera functionality in front facing camerabox setup."
15 This is front facing camerabox test suite.
17 The suite is for testing front camera functionality in front facing camerabox
33 args_dict['suite_dependencies'] = 'camerabox_facing:front'
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/transforms/
Dmerge_control_flow.cc48 for (Operation& op : if_op.then_branch().front()) { in GetAllOpsFromIf()
51 for (Operation& op : if_op.else_branch().front()) { in GetAllOpsFromIf()
82 for (Operation& op : destination.then_branch().front()) { in SafeToMerge()
89 for (Operation& op : destination.else_branch().front()) { in SafeToMerge()
149 Block& destination_then_block = destination.then_branch().front(); in MoveBranches()
150 auto& source_then_body = source.then_branch().front().getOperations(); in MoveBranches()
155 Block& destination_else_block = destination.else_branch().front(); in MoveBranches()
156 auto& source_else_body = source.else_branch().front().getOperations(); in MoveBranches()
182 auto* op = queue.front(); in MoveResultsAfter()
218 destination.then_branch().front().getTerminator()->getOperand( in CreateMergedIf()
[all …]
/external/skia/src/gpu/
DGrFinishCallbacks.cpp29 while (!fCallbacks.empty() && fGpu->waitFence(fCallbacks.front().fFence)) { in check()
30 fCallbacks.front().fCallback(fCallbacks.front().fContext); in check()
31 fGpu->deleteFence(fCallbacks.front().fFence); in check()
38 fCallbacks.front().fCallback(fCallbacks.front().fContext); in callAll()
40 fGpu->deleteFence(fCallbacks.front().fFence); in callAll()

12345678910>>...203