| /f-stack/app/redis-5.0.5/deps/jemalloc/ |
| H A D | .travis.yml | 7 … env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-bounds" 9 … env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-bounds" 11 … CC=clang CXX=clang++ COMPILER_FLAGS="" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-bounds" 13 …v: CC=gcc CXX=g++ COMPILER_FLAGS="-m32" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-bounds" 19 …CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="--enable-debug" EXTRA_CFLAGS="-Werror -Wno-array-bounds" 21 … CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="--enable-prof" EXTRA_CFLAGS="-Werror -Wno-array-bounds" 23 …XX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="--disable-stats" EXTRA_CFLAGS="-Werror -Wno-array-bounds" 33 … CC=clang CXX=clang++ COMPILER_FLAGS="" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-bounds" 35 …v: CC=gcc CXX=g++ COMPILER_FLAGS="-m32" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-bounds" 37 …CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="--enable-debug" EXTRA_CFLAGS="-Werror -Wno-array-bounds" [all …]
|
| /f-stack/app/redis-5.0.5/src/ |
| H A D | geohash_helper.c | 104 double *bounds) { in geohashBoundingBox() argument 105 if (!bounds) return 0; in geohashBoundingBox() 107 bounds[0] = longitude - rad_deg(radius_meters/EARTH_RADIUS_IN_METERS/cos(deg_rad(latitude))); in geohashBoundingBox() 109 bounds[1] = latitude - rad_deg(radius_meters/EARTH_RADIUS_IN_METERS); in geohashBoundingBox() 110 bounds[3] = latitude + rad_deg(radius_meters/EARTH_RADIUS_IN_METERS); in geohashBoundingBox() 123 double bounds[4]; in geohashGetAreasByRadius() local 126 geohashBoundingBox(longitude, latitude, radius_meters, bounds); in geohashGetAreasByRadius() 127 min_lon = bounds[0]; in geohashGetAreasByRadius() 128 min_lat = bounds[1]; in geohashGetAreasByRadius() 129 max_lon = bounds[2]; in geohashGetAreasByRadius() [all …]
|
| H A D | geohash_helper.h | 53 double *bounds);
|
| /f-stack/freebsd/contrib/zstd/lib/compress/ |
| H A D | zstd_compress.c | 306 return bounds; in ZSTD_cParam_getBounds() 311 return bounds; in ZSTD_cParam_getBounds() 316 return bounds; in ZSTD_cParam_getBounds() 321 return bounds; in ZSTD_cParam_getBounds() 326 return bounds; in ZSTD_cParam_getBounds() 331 return bounds; in ZSTD_cParam_getBounds() 336 return bounds; in ZSTD_cParam_getBounds() 341 return bounds; in ZSTD_cParam_getBounds() 483 if (ZSTD_isError(bounds.error)) return bounds.error; in ZSTD_cParam_clampBounds() 484 if (*value < bounds.lowerBound) *value = bounds.lowerBound; in ZSTD_cParam_clampBounds() [all …]
|
| H A D | zstd_compress_internal.h | 422 ZSTD_bounds const bounds = ZSTD_cParam_getBounds(cParam); in ZSTD_cParam_withinBounds() local 423 if (ZSTD_isError(bounds.error)) return 0; in ZSTD_cParam_withinBounds() 424 if (value < bounds.lowerBound) return 0; in ZSTD_cParam_withinBounds() 425 if (value > bounds.upperBound) return 0; in ZSTD_cParam_withinBounds()
|
| /f-stack/freebsd/contrib/ck/src/ |
| H A D | ck_hs.c | 557 CK_HS_WORD *bounds = NULL; in ck_hs_gc() local 572 bounds = hs->m->malloc(size); in ck_hs_gc() 573 if (bounds == NULL) in ck_hs_gc() 576 memset(bounds, 0, size); in ck_hs_gc() 616 if (bounds != NULL && n_probes > bounds[offset]) in ck_hs_gc() 617 bounds[offset] = n_probes; in ck_hs_gc() 629 if (bounds != NULL) { in ck_hs_gc() 631 CK_HS_STORE(&map->probe_bound[i], bounds[i]); in ck_hs_gc() 633 hs->m->free(bounds, size, false); in ck_hs_gc()
|
| H A D | ck_ht.c | 388 CK_HT_WORD *bounds = NULL; in ck_ht_gc() local 406 bounds = ht->m->malloc(size); in ck_ht_gc() 407 if (bounds == NULL) in ck_ht_gc() 410 memset(bounds, 0, size); in ck_ht_gc() 477 if (bounds != NULL && probes_wr > bounds[offset]) in ck_ht_gc() 478 bounds[offset] = probes_wr; in ck_ht_gc() 486 if (bounds != NULL) { in ck_ht_gc() 488 CK_HT_STORE(&map->probe_bound[i], bounds[i]); in ck_ht_gc() 490 ht->m->free(bounds, size, false); in ck_ht_gc()
|
| /f-stack/freebsd/contrib/zstd/lib/decompress/ |
| H A D | zstd_decompress.c | 1420 ZSTD_bounds bounds = { 0, 0, 0 }; in ZSTD_dParam_getBounds() local 1425 return bounds; in ZSTD_dParam_getBounds() 1427 bounds.lowerBound = (int)ZSTD_f_zstd1; in ZSTD_dParam_getBounds() 1430 return bounds; in ZSTD_dParam_getBounds() 1434 return bounds; in ZSTD_dParam_getBounds() 1438 return bounds; in ZSTD_dParam_getBounds() 1441 bounds.error = ERROR(parameter_unsupported); in ZSTD_dParam_getBounds() 1442 return bounds; in ZSTD_dParam_getBounds() 1451 if (ZSTD_isError(bounds.error)) return 0; in ZSTD_dParam_withinBounds() 1452 if (value < bounds.lowerBound) return 0; in ZSTD_dParam_withinBounds() [all …]
|
| /f-stack/app/nginx-1.16.1/src/core/ |
| H A D | ngx_conf_file.c | 1462 ngx_conf_num_bounds_t *bounds = post; in ngx_conf_check_num_bounds() local 1465 if (bounds->high == -1) { in ngx_conf_check_num_bounds() 1466 if (*np >= bounds->low) { in ngx_conf_check_num_bounds() 1472 bounds->low); in ngx_conf_check_num_bounds() 1477 if (*np >= bounds->low && *np <= bounds->high) { in ngx_conf_check_num_bounds() 1483 bounds->low, bounds->high); in ngx_conf_check_num_bounds()
|
| /f-stack/freebsd/contrib/openzfs/module/zstd/lib/ |
| H A D | zstd.c | 13361 return bounds; in ZSTD_cParam_getBounds() 13366 return bounds; in ZSTD_cParam_getBounds() 13371 return bounds; in ZSTD_cParam_getBounds() 13376 return bounds; in ZSTD_cParam_getBounds() 13381 return bounds; in ZSTD_cParam_getBounds() 13386 return bounds; in ZSTD_cParam_getBounds() 13391 return bounds; in ZSTD_cParam_getBounds() 13517 if (ZSTD_isError(bounds.error)) return bounds.error; in ZSTD_cParam_clampBounds() 13518 if (*value < bounds.lowerBound) *value = bounds.lowerBound; in ZSTD_cParam_clampBounds() 13519 if (*value > bounds.upperBound) *value = bounds.upperBound; in ZSTD_cParam_clampBounds() [all …]
|
| /f-stack/mk/ |
| H A D | kern.mk | 21 NO_WARRAY_BOUNDS= -Wno-array-bounds
|
| /f-stack/freebsd/contrib/openzfs/tests/zfs-tests/include/ |
| H A D | math.shlib | 124 # A simple function to get a random number between two bounds (inclusive)
|
| /f-stack/dpdk/config/ |
| H A D | meson.build | 217 warning_flags += '-Wno-zero-length-bounds'
|
| /f-stack/dpdk/doc/guides/nics/ |
| H A D | ice.rst | 235 A DCF (Device Config Function) PMD bounds to the device's trusted VF with ID 0,
|
| /f-stack/freebsd/contrib/v4l/ |
| H A D | videodev2.h | 638 struct v4l2_rect bounds; member
|
| /f-stack/freebsd/contrib/libsodium/ |
| H A D | ChangeLog | 49 dangerous/out-of-bounds/invalid parameters used to call abort(3).
|
| /f-stack/freebsd/contrib/zstd/ |
| H A D | CHANGELOG | 129 bug: Fix out of bounds read by @terrelln (#1590)
|
| /f-stack/freebsd/contrib/zlib/ |
| H A D | ChangeLog | 554 - Update ENOUGH and its usage to reflect discovered bounds
|
| /f-stack/freebsd/contrib/dev/acpica/ |
| H A D | changes.txt | 12108 AE_STRING_LIMIT on an out-of-bounds Index() operation. (Valery Podrezov,
|