代码搜索:COMPOUND
找到约 908 项符合「COMPOUND」的源代码
代码结果 908
www.eeworm.com/read/298894/7927161
m get_compound_channel.m
function [compound_channel, ch_len] = get_compound_channel(TC,FS_CONT,channel_p,PLOT_DEBUG)
%channel_p.seed depends on RUN, we have to add some more randomness so that it
%is also unique inside this
www.eeworm.com/read/485265/6556945
m get_compound_channel.m
function [compound_channel, ch_len] = get_compound_channel(TC,FS_CONT,channel_p,PLOT_DEBUG)
%channel_p.seed depends on RUN, we have to add some more randomness so that it
%is also unique inside this
www.eeworm.com/read/479931/1326593
cgs compound-fr550.cgs
# frv testcase to generate compound exception
# mach: fr550
.include "testutils.inc"
start
.global align
align:
and_spr_immed -4081,tbr ; clear tbr.tt
set_gr_spr tbr,gr17
inc_gr_immed 0x200,g
www.eeworm.com/read/233448/4685736
c compound-lvalue-1.c
/* Test for deprecation of compound expressions as lvalues. */
/* Origin: Joseph Myers */
/* { dg-do compile } */
/* { dg-options "" } */
int x, y;
void
foo (void)
{
(x, y)
www.eeworm.com/read/443278/1750538
tcl compound_container_2.tcl
#!/bin/sh
# the next line restarts using wish\
exec wish "$0" "$@"
if {![info exists vTcl(sourcing)]} {
package require Tk
switch $tcl_platform(platform) {
windows {
o
www.eeworm.com/read/410728/2203249
cgs compound-fr550.cgs
# frv testcase to generate compound exception
# mach: fr550
.include "testutils.inc"
start
.global align
align:
and_spr_immed -4081,tbr ; clear tbr.tt
set_gr_spr tbr,gr17
inc_gr_immed 0x200,g
www.eeworm.com/read/379174/2676246
java compound2testcase.java
package test.wsdl.interop3.compound2;
import test.wsdl.interop3.compound2.Compound2Locator;
import test.wsdl.interop3.compound2.SoapInteropCompound2PortType;
import test.wsdl.interop3.compound2.xsd.
www.eeworm.com/read/379174/2676302
java compound1testcase.java
package test.wsdl.interop3.compound1;
import test.wsdl.interop3.compound1.xsd.Document;
import test.wsdl.interop3.compound1.xsd.Person;
import java.net.URL;
/*
www.eeworm.com/read/366702/2879443
c compound-literal-2.c
/* PR C/30265, invalid gimple was produced because we did not mark
the compound literal's decl early enough. */
int f(float *);
int g(float x)
{
return f(&(float){x}) + f(&x);
}
www.eeworm.com/read/366702/2879586
c compound-literal-1.c
/* ICE incrementing compound literal: bug 28418 from Volker Reichelt
. */
struct A { int i; };
void foo()
{
((struct A) { 0 }).i += 1;
}