代码搜索:Assignment

找到约 8,196 项符合「Assignment」的源代码

代码结果 8,196
www.eeworm.com/read/440906/1780470

c struct-cpy-1.c

/* powerpc64-linux gcc miscompiled this due to rs6000.c:expand_block_move not setting mem aliasing info correctly for the code implementing the structure assignment. */ struct termios { unsi
www.eeworm.com/read/438251/1826735

java coloraction.java

/** * Copyright (c) 2004-2006 Regents of the University of California. * See "license-prefuse.txt" for licensing terms. */ package prefuse.action.assignment; import java.util.logging.Logger;
www.eeworm.com/read/423889/2021483

c neighbor.c

/* *2006/08/16 WXL 2.0 */ /* V0.2 added PC-based binding 21/July/2006 */ /* Neighbor Table Support and Address assignment support */ #include "compiler.h" #include "l
www.eeworm.com/read/414034/2154668

i common.i

/* Directives common to all interfaces. */ /* Math operators */ %rename(__add__) operator+; %rename(__sub__) operator-; %rename(__mul__) operator*; %rename(operator_assignment) operator=; %rename(cla
www.eeworm.com/read/398576/2376307

c neighbor.c

/* *2006/08/16 WXL 2.0 */ /* V0.2 added PC-based binding 21/July/2006 */ /* Neighbor Table Support and Address assignment support */ #include "compiler.h" #include "l
www.eeworm.com/read/366702/2867168

c pmf1.c

// PR c++/14089 // { dg-do compile } // // C++ front end generated assignment between types that were not // compatible in any sense visible to the optimizers. struct pair { typedef void (pair::*
www.eeworm.com/read/366702/2876259

f90 simplify_argn_1.f90

! { dg-do run } ! Tests the fix for PR35780, in which the assignment for C was not ! scalarized in expr.c. ! ! Contributed by Dick Hendrickson ! MODULE MODS integer, par
www.eeworm.com/read/366702/2876690

f90 alloc_comp_assign_5.f90

! { dg-do run } ! { dg-options "-O2" } ! Tests the fix for PR29428, in which the assignment of ! a function result would result in the function being ! called twice, if it were not a result by referen
www.eeworm.com/read/366702/2878328

c struct-cpy-1.c

/* powerpc64-linux gcc miscompiled this due to rs6000.c:expand_block_move not setting mem aliasing info correctly for the code implementing the structure assignment. */ struct termios { unsi
www.eeworm.com/read/366702/2879495

c struct-non-lval-3.c

/* Bug c/17855, using assignment for non-lvalue. */ struct foo {char x, y, z[2];}; struct foo p, q; void bar(int baz) { (p = q).z[baz] = 1; }