/third_party/backends/backend/ |
H A D | sharp.c | 2065 /* edge emphasis */ in init_options() 3301 char *mode, *halftone, *gamma, *edge, *lightcolor, *adf_fsu; in sane_start() local 3439 edge = s->val[OPT_EDGE_EMPHASIS].s; in sane_start() 3547 if (strcmp (edge, EDGE_NONE) == 0) in sane_start() 3550 s->edge = 0; in sane_start() 3552 else if (strcmp (edge, EDGE_MIDDLE) == 0) in sane_start() 3555 s->edge = 1; in sane_start() 3557 else if (strcmp (edge, EDGE_STRONG) == 0) in sane_start() 3560 s->edge = 2; in sane_start() 3562 else if (strcmp (edge, EDGE_BLU in sane_start() [all...] |
/third_party/vk-gl-cts/framework/common/ |
H A D | tcuRasterizationVerifier.cpp | 1460 // image boundary, missing fragment could be over the image edge 2425 // a) too far from any edge 2432 const DVec2 edge = triangleSubPixelSpace[otherVtxNdx] - triangleSubPixelSpace[vtxNdx]; 2434 const double crossProduct = (edge.x() * v.y() - edge.y() * v.x()); 2436 // distance from edge: (edge x v) / |edge| 2437 // (edge x v) / |edge| > maxPixelDistanc [all...] |
/kernel/linux/linux-5.10/arch/sparc/kernel/ |
H A D | visemul.c | 79 /* 000000000 - Eight 8-bit edge boundary processing */ 82 /* 000000001 - Eight 8-bit edge boundary processing, no CC */ 85 /* 000000010 - Eight 8-bit edge boundary processing, little-endian */ 88 /* 000000011 - Eight 8-bit edge boundary processing, little-endian, no CC */ 91 /* 000000100 - Four 16-bit edge boundary processing */ 94 /* 000000101 - Four 16-bit edge boundary processing, no CC */ 97 /* 000000110 - Four 16-bit edge boundary processing, little-endian */ 100 /* 000000111 - Four 16-bit edge boundary processing, little-endian, no CC */ 103 /* 000001000 - Two 32-bit edge boundary processing */ 106 /* 000001001 - Two 32-bit edge boundar 294 static void edge(struct pt_regs *regs, unsigned int insn, unsigned int opf) edge() function [all...] |
/kernel/linux/linux-6.6/arch/sparc/kernel/ |
H A D | visemul.c | 79 /* 000000000 - Eight 8-bit edge boundary processing */ 82 /* 000000001 - Eight 8-bit edge boundary processing, no CC */ 85 /* 000000010 - Eight 8-bit edge boundary processing, little-endian */ 88 /* 000000011 - Eight 8-bit edge boundary processing, little-endian, no CC */ 91 /* 000000100 - Four 16-bit edge boundary processing */ 94 /* 000000101 - Four 16-bit edge boundary processing, no CC */ 97 /* 000000110 - Four 16-bit edge boundary processing, little-endian */ 100 /* 000000111 - Four 16-bit edge boundary processing, little-endian, no CC */ 103 /* 000001000 - Two 32-bit edge boundary processing */ 106 /* 000001001 - Two 32-bit edge boundar 294 static void edge(struct pt_regs *regs, unsigned int insn, unsigned int opf) edge() function [all...] |
/third_party/node/deps/v8/src/profiler/ |
H A D | heap-snapshot-generator.h | 139 V8_INLINE void add_child(HeapGraphEdge* edge); 675 void SerializeEdge(HeapGraphEdge* edge, bool first_edge);
|
/third_party/mesa3d/src/gallium/auxiliary/draw/ |
H A D | draw_pipe_clip.c | 404 * Note: at this point we can't just use the per-vertex edge flags. in do_clip_tri() 405 * We have to observe the edge flag bits set in header->flags which in do_clip_tri() 407 * an edge flags array which parallels the vertex array. in do_clip_tri() 408 * Later, in the 'unfilled' pipeline stage we'll draw the edge if both in do_clip_tri() 437 boolean *edge = &inEdges[i]; in do_clip_tri() local 485 /* Whether or not to set edge flag for the new vert depends in do_clip_tri() 490 /* we want to see an edge along the clip plane */ in do_clip_tri() 495 /* we don't want to see an edge along the frustum clip plane */ in do_clip_tri() 519 edge_prev = edge; in do_clip_tri()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/ |
H A D | cordz_info_statistics_test.cc | 152 for (CordRep*edge : rep->btree()->Edges()) { in FairShareImpl() 153 children += FairShareImpl(edge, ref); in FairShareImpl()
|
/third_party/node/deps/v8/src/compiler/ |
H A D | js-typed-lowering.cc | 2053 for (Edge edge : node->use_edges()) { in ReduceJSForInPrepare() 2054 Node* const user = edge.from(); in ReduceJSForInPrepare() 2055 if (NodeProperties::IsEffectEdge(edge)) { in ReduceJSForInPrepare() 2056 edge.UpdateTo(effect); in ReduceJSForInPrepare() 2058 } else if (NodeProperties::IsControlEdge(edge)) { in ReduceJSForInPrepare() 2059 edge.UpdateTo(control); in ReduceJSForInPrepare() 2062 DCHECK(NodeProperties::IsValueEdge(edge)); in ReduceJSForInPrepare()
|
H A D | effect-control-linearizer.cc | 440 for (Edge edge : node->use_edges()) { in RemoveRenameNode() 441 DCHECK(!edge.from()->IsDead()); in RemoveRenameNode() 442 if (NodeProperties::IsEffectEdge(edge)) { in RemoveRenameNode() 443 edge.UpdateTo(NodeProperties::GetEffectInput(node)); in RemoveRenameNode() 445 DCHECK(!NodeProperties::IsControlEdge(edge)); in RemoveRenameNode() 446 DCHECK(!NodeProperties::IsFrameStateEdge(edge)); in RemoveRenameNode() 447 edge.UpdateTo(node->InputAt(0)); in RemoveRenameNode() 531 for (Edge edge : use->use_edges()) { in TryCloneBranch() 535 if (edge.from()->op()->ControlInputCount() != 1) return; in TryCloneBranch() 536 Node* control = NodeProperties::GetControlInput(edge in TryCloneBranch() [all...] |
/third_party/python/Lib/test/ |
H A D | test_set.py | 2082 for edge in g.values(): 2083 self.assertEqual(len(edge), 3) # each vertex connects to three edges 2085 self.assertEqual(vertices1, vertices2) # edge vertices in original set 2105 othervertices = set(edge for edges in cuboctahedron.values() for edge in edges) 2106 self.assertEqual(vertices, othervertices) # edge vertices in original set 2116 edge = vertex # Cuboctahedron vertices are edges in Cube 2117 self.assertEqual(len(edge), 2) # Two cube vertices define an edge 2118 for cubevert in edge [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/rasterization/ |
H A D | vktRasterizationTests.cpp | 2906 const float edge = 2 * halfPixel + margin; 2907 const float left = -1.0f + edge; 2908 const float right = +1.0f - edge; 2909 const float up = -1.0f + edge; 2910 const float down = +1.0f - edge; 2927 const float edge = 4.0f * halfPixel + margin - eps; 2928 const float left = -1.0f + edge; 2929 const float right = +1.0f - edge; 2930 const float up = -1.0f + edge; 2931 const float down = +1.0f - edge; [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/rasterization/ |
H A D | vktRasterizationTests.cpp | 2654 const float edge = 2 * halfPixel + margin; 2655 const float left = -1.0f + edge; 2656 const float right = +1.0f - edge; 2657 const float up = -1.0f + edge; 2658 const float down = +1.0f - edge; 2675 const float edge = 4.0f * halfPixel + margin - eps; 2676 const float left = -1.0f + edge; 2677 const float right = +1.0f - edge; 2678 const float up = -1.0f + edge; 2679 const float down = +1.0f - edge; [all...] |
/kernel/linux/linux-5.10/drivers/gpio/ |
H A D | gpio-omap.c | 284 * We need the edge detection enabled for to allow the GPIO block in omap_set_gpio_trigger() 285 * to be woken from idle state. Set the appropriate edge detection in omap_set_gpio_trigger() 308 * Log the edge gpio and manually trigger the IRQ in omap_set_gpio_trigger() 321 * This only applies to chips that can't do both rising and falling edge 561 u32 enabled, isr, edge; in omap_gpio_irq_handler() local 582 * Clear edge sensitive interrupts before calling handler(s) in omap_gpio_irq_handler() 583 * so subsequent edge transitions are not missed while the in omap_gpio_irq_handler() 586 edge = isr & ~bank->level_mask; in omap_gpio_irq_handler() 587 if (edge) in omap_gpio_irq_handler() 588 omap_clear_gpio_irqbank(bank, edge); in omap_gpio_irq_handler() [all...] |
/kernel/linux/linux-6.6/drivers/gpio/ |
H A D | gpio-omap.c | 285 * We need the edge detection enabled for to allow the GPIO block in omap_set_gpio_trigger() 286 * to be woken from idle state. Set the appropriate edge detection in omap_set_gpio_trigger() 309 * Log the edge gpio and manually trigger the IRQ in omap_set_gpio_trigger() 322 * This only applies to chips that can't do both rising and falling edge 562 u32 enabled, isr, edge; in omap_gpio_irq_handler() local 583 * Clear edge sensitive interrupts before calling handler(s) in omap_gpio_irq_handler() 584 * so subsequent edge transitions are not missed while the in omap_gpio_irq_handler() 587 edge = isr & ~bank->level_mask; in omap_gpio_irq_handler() 588 if (edge) in omap_gpio_irq_handler() 589 omap_clear_gpio_irqbank(bank, edge); in omap_gpio_irq_handler() [all...] |
/kernel/linux/linux-5.10/drivers/hwmon/ |
H A D | dme1737.c | 367 int edge = (reg >> 1) & 0x03; in FAN_TYPE_FROM_REG() local 369 return (edge > 0) ? 1 << (edge - 1) : 0; in FAN_TYPE_FROM_REG() 374 int edge = (val == 4) ? 3 : val; in FAN_TYPE_TO_REG() local 376 return (reg & 0xf9) | (edge << 1); in FAN_TYPE_TO_REG()
|
/kernel/linux/linux-6.6/drivers/hwmon/ |
H A D | dme1737.c | 367 int edge = (reg >> 1) & 0x03; in FAN_TYPE_FROM_REG() local 369 return (edge > 0) ? 1 << (edge - 1) : 0; in FAN_TYPE_FROM_REG() 374 int edge = (val == 4) ? 3 : val; in FAN_TYPE_TO_REG() local 376 return (reg & 0xf9) | (edge << 1); in FAN_TYPE_TO_REG()
|
/kernel/linux/linux-5.10/arch/x86/events/zhaoxin/ |
H A D | core.c | 439 PMU_FORMAT_ATTR(edge, "config:18");
|
/kernel/linux/linux-5.10/drivers/net/wireless/ath/ath5k/ |
H A D | eeprom.h | 363 u16 edge; /* in half dBm */ member
|
/kernel/linux/linux-5.10/scripts/gcc-plugins/ |
H A D | latent_entropy_plugin.c | 420 edge e, last_bb_e; in perturb_latent_entropy()
|
/kernel/linux/linux-6.6/arch/x86/events/zhaoxin/ |
H A D | core.c | 439 PMU_FORMAT_ATTR(edge, "config:18");
|
/kernel/linux/linux-6.6/drivers/net/wireless/ath/ath5k/ |
H A D | eeprom.h | 363 u16 edge; /* in half dBm */ member
|
/kernel/linux/linux-6.6/scripts/gcc-plugins/ |
H A D | latent_entropy_plugin.c | 408 edge e, last_bb_e; in perturb_latent_entropy()
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_blurdetect.c | 123 // edge width is defined as the distance between surrounding maxima of the edge pixel 125 int edge, const uint8_t *src, int src_linesize) in edge_width() 183 // for 45 degree directions approximate edge width in pixel units: 0.7 ~= sqrt(2)/2 in edge_width() 230 // if not enough edge pixels in a block, consider it smooth in calculate_blur() 124 edge_width(BLRContext *blr, int i, int j, int8_t dir, int w, int h, int edge, const uint8_t *src, int src_linesize) edge_width() argument
|
/third_party/libinput/src/ |
H A D | evdev-mt-touchpad.h | 143 /* For edge scrolling, so we only care about right and bottom */ 255 uint32_t edge; member 384 * The buttons are split according to the edge settings.
|
/third_party/skia/include/sksl/ |
H A D | DSLCore.h | 469 * Returns 0 if x < edge or 1 if x >= edge. If x is a vector, operates componentwise. edge may be 472 DSLExpression Step(DSLExpression edge, DSLExpression x, PositionInfo pos = PositionInfo::Capture());
|