/kernel/linux/linux-5.10/drivers/gpio/ |
H A D | gpio-stp-xway.c | 82 u32 edge; /* rising or falling edge triggered shift register */ member 175 /* apply edge trigger settings for the shift register */ in xway_stp_hw_init() 177 chip->edge, XWAY_STP_CON0); in xway_stp_hw_init() 294 /* check which edge trigger we should use, default to a falling edge */ in xway_stp_probe() 296 chip->edge = XWAY_STP_FALLING; in xway_stp_probe()
|
/kernel/linux/linux-6.6/drivers/gpio/ |
H A D | gpio-stp-xway.c | 83 u32 edge; /* rising or falling edge triggered shift register */ member 176 /* apply edge trigger settings for the shift register */ in xway_stp_hw_init() 178 chip->edge, XWAY_STP_CON0); in xway_stp_hw_init() 295 /* check which edge trigger we should use, default to a falling edge */ in xway_stp_probe() 297 chip->edge = XWAY_STP_FALLING; in xway_stp_probe()
|
/third_party/ninja/src/ |
H A D | clean.cc | 77 void Cleaner::RemoveEdgeFiles(Edge* edge) { in RemoveEdgeFiles() argument 78 string depfile = edge->GetUnescapedDepfile(); in RemoveEdgeFiles() 82 string rspfile = edge->GetUnescapedRspfile(); in RemoveEdgeFiles() 138 // - If it isn't an output or input for any edge, it comes from a stale in CleanDead()
|
H A D | build_log.cc | 144 bool BuildLog::RecordCommand(Edge* edge, int start_time, int end_time,
in RecordCommand() argument 146 string command = edge->EvaluateCommand(true);
in RecordCommand() 148 for (vector<Node*>::iterator out = edge->outputs_.begin();
in RecordCommand() 149 out != edge->outputs_.end(); ++out) {
in RecordCommand()
|
H A D | dyndep_parser.cc | 107 // Parse one explicit output. We expect it to already have an edge. in ParseEdge() 125 Edge* edge = node->in_edge(); in ParseEdge() 127 dyndep_file_->insert(DyndepFile::value_type(edge, Dyndeps())); in ParseEdge()
|
H A D | dyndep.h | 27 /// Store dynamically-discovered dependency information for one edge. 36 /// Store data loaded from one dyndep file. Map from an edge 58 bool UpdateEdge(Edge* edge, Dyndeps const* dyndeps, std::string* err) const;
|
/third_party/node/deps/v8/src/compiler/ |
H A D | simplified-operator-reducer.cc | 251 for (Edge edge : checked_int32_add->use_edges()) { in Reduce() 252 if (!edge.from()->IsDead() && edge.from() != node) { in Reduce()
|
H A D | loop-analysis.cc | 239 // Entry or normal edge. Propagate all marks except loop_num. in PropagateBackward() 331 for (Edge edge : node->use_edges()) { in PropagateForward() 332 Node* use = edge.from(); in PropagateForward() 333 if (!IsBackedge(use, edge.index())) { in PropagateForward() 657 for (Edge edge : node->input_edges()) { in FindSmallInnermostLoopFromHeader() 658 Node* input = edge.to(); in FindSmallInnermostLoopFromHeader() 659 if (NodeProperties::IsControlEdge(edge) && visited->count(input) == 0 && in FindSmallInnermostLoopFromHeader()
|
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/detail/ |
H A D | func_common.hpp | 235 /// Returns 0.0 if x < edge, otherwise it returns 1.0 for each component of a genType. 240 GLM_FUNC_DECL genType step(genType edge, genType x); 242 /// Returns 0.0 if x < edge, otherwise it returns 1.0. 247 GLM_FUNC_DECL vecType<T, P> step(T edge, vecType<T, P> const & x); 249 /// Returns 0.0 if x < edge, otherwise it returns 1.0. 254 GLM_FUNC_DECL vecType<T, P> step(vecType<T, P> const & edge, vecType<T, P> const & x);
|
/kernel/linux/linux-6.6/sound/soc/atmel/ |
H A D | mchp-pdmc.c | 905 int edge; in mchp_pdmc_dt_init() local 923 &edge); in mchp_pdmc_dt_init() 931 if (edge != MCHP_PDMC_CLK_POSITIVE && in mchp_pdmc_dt_init() 932 edge != MCHP_PDMC_CLK_NEGATIVE) { in mchp_pdmc_dt_init() 934 "invalid edge in microchip,mic-pos array: %d", edge); in mchp_pdmc_dt_init() 937 if (mic_ch[ds][edge]) { in mchp_pdmc_dt_init() 939 "duplicated mic (DS %d, edge %d) in microchip,mic-pos array", in mchp_pdmc_dt_init() 940 ds, edge); in mchp_pdmc_dt_init() 943 mic_ch[ds][edge] in mchp_pdmc_dt_init() [all...] |
/kernel/linux/linux-5.10/drivers/pps/ |
H A D | pps.c | 220 if ((bind_args.edge & ~pps->info.mode) != 0) { in pps_cdev_ioctl() 222 bind_args.edge); in pps_cdev_ioctl() 228 (bind_args.edge & ~PPS_CAPTUREBOTH) != 0 || in pps_cdev_ioctl() 231 " parameters (%x)\n", bind_args.edge); in pps_cdev_ioctl()
|
/kernel/linux/linux-6.6/drivers/pps/ |
H A D | pps.c | 220 if ((bind_args.edge & ~pps->info.mode) != 0) { in pps_cdev_ioctl() 222 bind_args.edge); in pps_cdev_ioctl() 228 (bind_args.edge & ~PPS_CAPTUREBOTH) != 0 || in pps_cdev_ioctl() 231 " parameters (%x)\n", bind_args.edge); in pps_cdev_ioctl()
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_displace.c | 41 enum EdgeMode edge; member 56 { "edge", "set edge mode", OFFSET(edge), AV_OPT_TYPE_INT, {.i64=EDGE_SMEAR}, 0, EDGE_NB-1, FLAGS, "edge" }, 57 { "blank", "", 0, AV_OPT_TYPE_CONST, {.i64=EDGE_BLANK}, 0, 0, FLAGS, "edge" }, 58 { "smear", "", 0, AV_OPT_TYPE_CONST, {.i64=EDGE_SMEAR}, 0, 0, FLAGS, "edge" }, 59 { "wrap" , "", 0, AV_OPT_TYPE_CONST, {.i64=EDGE_WRAP}, 0, 0, FLAGS, "edge" }, 60 { "mirror" , "", 0, AV_OPT_TYPE_CONST, {.i64=EDGE_MIRROR}, 0, 0, FLAGS, "edge" }, 99 switch (s->edge) { in displace_planar() [all...] |
H A D | deshake.h | 63 int edge; ///< Edge fill method member
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/ |
H A D | cordz_info.cc | 63 // attribute 50% of the memory (memory / refcount = 2) to each incoming edge. 64 // Rep A has a refcount of 5, so we attribute each incoming edge 1 / 5th of the 241 for (CordRep* edge : tree->Edges()) { in AnalyzeBtree() 242 AnalyzeBtree(rep.Child(edge)); in AnalyzeBtree() 245 for (CordRep* edge : tree->Edges()) { in AnalyzeBtree() 246 CountLinearReps(rep.Child(edge), memory_usage_); in AnalyzeBtree()
|
H A D | cord_rep_test_util.h | 126 for (cord_internal::CordRep* edge : rep->btree()->Edges()) { in CordToString() 127 CordToString(edge, s); in CordToString()
|
/third_party/glfw/src/ |
H A D | wl_window.c | 197 _GLFWfallbackEdgeWayland* edge, in createFallbackEdge() 203 edge->surface = wl_compositor_create_surface(_glfw.wl.compositor); in createFallbackEdge() 204 wl_surface_set_user_data(edge->surface, window); in createFallbackEdge() 205 wl_proxy_set_tag((struct wl_proxy*) edge->surface, &_glfw.wl.tag); in createFallbackEdge() 206 edge->subsurface = wl_subcompositor_get_subsurface(_glfw.wl.subcompositor, in createFallbackEdge() 207 edge->surface, parent); in createFallbackEdge() 208 wl_subsurface_set_position(edge->subsurface, x, y); in createFallbackEdge() 209 edge->viewport = wp_viewporter_get_viewport(_glfw.wl.viewporter, in createFallbackEdge() 210 edge->surface); in createFallbackEdge() 211 wp_viewport_set_destination(edge in createFallbackEdge() 196 createFallbackEdge(_GLFWwindow* window, _GLFWfallbackEdgeWayland* edge, struct wl_surface* parent, struct wl_buffer* buffer, int x, int y, int width, int height) createFallbackEdge() argument 254 destroyFallbackEdge(_GLFWfallbackEdgeWayland* edge) destroyFallbackEdge() argument [all...] |
/kernel/linux/linux-6.6/scripts/ |
H A D | get_abi.pl | 577 foreach my $edge(split "/", $dir) { 578 $name .= "$edge/"; 579 if (!defined ${$file_ref}{$edge}) { 580 ${$file_ref}{$edge} = { }; 582 $file_ref = \%{$$file_ref{$edge}}; 599 foreach my $edge(split "/", $file) { 600 $file_ref = \%{$$file_ref{$edge}} || die "Missing node!";
|
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_schedule.c | 827 util_dynarray_foreach(&n->dag.edges, struct dag_edge, edge) { in dump_state() 828 nir_schedule_node *child = (nir_schedule_node *)edge->child; in dump_state() 952 util_dynarray_foreach(&n->dag.edges, struct dag_edge, edge) { in nir_schedule_mark_node_scheduled() 953 nir_schedule_node *child = (nir_schedule_node *)edge->child; in nir_schedule_mark_node_scheduled() 1054 util_dynarray_foreach(&n->dag.edges, struct dag_edge, edge) { in nir_schedule_dag_max_delay_cb() 1055 nir_schedule_node *child = (nir_schedule_node *)edge->child; in nir_schedule_dag_max_delay_cb()
|
/third_party/mesa3d/src/util/ |
H A D | dag.h | 37 /* User-defined data associated with the edge. */ 44 /* Array struct edge to the children. */ 57 void dag_remove_edge(struct dag *dag, struct dag_edge *edge);
|
/kernel/linux/linux-5.10/drivers/net/wireless/ath/ath5k/ |
H A D | eeprom.c | 1655 rep[j].edge = (val >> 8) & pmask; in ath5k_eeprom_read_ctl_info() 1657 rep[j + 1].edge = val & pmask; in ath5k_eeprom_read_ctl_info() 1680 rep[0].edge = (val >> 2) & pmask; in ath5k_eeprom_read_ctl_info() 1681 rep[1].edge = (val << 4) & pmask; in ath5k_eeprom_read_ctl_info() 1684 rep[1].edge |= (val >> 12) & 0xf; in ath5k_eeprom_read_ctl_info() 1685 rep[2].edge = (val >> 6) & pmask; in ath5k_eeprom_read_ctl_info() 1686 rep[3].edge = val & pmask; in ath5k_eeprom_read_ctl_info() 1689 rep[4].edge = (val >> 10) & pmask; in ath5k_eeprom_read_ctl_info() 1690 rep[5].edge = (val >> 4) & pmask; in ath5k_eeprom_read_ctl_info() 1691 rep[6].edge in ath5k_eeprom_read_ctl_info() [all...] |
/kernel/linux/linux-6.6/drivers/net/wireless/ath/ath5k/ |
H A D | eeprom.c | 1655 rep[j].edge = (val >> 8) & pmask; in ath5k_eeprom_read_ctl_info() 1657 rep[j + 1].edge = val & pmask; in ath5k_eeprom_read_ctl_info() 1680 rep[0].edge = (val >> 2) & pmask; in ath5k_eeprom_read_ctl_info() 1681 rep[1].edge = (val << 4) & pmask; in ath5k_eeprom_read_ctl_info() 1684 rep[1].edge |= (val >> 12) & 0xf; in ath5k_eeprom_read_ctl_info() 1685 rep[2].edge = (val >> 6) & pmask; in ath5k_eeprom_read_ctl_info() 1686 rep[3].edge = val & pmask; in ath5k_eeprom_read_ctl_info() 1689 rep[4].edge = (val >> 10) & pmask; in ath5k_eeprom_read_ctl_info() 1690 rep[5].edge = (val >> 4) & pmask; in ath5k_eeprom_read_ctl_info() 1691 rep[6].edge in ath5k_eeprom_read_ctl_info() [all...] |
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/table/ |
H A D | RangeKey.java | 61 * not be longer than the possible lengths and cannot end with an "any" edge (i.e. "x"). 65 "prefix cannot end with an 'any' edge: %s", prefix); in create() 131 public void visit(DfaNode source, DfaEdge edge, DfaNode target) { in visit() argument 135 path = path.extendByMask(edge.getDigitMask()); in visit() 154 // the "end" of an "any" path (e.g. we have possible lengths and the edge above us is not an
|
/third_party/skia/third_party/externals/freetype/src/autofit/ |
H A D | afhints.h | 86 * edges. An edge corresponds to a single position on the main 177 * Experience has shown that points not part of an edge need to be 228 /* edge hint flags */ 233 #define AF_EDGE_NEUTRAL ( 1U << 3 ) /* edge aligns to a neutral blue zone */ 266 FT_Byte flags; /* edge/segment flags for this segment */ 274 AF_Edge edge; /* the segment's parent edge */ member 275 AF_Segment edge_next; /* link to next segment in parent edge */ 282 AF_Point first; /* first point in edge segment */ 283 AF_Point last; /* last point in edge segmen [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | rv34dsp.h | 54 int beta, int beta2, int edge,
|