Home
last modified time | relevance | path

Searched refs:side (Results 1 – 25 of 667) sorted by relevance

12345678910>>...27

/external/mesa3d/src/mesa/drivers/dri/nouveau/
Dnv20_state_tnl.c35 #define LIGHT_MODEL_AMBIENT_R(side) \ argument
36 ((side) ? NV20_3D_LIGHT_MODEL_BACK_AMBIENT_R : \
38 #define LIGHT_AMBIENT_R(side, i) \ argument
39 ((side) ? NV20_3D_LIGHT_BACK_AMBIENT_R(i) : \
41 #define LIGHT_DIFFUSE_R(side, i) \ argument
42 ((side) ? NV20_3D_LIGHT_BACK_DIFFUSE_R(i) : \
44 #define LIGHT_SPECULAR_R(side, i) \ argument
45 ((side) ? NV20_3D_LIGHT_BACK_SPECULAR_R(i) : \
47 #define MATERIAL_FACTOR_R(side) \ argument
48 ((side) ? NV20_3D_MATERIAL_FACTOR_BACK_R : \
[all …]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
Dnv20_state_tnl.c35 #define LIGHT_MODEL_AMBIENT_R(side) \ argument
36 ((side) ? NV20_3D_LIGHT_MODEL_BACK_AMBIENT_R : \
38 #define LIGHT_AMBIENT_R(side, i) \ argument
39 ((side) ? NV20_3D_LIGHT_BACK_AMBIENT_R(i) : \
41 #define LIGHT_DIFFUSE_R(side, i) \ argument
42 ((side) ? NV20_3D_LIGHT_BACK_DIFFUSE_R(i) : \
44 #define LIGHT_SPECULAR_R(side, i) \ argument
45 ((side) ? NV20_3D_LIGHT_BACK_SPECULAR_R(i) : \
47 #define MATERIAL_FACTOR_R(side) \ argument
48 ((side) ? NV20_3D_MATERIAL_FACTOR_BACK_R : \
[all …]
/external/guava/guava/src/com/google/common/collect/
DBstInOrderPath.java39 public BstInOrderPath<N> extension(BstInOrderPath<N> path, BstSide side) { in inOrderFactory()
40 return BstInOrderPath.extension(path, side); in inOrderFactory()
51 BstInOrderPath<N> path, BstSide side) {
54 return new BstInOrderPath<N>(tip.getChild(side), side, path);
68 private Optional<BstInOrderPath<N>> computeNextInOrder(BstSide side) {
69 if (getTip().hasChild(side)) {
70 BstInOrderPath<N> path = extension(this, side);
71 BstSide otherSide = side.other();
78 while (current.sideExtension == side) {
86 private Optional<BstInOrderPath<N>> nextInOrder(BstSide side) {
[all …]
DBstRangeOps.java56 BstAggregate<? super N> aggregate, GeneralRange<K> range, BstSide side, @Nullable N root) { in totalBeyondRangeToSide() argument
59 if (beyond(range, root.getKey(), side)) { in totalBeyondRangeToSide()
61 accum += aggregate.treeValue(root.childOrNull(side)); in totalBeyondRangeToSide()
62 root = root.childOrNull(side.other()); in totalBeyondRangeToSide()
64 root = root.childOrNull(side); in totalBeyondRangeToSide()
96 BstBalancePolicy<N> balancePolicy, BstNodeFactory<N> nodeFactory, BstSide side, in subTreeBeyondRangeToSide() argument
101 if (beyond(range, root.getKey(), side)) { in subTreeBeyondRangeToSide()
104 switch (side) { in subTreeBeyondRangeToSide()
117 range, balancePolicy, nodeFactory, side, root.childOrNull(side)); in subTreeBeyondRangeToSide()
127 GeneralRange<K> range, BstSide side, BstPathFactory<N, P> pathFactory, @Nullable N root) { in furthestPath() argument
[all …]
DBstNode.java81 public final N childOrNull(BstSide side) { in childOrNull() argument
82 switch (side) { in childOrNull()
95 public final boolean hasChild(BstSide side) { in hasChild() argument
96 return childOrNull(side) != null; in hasChild()
104 public final N getChild(BstSide side) { in getChild() argument
105 N child = childOrNull(side); in getChild()
/external/chromium_org/v8/test/webkit/
DtoString-prefix-postfix-preserve-parens-expected.txt31 PASS prefix_should_preserve_parens(1, 2, 3); threw exception ReferenceError: Invalid left-hand side
32 …erve_parens))(1, 2, 3); threw exception ReferenceError: Invalid left-hand side expression in prefi…
35 …eserve_parens(1, 2, 3); threw exception ReferenceError: Invalid left-hand side expression in postf…
36 …erve_parens))(1, 2, 3); threw exception ReferenceError: Invalid left-hand side expression in postf…
39 PASS both_should_preserve_parens(1, 2, 3); threw exception ReferenceError: Invalid left-hand side e…
40 …erve_parens))(1, 2, 3); threw exception ReferenceError: Invalid left-hand side expression in prefi…
43 …_parens_multi(1, 2, 3); threw exception ReferenceError: Invalid left-hand side expression in prefi…
44 …arens_multi))(1, 2, 3); threw exception ReferenceError: Invalid left-hand side expression in prefi…
47 …_parens_multi(1, 2, 3); threw exception ReferenceError: Invalid left-hand side expression in postf…
48 …arens_multi))(1, 2, 3); threw exception ReferenceError: Invalid left-hand side expression in postf…
[all …]
/external/chromium_org/chrome/browser/resources/chromeos/login/
Duser_pod_row.css373 .side-pane-name {
382 .side-pane-learn-more {
390 .side-pane-learn-more:hover {
404 .side-pane-divider,
405 .side-pane-container {
411 .side-pane-divider {
419 html[dir=rtl] .side-pane-divider {
424 .side-pane-container {
432 html[dir=rtl] .side-pane-container {
437 .side-pane-contents {
[all …]
/external/guava/guava-tests/test/com/google/common/collect/
DBstNodeTest.java37 private void testLacksChild(SimpleNode node, BstSide side) { in testLacksChild() argument
38 assertNull(node.childOrNull(side)); in testLacksChild()
39 assertFalse(node.hasChild(side)); in testLacksChild()
41 node.getChild(side); in testLacksChild()
46 private void testChildIs(SimpleNode node, BstSide side, SimpleNode expectedChild) { in testChildIs() argument
47 assertEquals(expectedChild, node.childOrNull(side)); in testChildIs()
48 assertTrue(node.hasChild(side)); in testChildIs()
49 assertEquals(expectedChild, node.getChild(side)); in testChildIs()
/external/chromium_org/third_party/opus/src/silk/
Dstereo_LR_to_MS.c53 VARDECL( opus_int16, side ); in silk_stereo_LR_to_MS()
61 ALLOC( side, frame_length + 2, opus_int16 ); in silk_stereo_LR_to_MS()
67 side[ n ] = (opus_int16)silk_SAT16( silk_RSHIFT_ROUND( diff, 1 ) ); in silk_stereo_LR_to_MS()
72 silk_memcpy( side, state->sSide, 2 * sizeof( opus_int16 ) ); in silk_stereo_LR_to_MS()
74 silk_memcpy( state->sSide, &side[ frame_length ], 2 * sizeof( opus_int16 ) ); in silk_stereo_LR_to_MS()
89 … sum = silk_RSHIFT_ROUND( silk_ADD_LSHIFT( side[ n ] + side[ n + 2 ], side[ n + 1 ], 1 ), 2 ); in silk_stereo_LR_to_MS()
91 HP_side[ n ] = side[ n + 1 ] - sum; in silk_stereo_LR_to_MS()
211 … sum = silk_SMLAWB( silk_SMULWB( w_Q24, side[ n + 1 ] ), sum, pred0_Q13 ); /* Q8 */ in silk_stereo_LR_to_MS()
221 … sum = silk_SMLAWB( silk_SMULWB( w_Q24, side[ n + 1 ] ), sum, pred0_Q13 ); /* Q8 */ in silk_stereo_LR_to_MS()
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DGridCoordinate.h50 …ainstOpposite(size_t resolvedOppositePosition, const GridPosition& position, GridPositionSide side) in createWithSpanAgainstOpposite()
55 if (side == ColumnStartSide || side == RowStartSide) { in createWithSpanAgainstOpposite()
63 … resolvedOppositePosition, const GridPosition& position, GridPositionSide side, const Vector<size_… in createWithNamedSpanAgainstOpposite()
65 if (side == RowStartSide || side == ColumnStartSide) in createWithNamedSpanAgainstOpposite()
DGridPosition.h65 static size_t adjustGridPositionForSide(size_t resolvedPosition, GridPositionSide side) in adjustGridPositionForSide() argument
68 if (side == ColumnEndSide || side == RowEndSide) in adjustGridPositionForSide()
/external/iptables/extensions/
Dlibxt_recent.c82 info->side = XT_RECENT_SOURCE; in recent_init()
115 info->side = XT_RECENT_SOURCE; in recent_parse()
118 info->side = XT_RECENT_DEST; in recent_parse()
153 if (info->side == XT_RECENT_SOURCE) in recent_print()
155 if (info->side == XT_RECENT_DEST) in recent_print()
179 if (info->side == XT_RECENT_SOURCE) in recent_save()
181 if (info->side == XT_RECENT_DEST) in recent_save()
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/
Dt_vb_lighttmp.h113 GLint side; in TAG() local
166 side = 1; in TAG()
177 side = 0; in TAG()
182 COPY_3V(contrib, light->_MatAmbient[side]); in TAG()
183 ACC_SCALE_SCALAR_3V(contrib, n_dot_VP, light->_MatDiffuse[side]); in TAG()
184 ACC_SCALE_SCALAR_3V(sum[side], attenuation, contrib ); in TAG()
207 GLfloat spec_coef = lookup_shininess(ctx, side, n_dot_h); in TAG()
210 ACC_SCALE_SCALAR_3V( spec[side], spec_coef, in TAG()
211 light->_MatSpecular[side]); in TAG()
290 GLint side; in TAG() local
[all …]
/external/mesa3d/src/mesa/tnl/
Dt_vb_lighttmp.h113 GLint side; in TAG() local
166 side = 1; in TAG()
177 side = 0; in TAG()
182 COPY_3V(contrib, light->_MatAmbient[side]); in TAG()
183 ACC_SCALE_SCALAR_3V(contrib, n_dot_VP, light->_MatDiffuse[side]); in TAG()
184 ACC_SCALE_SCALAR_3V(sum[side], attenuation, contrib ); in TAG()
207 GLfloat spec_coef = lookup_shininess(ctx, side, n_dot_h); in TAG()
210 ACC_SCALE_SCALAR_3V( spec[side], spec_coef, in TAG()
211 light->_MatSpecular[side]); in TAG()
290 GLint side; in TAG() local
[all …]
/external/chromium_org/third_party/ots/test/
DREADME106 side-by-side - font quality checker
109 side-by-side is a program which renders some characters (ASCII, Latin-1, CJK)
127 $ ./side-by-side ttf_or_otf_file
130 $ ./side-by-side linux/kochi-gothic.ttf # no problem
131 $ ./side-by-side free/kredit1.ttf # this is known issue of OTS.
/external/doclava/res/assets/templates/assets/
Ddoclava-developer-docs.css29 #side-nav {
35 #side-nav.not-resizable {
59 #side-nav ul {
65 #side-nav ul ul {
70 #side-nav li {
77 #side-nav li h2 {
84 #side-nav li a {
90 #side-nav li a span+span {
94 #side-nav li a:hover {
98 #side-nav li a+a {
[all …]
/external/chromium_org/v8/test/webkit/fast/js/
Dmodify-non-references-expected.txt30 …at is not a reference.. Threw exception ReferenceError: Invalid left-hand side expression in postf…
31 …at is not a reference.. Threw exception ReferenceError: Invalid left-hand side expression in postf…
32 …at is not a reference.. Threw exception ReferenceError: Invalid left-hand side expression in prefi…
33 …at is not a reference.. Threw exception ReferenceError: Invalid left-hand side expression in prefi…
34 …d throw ReferenceError: Left side of assignment is not a reference.. Threw exception ReferenceErro…
35 …d throw ReferenceError: Left side of assignment is not a reference.. Threw exception ReferenceErro…
/external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
DFastOctnode.java53 public void setSide(int side){ in setSide() argument
55 offset |= (side << 29); in setSide()
90 private static void findChildBound(BoundingBox bbox, int side){ in findChildBound() argument
92 bbox.getCenter().set(bbox.getCenter().x + extent * Octnode.extentMult[side].x, in findChildBound()
93 bbox.getCenter().y + extent * Octnode.extentMult[side].y, in findChildBound()
94 bbox.getCenter().z + extent * Octnode.extentMult[side].z); in findChildBound()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderBoxModelObject.cpp1439 static inline BorderEdgeFlag edgeFlagForSide(BoxSide side) in edgeFlagForSide() argument
1441 return static_cast<BorderEdgeFlag>(1 << side); in edgeFlagForSide()
1444 static inline bool includesEdge(BorderEdgeFlags flags, BoxSide side) in includesEdge() argument
1446 return flags & edgeFlagForSide(side); in includesEdge()
1484 static inline bool borderStyleHasUnmatchedColorsAtCorner(EBorderStyle style, BoxSide side, BoxSide … in borderStyleHasUnmatchedColorsAtCorner() argument
1491 BorderEdgeFlags flags = edgeFlagForSide(side) | edgeFlagForSide(adjacentSide); in borderStyleHasUnmatchedColorsAtCorner()
1497 static inline bool colorsMatchAtCorner(BoxSide side, BoxSide adjacentSide, const BorderEdge edges[]) in colorsMatchAtCorner() argument
1499 if (edges[side].shouldRender() != edges[adjacentSide].shouldRender()) in colorsMatchAtCorner()
1502 if (!edgesShareColor(edges[side], edges[adjacentSide])) in colorsMatchAtCorner()
1505 return !borderStyleHasUnmatchedColorsAtCorner(edges[side].style, side, adjacentSide); in colorsMatchAtCorner()
[all …]
DRenderGrid.cpp503 size_t RenderGrid::explicitGridSizeForSide(GridPositionSide side) const in explicitGridSizeForSide()
505 …return (side == ColumnStartSide || side == ColumnEndSide) ? explicitGridColumnCount() : explicitGr… in explicitGridSizeForSide()
946 …d::resolveNamedGridLinePositionFromStyle(const GridPosition& position, GridPositionSide side) const in resolveNamedGridLinePositionFromStyle()
950 …const NamedGridLinesMap& gridLinesNames = (side == ColumnStartSide || side == ColumnEndSide) ? sty… in resolveNamedGridLinePositionFromStyle()
955 const size_t lastLine = explicitGridSizeForSide(side); in resolveNamedGridLinePositionFromStyle()
956 return GridPosition::adjustGridPositionForSide(lastLine, side); in resolveNamedGridLinePositionFromStyle()
964 return GridPosition::adjustGridPositionForSide(it->value[namedGridLineIndex], side); in resolveNamedGridLinePositionFromStyle()
967 size_t RenderGrid::resolveGridPositionFromStyle(const GridPosition& position, GridPositionSide side in resolveGridPositionFromStyle()
974 return resolveNamedGridLinePositionFromStyle(position, side); in resolveGridPositionFromStyle()
978 return GridPosition::adjustGridPositionForSide(position.integerPosition() - 1, side); in resolveGridPositionFromStyle()
[all …]
/external/chromium_org/third_party/icu/source/tools/genren/
DREADME15 - Another good way to check the file is a side by side diff. After the above 'make install-header':
17 diff --side-by-side urename.sort urename.old.sort | more
/external/eigen/Eigen/src/Core/products/
DSelfadjointMatrixMatrix_MKL.h57 char side='L', uplo='L'; \
89 …MKLPREFIX##symm(&side, &uplo, &m, &n, &alpha_, (const MKLTYPE*)a, &lda, (const MKLTYPE*)b, &ldb, &…
108 char side='L', uplo='L'; \
157 …MKLPREFIX##hemm(&side, &uplo, &m, &n, &alpha_, (const MKLTYPE*)a, &lda, (const MKLTYPE*)b, &ldb, &…
184 char side='R', uplo='L'; \
215 …MKLPREFIX##symm(&side, &uplo, &m, &n, &alpha_, (const MKLTYPE*)a, &lda, (const MKLTYPE*)b, &ldb, &…
234 char side='R', uplo='L'; \
282 …MKLPREFIX##hemm(&side, &uplo, &m, &n, &alpha_, (const MKLTYPE*)a, &lda, (const MKLTYPE*)b, &ldb, &…
DTriangularSolverMatrix_MKL.h57 char side = 'L', uplo, diag='N', transa; \
85 …MKLPREFIX##trsm(&side, &uplo, &transa, &diag, &m, &n, &alpha, (const MKLTYPE*)a, &lda, (MKLTYPE*)_…
112 char side = 'R', uplo, diag='N', transa; \
140 …MKLPREFIX##trsm(&side, &uplo, &transa, &diag, &m, &n, &alpha, (const MKLTYPE*)a, &lda, (MKLTYPE*)_…
/external/chromium_org/third_party/freetype/src/base/
Dftstroke.c877 FT_Int side ) in ft_stroker_arcto() argument
882 FT_StrokeBorder border = stroker->borders + side; in ft_stroker_arcto()
885 rotate = FT_SIDE_TO_ROTATE( side ); in ft_stroker_arcto()
905 FT_Int side ) in ft_stroker_cap() argument
916 error = ft_stroker_arcto( stroker, side ); in ft_stroker_cap()
922 FT_Angle rotate = FT_SIDE_TO_ROTATE( side ); in ft_stroker_cap()
924 FT_StrokeBorder border = stroker->borders + side; in ft_stroker_cap()
949 FT_Angle rotate = FT_SIDE_TO_ROTATE( side ); in ft_stroker_cap()
951 FT_StrokeBorder border = stroker->borders + side; in ft_stroker_cap()
979 FT_Int side, in ft_stroker_inside() argument
[all …]
/external/freetype/src/base/
Dftstroke.c877 FT_Int side ) in ft_stroker_arcto() argument
882 FT_StrokeBorder border = stroker->borders + side; in ft_stroker_arcto()
885 rotate = FT_SIDE_TO_ROTATE( side ); in ft_stroker_arcto()
905 FT_Int side ) in ft_stroker_cap() argument
916 error = ft_stroker_arcto( stroker, side ); in ft_stroker_cap()
922 FT_Angle rotate = FT_SIDE_TO_ROTATE( side ); in ft_stroker_cap()
924 FT_StrokeBorder border = stroker->borders + side; in ft_stroker_cap()
949 FT_Angle rotate = FT_SIDE_TO_ROTATE( side ); in ft_stroker_cap()
951 FT_StrokeBorder border = stroker->borders + side; in ft_stroker_cap()
979 FT_Int side, in ft_stroker_inside() argument
[all …]

12345678910>>...27