HomeSort by: relevance | last modified time | path
    Searched refs:bounds (Results 1 - 25 of 277) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.dwarf2/
data-loc.c 29 int *bounds; member in struct:fat_pointer
43 table_1.bounds[1] = 2;
44 table_2.bounds[1] = 3;
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.dwarf2/
data-loc.c 29 int *bounds; member in struct:fat_pointer
43 table_1.bounds[1] = 2;
44 table_2.bounds[1] = 3;
  /src/external/bsd/ipf/
Makefile.inc 5 -Wno-self-assign -Wno-array-bounds \
  /src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv50/
nouveau_dispnv50_head917d.c 48 u32 bounds = 0; local
53 case 8: bounds |= 0x00000500; break;
54 case 4: bounds |= 0x00000300; break;
55 case 2: bounds |= 0x00000100; break;
56 case 1: bounds |= 0x00000000; break;
61 bounds |= 0x00020001;
66 evo_data(push, bounds);
nouveau_dispnv50_head907d.c 77 u32 bounds = 0; local
82 case 8: bounds |= 0x00000500; break;
83 case 4: bounds |= 0x00000300; break;
84 case 2: bounds |= 0x00000100; break;
89 bounds |= 0x00000001;
91 bounds |= 0x00000100;
96 evo_data(push, bounds);
105 u32 bounds = 0; local
110 case 8: bounds |= 0x00000500; break;
111 case 4: bounds |= 0x00000300; break
    [all...]
nouveau_dispnv50_head507d.c 63 u32 bounds = 0; local
68 case 4: bounds |= 0x00000300; break;
69 case 2: bounds |= 0x00000100; break;
74 bounds |= 0x00000001;
76 bounds |= 0x00000100;
81 evo_data(push, bounds);
90 u32 bounds = 0; local
95 case 8: bounds |= 0x00000500; break;
96 case 4: bounds |= 0x00000300; break;
97 case 2: bounds |= 0x00000100; break
    [all...]
  /src/sbin/routed/rtquery/
Makefile 14 CWARNFLAGS.clang+= -Wno-array-bounds
  /src/usr.bin/tftp/
Makefile 12 ${${ACTIVE_CC} == "gcc" && ${HAVE_GCC:U0} >= 8:? -Wno-array-bounds :}
  /src/external/mit/xorg/server/drivers/xf86-video-xgi/
Makefile 28 # clear how to fix this, so just disable the -Warray-bounds warning to
31 COPTS.init.c= -Wno-array-bounds
32 COPTS.vb_setmode.c= -Wno-array-bounds
  /src/external/bsd/zstd/dist/build/single_file_libs/examples/
roundtrip.c 60 size_t bounds = ZSTD_compressBound(sizeof rawData); local
61 void* compBuf = malloc(bounds);
65 size_t compSize = ZSTD_compress(compBuf, bounds, rawData, sizeof rawData, ZSTD_maxCLevel());
  /src/external/apache2/llvm/dist/clang/utils/ABITest/
Enumeration.py 60 # Gallop to find bounds for line
91 raise ValueError("Invalid bounds")
93 raise ValueError("Invalid input (out of bounds)")
109 # bounds than using divmod.
176 bounds = [maxElement**i for i in range(1, maxSize+1)]
177 S,M = getNthPairVariableBounds(N, bounds)
190 def getNthPairVariableBounds(N, bounds):
191 """getNthPairVariableBounds(N, bounds) -> (x, y)
193 Given a finite list of bounds (which may be finite or aleph0),
194 return the N-th pair such that 0 <= x < len(bounds) and 0 <= y
    [all...]
  /src/sys/modules/dtrace/netbsd32_syscall/
Makefile 19 CPPFLAGS+= ${${ACTIVE_CC} == "gcc" && ${HAVE_GCC:U0} >= 10:? -Wno-error=array-bounds :}
  /src/sys/modules/dtrace/syscall/
Makefile 19 CPPFLAGS+= ${${ACTIVE_CC} == "gcc" && ${HAVE_GCC:U0} >= 10:? -Wno-error=array-bounds :}
  /src/external/bsd/mdocml/lib/libmandoc/
Makefile 42 COPTS.man_validate.c+=-Wno-error=array-bounds
  /src/external/bsd/ntp/bin/ntpdc/
Makefile 27 COPTS.ntpdc.c+= ${${ACTIVE_CC} == "gcc" && ${HAVE_GCC:U0} >= 10:? -Wno-array-bounds :}
  /src/usr.bin/msgs/
msgs.c 94 #define CMODE 0664 /* bounds file creation mode */
103 #define BOUNDS "bounds" /* message bounds file */
170 FILE *bounds; local
249 * determine current message bounds
251 snprintf(fname, sizeof (fname), "%s/%s", _PATH_MSGS, BOUNDS);
252 bounds = fopen(fname, "r");
254 if (bounds != NULL) {
255 if (fscanf(bounds, "%d %d\n", &firstmsg, &lastmsg) < 2
    [all...]
  /src/games/dab/
board.cc 111 // Check if out of bounds
112 if (!bounds(y, x))
135 if (bounds(y, x)) {
158 // Return if the coordinates are within bounds; we don't check for < 0,
160 int BOARD::bounds(size_t y, size_t x) const function in class:BOARD
board.h 63 int bounds(size_t y, size_t x) const; // True if in bounds
  /src/external/bsd/zstd/dist/lib/compress/
zstd_compress.c 428 ZSTD_bounds bounds = { 0, 0, 0 }; local
433 bounds.lowerBound = ZSTD_minCLevel();
434 bounds.upperBound = ZSTD_maxCLevel();
435 return bounds;
438 bounds.lowerBound = ZSTD_WINDOWLOG_MIN;
439 bounds.upperBound = ZSTD_WINDOWLOG_MAX;
440 return bounds;
443 bounds.lowerBound = ZSTD_HASHLOG_MIN;
444 bounds.upperBound = ZSTD_HASHLOG_MAX;
445 return bounds;
646 ZSTD_bounds const bounds = ZSTD_cParam_getBounds(cParam); local
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
m2-typeprint.c 189 if (type->bounds ()->high.const_val () == type->bounds ()->low.const_val ())
201 print_type_scalar (target, type->bounds ()->low.const_val (), stream);
203 print_type_scalar (target, type->bounds ()->high.const_val (), stream);
227 && type->bounds ()->high.is_constant ())
316 print_type_scalar (target, type->bounds ()->high.const_val (), stream);
318 print_type_scalar (target, type->bounds ()->low.const_val (), stream);
359 && previous_high + 1 != range->bounds ()->low.const_val ())
361 previous_high = range->bounds ()->high.const_val ();
417 l1 = type->field (i).type ()->bounds ()->low.const_val ()
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
m2-typeprint.c 189 if (type->bounds ()->high.const_val () == type->bounds ()->low.const_val ())
201 print_type_scalar (target, type->bounds ()->low.const_val (), stream);
203 print_type_scalar (target, type->bounds ()->high.const_val (), stream);
227 && type->bounds ()->high.is_constant ())
316 print_type_scalar (target, type->bounds ()->high.const_val (), stream);
318 print_type_scalar (target, type->bounds ()->low.const_val (), stream);
359 && previous_high + 1 != range->bounds ()->low.const_val ())
361 previous_high = range->bounds ()->high.const_val ();
417 l1 = type->field (i).type ()->bounds ()->low.const_val ()
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/analyzer/
sm-taint.cc 63 enum bounds enum in namespace:ana::__anon15220
103 bool get_taint (state_t s, tree type, enum bounds *out) const;
137 enum bounds has_bounds)
172 enum bounds m_has_bounds;
182 enum bounds has_bounds)
205 " in array lookup without bounds checking",
217 " in array lookup without upper-bounds checking",
232 " without bounds checking",
242 " in array lookup without upper-bounds checking",
255 enum bounds has_bounds
    [all...]
  /src/sys/arch/vax/boot/xxboot/
Makefile 44 COPTS.bootxx.c+= ${${ACTIVE_CC} == "gcc" && ${HAVE_GCC:U0} >= 9:? -Wno-error=array-bounds :}
  /src/sys/arch/vax/boot/xxboot_ustarfs/
Makefile 40 COPTS.bootxx.c+= ${${ACTIVE_CC} == "gcc" && ${HAVE_GCC:U0} >= 9:? -Wno-error=array-bounds :}
  /src/external/bsd/mdocml/bin/mandoc/
Makefile 48 COPTS.man_term.c+= -Wno-error=array-bounds

Completed in 46 milliseconds

1 2 3 4 5 6 7 8 91011>>