message stringlengths 6 474 | diff stringlengths 8 5.22k |
|---|---|
VERSION bump to version 2.0.262 | @@ -61,7 +61,7 @@ set (CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR})
# set version of the project
set(LIBYANG_MAJOR_VERSION 2)
set(LIBYANG_MINOR_VERSION 0)
-set(LIBYANG_MICRO_VERSION 261)
+set(LIBYANG_MICRO_VERSION 262)
set(LIBYANG_VERSION ${LIBYANG_MAJOR_VERSION}.${LIBYANG_MINOR_VERSION}.${LIBYANG_MICRO_VERSION}... |
interface: bump indigo-react 1.2.5 -> 1.2.15 | "@reach/menu-button": "^0.10.5",
"@reach/tabs": "^0.10.5",
"@tlon/indigo-light": "^1.0.3",
- "@tlon/indigo-react": "1.2.5",
+ "@tlon/indigo-react": "1.2.15",
"@tlon/sigil-js": "^1.4.2",
"aws-sdk": "^2.726.0",
"big-integer": "^1.6.48",
|
Simplify in compute_endpoints_and_ideal_weights | @@ -226,23 +226,20 @@ static void compute_endpoints_and_ideal_weights_2_components(
for (int i = 0; i < partition_count; i++)
{
- float2 egv = directions[i];
- if (egv.r + egv.g < 0.0f)
+ float2 dir = directions[i];
+ if (dir.r + dir.g < 0.0f)
{
- directions[i] = float2(0.0f) - egv;
- }
+ dir = float2(0.0f) - dir;
}
- ... |
BugID:19028262: Fix appname in AOS_BUILD_APP
Use app dir name as build app name. | @@ -20,25 +20,25 @@ endif
source "app/example/bluetooth/bleadv/Config.in"
if AOS_APP_BLEADV
config AOS_BUILD_APP
- default "bleadv"
+ default "bluetooth.bleadv"
endif
source "app/example/bluetooth/blemesh_tmall/Config.in"
if AOS_APP_BLEMESH_TMALL
config AOS_BUILD_APP
- default "blemesh_tmall"
+ default "bluetooth.bleme... |
Fix the background color of the PyPI view | @@ -87,7 +87,7 @@ import SafariServices
/// Add a module to `bundled`. I add it one by one because for some reason setting directly an array fails **sometimes**.
///
/// - Parameters:
- /// - module: The module to add.
+ /// - module_: The module to add.
@objc static func addBundledModule(_ module: String) {
bundled.ap... |
pbio/hbridge: set state for passive duty
Flip order of these two commands, or pbio_hbridge_set_duty_cycle_sys would overwrite the state. | @@ -100,8 +100,12 @@ pbio_error_t pbio_hbridge_set_duty_cycle_sys(pbio_hbridge_t *hbridge, int32_t du
}
pbio_error_t pbio_hbridge_set_duty_cycle_usr(pbio_hbridge_t *hbridge, int32_t duty_steps) {
+ pbio_error_t err = pbio_hbridge_set_duty_cycle_sys(hbridge, PBIO_DUTY_STEPS * duty_steps / PBIO_DUTY_USER_STEPS);
+ if (er... |
npu2: Fix NPU/PHY0/PHY1 stack order
As previously noted in the comments, this changed in POWER9 DD2. Add a
stanza reverting to the old order on DD1.
Acked-by: Alistair Popple
Cc: Frederic Barrat | @@ -1143,18 +1143,15 @@ static void assign_mmio_bars(uint64_t gcid, uint32_t scom, uint64_t reg[2], uint
uint32_t i;
struct npu2_bar *bar;
struct npu2_bar npu2_bars[] = {
- /*
- * NPU_REGS must be first in this list, at least on DD1.
- * On DD2, stack 0 will be used for NPU_REGS, stack 1/2 for NPU_PHY.
- */
+ /* NPU_RE... |
[core] fix config typo reading large int from str | @@ -237,7 +237,7 @@ int config_plugin_values_init_block(server * const srv, const array * const ca,
char *e;
long l = strtol(v, &e, 10);
if (e != v && !*e && l >= 0) {
- cpv->v.shrt = (unsigned int)l;
+ cpv->v.u = (unsigned int)l;
break;
}
}
|
MPLS-tunnel: show output to display the tunnel name correctly | @@ -878,7 +878,7 @@ format_mpls_tunnel (u8 * s, va_list * args)
mpls_tunnel_t *mt = va_arg (*args, mpls_tunnel_t *);
mpls_tunnel_attribute_t attr;
- s = format(s, "mpls_tunnel%d: sw_if_index:%d hw_if_index:%d",
+ s = format(s, "mpls-tunnel%d: sw_if_index:%d hw_if_index:%d",
mt - mpls_tunnel_pool,
mt->mt_sw_if_index,
mt... |
hatch: Define host battery full factor as 100%
BRANCH=none
TEST=EC console shows reasonable battery display pct
Commit-Ready: Philip Chen
Tested-by: Philip Chen | #define CONFIG_BATTERY_PRESENT_CUSTOM
#define CONFIG_BATTERY_REVIVE_DISCONNECT
#define CONFIG_BATTERY_SMART
+#undef CONFIG_BATT_HOST_FULL_FACTOR
+#define CONFIG_BATT_HOST_FULL_FACTOR 100
/* USB Type C and USB PD defines */
#define CONFIG_USB_POWER_DELIVERY
|
Relax upper bound of exceptions again | @@ -77,7 +77,7 @@ library
build-depends: base >= 4.7 && < 5
, bytestring >= 0.10.2 && < 0.11
, containers >= 0.5 && < 0.6
- , exceptions >= 0.8 && < 0.10
+ , exceptions >= 0.8 && < 0.11
, fail >= 4.9 && < 5
, mtl >= 2.2 && < 2.3
, text
|
py/builtinhelp: Update for Pycopy. | #if MICROPY_PY_BUILTINS_HELP
const char mp_help_default_text[] =
- "Welcome to MicroPython!\n"
+ "Welcome to Pycopy!\n"
"\n"
"For online docs please visit http://docs.micropython.org/\n"
"\n"
|
Copy libstdc++.so.* from /opt/gcc*/lib64 to greenplum install dir | @@ -117,6 +117,14 @@ function include_quicklz() {
popd
}
+function include_libstdcxx() {
+ pushd /opt/gcc-6*/lib64
+ if [ "${TARGET_OS}" == "centos" ] ; then
+ cp libstdc++.so.* ${GREENPLUM_INSTALL_DIR}/lib/.
+ fi
+ popd
+}
+
function export_gpdb() {
TARBALL="${GPDB_ARTIFACTS_DIR}/${GPDB_BIN_FILENAME}"
pushd ${GREENPLU... |
Prevent World from stealing focus while picking palette | @@ -23,6 +23,7 @@ class World extends Component {
};
this.worldDragging = false;
this.scrollRef = React.createRef();
+ this.worldRef = React.createRef();
this.scrollContentsRef = React.createRef();
this.dragDistance = { x:0, y:0 };
}
@@ -146,9 +147,11 @@ class World extends Component {
const { selectWorld } = this.prop... |
structural reorg | # Spack Source Install V 0.7-5 (DEV)
-Build and install from sources is possible with spack. Source build requires build dependencies. These dependencies are not yet provided with the spack configuration file. So if you are using spack to build aomp, you should install the correct OS dependencies before you spack build... |
oc_cred:fix logic around storing/encoding roleids | @@ -568,8 +568,10 @@ oc_sec_add_new_cred(size_t device, bool roles_resource, oc_tls_peer_t *client,
oc_tls_refresh_trust_anchors();
}
#if defined(OC_PKI) && defined(OC_CLIENT)
- if (!roles_resource && credusage == OC_CREDUSAGE_ROLE_CERT && role) {
- oc_sec_add_role_cred(role, authority);
+ if (!roles_resource && credus... |
opae-c: Fix issues identified in static analysis | @@ -184,22 +184,22 @@ fpga_result __FPGA_API__ fpgaGetErrorInfo(fpga_token token,
}
/* files and directories to ignore when looking for errors */
-const char *errors_exclude[] = {
+#define NUM_ERRORS_EXCLUDE 4
+const char *errors_exclude[NUM_ERRORS_EXCLUDE] = {
"revision",
"uevent",
"power",
"clear"
};
-#define NUM_ERR... |
fix typo and add python-pip, these new dependencies still need to be added to text for other linux distros. | @@ -13,7 +13,7 @@ Build and install from sources is possible. However, the source build for AOMP
#### Debian or Ubuntu Packages
```
- sudo apt-get install cmake g++-5 g++ pkg-config libpci-dev libnuma-dev libelf-dev libffi-dev git python libopenmpi-dev gawk mesa-common-dev flex texinfo libbison-dev bison flex libbablet... |
Remove newline from log message | @@ -376,7 +376,7 @@ boot_swap_type(void)
table->bsw_image_ok_slot0 == state_slot0.image_ok) &&
(table->bsw_image_ok_slot1 == 0 ||
table->bsw_image_ok_slot1 == state_slot1.image_ok)) {
- BOOT_LOG_INF("Swap type: %s\n",
+ BOOT_LOG_INF("Swap type: %s",
table->bsw_swap_type == BOOT_SWAP_TYPE_NONE ? "none" :
table->bsw_swap... |
stream rx.last_offset is unreliable for flow control | @@ -1941,11 +1941,8 @@ static uint64_t conn_initial_stream_rx_offset(ngtcp2_conn *conn,
*/
static int conn_should_send_max_stream_data(ngtcp2_conn *conn,
ngtcp2_strm *strm) {
-
return conn_initial_stream_rx_offset(conn, strm->stream_id) / 2 <
- (strm->rx.unsent_max_offset - strm->rx.max_offset) ||
- 2 * conn->rx.bw.val... |
add features print | @@ -44,6 +44,17 @@ local menu =
-- copyright
, copyright = "Copyright (C) 2015-2016 Ruki Wang, ${underline}tboox.org${clear}, ${underline}xmake.io${clear}\nCopyright (C) 2005-2015 Mike Pall, ${underline}luajit.org${clear}"
+ -- features
+, features = (function()
+ local str = ""
+ for _, val in ipairs(os.features()) do... |
Fix: Incorrect return of vertex id with lp based colouring | @@ -1848,15 +1848,16 @@ void cut_from_predecessor(int scc_id, PlutoProg* prog)
int get_next_min_vertex_scc_cluster(int scc_id, PlutoProg *prog,
int num_discarded, int* discarded_list)
{
- int i, max_dim, scc_offset;
+ int i, v, max_dim, scc_offset;
Scc *sccs;
sccs = prog->ddg->sccs;
max_dim = sccs[scc_id].max_dim;
scc_... |
ford-fusion: check for cycles | |%
++ ford
=> |%
+ +$ build
+ $% [%file =path]
+ [%mark =mark]
+ [%cast =mars]
+ [%vale =path]
+ ==
+$ state
$: baked=(map path cage)
cache=ford-cache
stack=(list (set path))
+ cycle=(set build)
==
--
|= $: =ankh
~| %error-validating-path^path
?^ cage=(~(get by baked.nub) path)
[cage nub]
+ ?: (~(has in cycle.nub) vale... |
Fix RtlGetFullPathName_UEx type | @@ -3429,7 +3429,7 @@ RtlGetFullPathName_UEx(
_In_ ULONG BufferLength,
_Out_writes_bytes_(BufferLength) PWSTR Buffer,
_Out_opt_ PWSTR *FilePart,
- _Out_opt_ RTL_PATH_TYPE *InputPathType
+ _Out_opt_ ULONG *BytesRequired
);
#endif
|
Fix incorrect check for DTLS
Missing wildcards meant that some servers were not identified as DTLS,
which lead to port checking on TCP rather than UDP, and thus mistakenly
cancelling tests as the server had not come up. | @@ -753,7 +753,7 @@ wait_client_done() {
# check if the given command uses dtls and sets global variable DTLS
detect_dtls() {
case "$1" in
- *dtls=1*|-dtls|-u) DTLS=1;;
+ *dtls=1*|*-dtls*|*-u*) DTLS=1;;
*) DTLS=0;;
esac
}
|
checks HTTP response code when fetching pill | @@ -1619,6 +1619,7 @@ _boot_home(c3_c *dir_c, c3_c *pil_c, c3_c *url_c, c3_c *arv_c)
CURLcode result;
FILE *file;
c3_c pil_c[2048];
+ long cod_l;
/* use arvo git hash and branch for pill url unless overridden */
if ( NULL == url_c ) {
@@ -1639,14 +1640,21 @@ _boot_home(c3_c *dir_c, c3_c *pil_c, c3_c *url_c, c3_c *arv_c... |
Expose extra properties in ImGuiListClipper | @@ -1797,7 +1797,9 @@ namespace sol_ImGui
luaGlobals.new_usertype<ImGuiListClipper>("ImGuiListClipper", sol::constructors<ImGuiListClipper()>(),
"Begin" , &ImGuiListClipper::Begin,
- "Step" , &ImGuiListClipper::Step
+ "Step" , &ImGuiListClipper::Step,
+ "DisplayStart" , &ImGuiListClipper::DisplayStart,
+ "DisplayEnd" ,... |
extmod/vfs: Use u_rom_obj properly in argument structures. | @@ -155,8 +155,8 @@ mp_import_stat_t mp_vfs_import_stat(const char *path) {
mp_obj_t mp_vfs_mount(size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) {
enum { ARG_readonly, ARG_mkfs };
static const mp_arg_t allowed_args[] = {
- { MP_QSTR_readonly, MP_ARG_KW_ONLY | MP_ARG_OBJ, {.u_obj = mp_const_false} },
- { MP... |
socket_ioctl(): add support for FIONBIO
This is needed by nginx (see issue | @@ -614,6 +614,16 @@ static sysreturn socket_ioctl(sock s, unsigned long request, vlist ap)
sizeof(ip4_addr_t));
return 0;
}
+ case FIONBIO: {
+ int opt = varg(ap, int);
+ if (opt) {
+ s->f.flags |= SOCK_NONBLOCK;
+ }
+ else {
+ s->f.flags &= ~SOCK_NONBLOCK;
+ }
+ return 0;
+ }
default:
return -ENOSYS;
}
|
sha/asm/keccak1600-x86_64.pl: make it work on Windows. | @@ -81,7 +81,7 @@ my @rhotates = ([ 0, 1, 62, 28, 27 ],
$code.=<<___;
.text
-.type __KeccakF1600,\@function
+.type __KeccakF1600,\@abi-omnipotent
.align 32
__KeccakF1600:
mov $A[4][0](%rdi),@C[0]
@@ -345,7 +345,7 @@ $code.=<<___;
.size __KeccakF1600,.-__KeccakF1600
.globl KeccakF1600
-.type KeccakF1600,\@function
+.typ... |
EB can be transmitted to help other motes for synchronizing. | @@ -373,28 +373,6 @@ owerror_t sixtop_send(OpenQueueEntry_t *msg) {
return E_FAIL;
}
- if (
- idmanager_getIsDAGroot() == TRUE ||
- (
- idmanager_getIsDAGroot() == FALSE &&
- icmpv6rpl_getPreferredParentEui64(&addressToWrite) &&
- packetfunctions_sameAddress(&addressToWrite, &msg->l2_nextORpreviousHop)== FALSE
- )
- ) ... |
web-ui: show icon for visibility change | @@ -254,7 +254,7 @@ export default class SettingsDialog extends Component {
<MenuItem key={lvl} value={lvl} primaryText={lvl} />
)}
</SelectField>
- <SavedIcon saved={this.getSaved('check/type')} style={{ paddingBottom: 16 }} />
+ <SavedIcon saved={this.getSaved('visibility')} style={{ paddingBottom: 16 }} />
</div>
</... |
Build: Attempt to fix borked env in Travis | @@ -58,8 +58,11 @@ matrix:
- nasm
- uuid-dev
- clang-8
+ - llvm-8-dev
script:
+ - export CC=/usr/lib/llvm-8/bin/clang
+ - export CXX=/usr/lib/llvm-8/bin/clang++
- export PYTHON_COMMAND=python3 # Something is broken in Travis CI environment, it asks for python3.7.
- export PATH="/usr/lib/llvm-8/bin:$PATH" # Default comp... |
Update sensor to support H7. | @@ -145,7 +145,11 @@ static int dma_config()
{
// DMA Stream configuration
DMAHandle.Instance = DMA2_Stream1; /* Select the DMA instance */
+ #if defined(MCU_SERIES_H7)
+ DMAHandle.Init.Request = DMA_REQUEST_DCMI; /* DMA Channel */
+ #else
DMAHandle.Init.Channel = DMA_CHANNEL_1; /* DMA Channel */
+ #endif
DMAHandle.Ini... |
Monero double transfer RPC failure response handling | @@ -171,53 +171,11 @@ namespace MiningCore.Blockchain.Monero
var transferSplitResponse = await walletDaemon.ExecuteCmdSingleAsync<TransferSplitResponse>(MWC.TransferSplit, request);
- // gracefully handle error -4 (transaction would be too large. try /transfer_split)
- if (transferResponse.Error?.Code != -4)
- {
Handle... |
Fix pipeline creating the wrong render pass; | @@ -1257,7 +1257,7 @@ bool gpu_pipeline_init_graphics(gpu_pipeline* pipeline, gpu_pipeline_info* info)
.samples = info->multisample.count,
.resolve = resolve,
.depth.format = convertFormat(info->depth.format, LINEAR),
- .depth.layout = VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL,
+ .depth.layout = info->depth.form... |
Start PMTUD just for the current path after path validation | @@ -5919,13 +5919,6 @@ static int conn_recv_path_response(ngtcp2_conn *conn, ngtcp2_path_response *fr,
if (ngtcp2_path_eq(&pv->dcid.ps.path, &conn->dcid.current.ps.path)) {
conn->dcid.current.flags |= NGTCP2_DCID_FLAG_PATH_VALIDATED;
- }
-
- rv = conn_call_path_validation(conn, pv,
- NGTCP2_PATH_VALIDATION_RESULT_SUCCE... |
wpa_supplicant: Fix WPS connection issue after WPS done
esp_wifi_disconnect is needed to clear the wifi state and enable
station to connect to new SSID. Add changes to call it after
WPS is done. | @@ -1910,8 +1910,8 @@ int esp_wifi_wps_disable(void)
wpa_printf(MSG_ERROR, "wps disable: failed to disable wps, ret=%d", ret);
}
- /* Only disconnect in case of WPS pending */
- if (wps_status == WPS_STATUS_PENDING) {
+ /* Only disconnect in case of WPS pending/done */
+ if ((wps_status == WPS_STATUS_PENDING) || (wps_s... |
ya tool tvmknife: 1.1.0
Note: mandatory check (NEED_CHECK) was skipped | },
"tvmknife": {
"formula": {
- "sandbox_id": [426691166],
+ "sandbox_id": [440269656],
"match": "tvmknife"
},
"executable": {
|
xpath BUGFIX tree dfs does not set elem to NULL when finished | @@ -1287,6 +1287,7 @@ get_node_pos(const struct lyd_node *node, enum lyxp_node_type node_type, const s
{
const struct lyd_node *elem = NULL, *top_sibling;
uint32_t pos = 1;
+ ly_bool found = 0;
assert(prev && prev_pos && !root->prev->next);
@@ -1297,11 +1298,11 @@ get_node_pos(const struct lyd_node *node, enum lyxp_nod... |
not a nested function | #include "fltools.h"
-
-
-void zsort(int N, complex float tmp[N])
-{
- NESTED(int, compare, (const void* _a, const void* _b))
+static int compare(const void* _a, const void* _b)
{
const complex float* a = _a;
const complex float* b = _b;
return copysignf(1., (cabsf(*a) - cabsf(*b)));
- };
+}
+
+void zsort(int N, comple... |
Fix another spelling mistake | @@ -132,7 +132,7 @@ unsigned char* crypt_decrypt_hex(char* ciphertext_hex, unsigned long cipher_len,
} else {
oidc_errno = OIDC_EPASS; // only errors possible are OIDC_ECRPM and
// OIDC_EPASS; if 18 and 23 deliver different
- // errors, EPASS is "more successfull"
+ // errors, EPASS is "more successful"
}
return NULL;
... |
vppinfra: allow handoff to main thread
Type: improvement | @@ -1773,10 +1773,9 @@ vlib_main_or_worker_loop (vlib_main_t * vm, int is_main)
}
if (!is_main)
- {
vlib_worker_thread_barrier_check ();
- if (PREDICT_FALSE (vm->check_frame_queues +
- frame_queue_check_counter))
+
+ if (PREDICT_FALSE (vm->check_frame_queues + frame_queue_check_counter))
{
u32 processed = 0;
@@ -1795,7... |
[elm] Fixed elm device unmount error when mounting multiple elm devices. | @@ -182,6 +182,7 @@ int dfs_elm_unmount(struct dfs_filesystem *fs)
FATFS *fat;
FRESULT result;
int index;
+ char logic_nbr[2] = {'0',':'};
fat = (FATFS *)fs->data;
@@ -192,7 +193,8 @@ int dfs_elm_unmount(struct dfs_filesystem *fs)
if (index == -1) /* not found */
return -ENOENT;
- result = f_mount(RT_NULL, "", (BYTE)in... |
armv8: add proc_mgmt to menu lst | @@ -14,6 +14,7 @@ module /armv8/sbin/monitor
# Special boot time domains spawned by monitor
module /armv8/sbin/ramfsd boot
module /armv8/sbin/skb boot
+modulenounzip /armv8/sbin/proc_mgmt boot
module /armv8/sbin/kaluga boot
#module /armv8/sbin/spawnd boot
module /armv8/sbin/startd boot
|
rtl8721csm/download: Remove checking executable file when erasing partition
It is unnecessary to check the file for partition when erasing partition. | @@ -346,14 +346,12 @@ erase()
rtl8721csm_dwld_help
break
fi
- exe_name=$(get_executable_name ${parts[$partidx]})
- [ "No Binary Match" = "${exe_name}" ] && continue
echo ""
echo "=========================="
echo "Erasing ${parts[$partidx]} partition"
echo "=========================="
- ./amebad_image_tool "erase" $TTYD... |
vrrp: fix feature declaration for v6 accept-mode
Type: fix
The v6 accept mode input feature was being declared with
the node added to ip4-multicast instead of ip6-multicast. Add to
the correct arc. | @@ -1071,7 +1071,7 @@ VLIB_REGISTER_NODE (vrrp6_accept_owner_input_node) =
VNET_FEATURE_INIT (vrrp6_accept_owner_mc, static) =
{
- .arc_name = "ip4-multicast",
+ .arc_name = "ip6-multicast",
.node_name = "vrrp6-accept-owner-input",
.runs_before = VNET_FEATURES ("ip6-mfib-forward-lookup"),
};
|
bump version to 1.6.4 for further development | @@ -8,7 +8,7 @@ terms of the MIT license. A copy of the license can be found in the file
#ifndef MIMALLOC_H
#define MIMALLOC_H
-#define MI_MALLOC_VERSION 163 // major + 2 digits minor
+#define MI_MALLOC_VERSION 164 // major + 2 digits minor
// ------------------------------------------------------
// Compiler specific ... |
config.h: clarify CONFIG_INTERNAL_STORAGE semantics
The semantics in the EC code base are that CONFIG_INTERNAL_STORAGE
implies eXecute-In-Place semantics (XIP). Add a comment to make that
abundantly clear.
BRANCH=none
TEST=none | /*
* EC code can reside on internal or external storage. Only one of these
- * CONFIGs should be defined.
+ * CONFIGs should be defined. CONFIG_INTERNAL_STORAGE implies XIP
+ * (eXecute-In-Place) semantics. i.e. code is being fetched directly from
+ * storage media.
*/
#undef CONFIG_EXTERNAL_STORAGE
#undef CONFIG_INTER... |
LimeUtil: use LMS7_Device::Program() to flash GW/FW (resolves | #include <fstream>
#include "Logger.h"
#include "LMS64CProtocol.h"
+#include "lms7_device.h"
+#include "device_constants.h"
using namespace lime;
@@ -217,7 +219,7 @@ static int programGateware(const std::string &argStr)
return EXIT_FAILURE;
}
std::cout << "Connected to [" << handles[0].ToString() << "]" << std::endl;
-... |
readme: mention the quic tracer in the introduction | # h2olog
[BPF](https://www.kernel.org/doc/html/latest/bpf/index.html) ([kernel doc](https://www.kernel.org/doc/Documentation/networking/filter.txt)) backed request logging client for the [H2O](https://github.com/h2o/h2o) server.
+h2olog is also capable of logging [QUIC](https://en.wikipedia.org/wiki/QUIC) events for [t... |
mss_clamp: coverity test fix
Silence the coverity test with setting the interface index
in a variable before the boundary check.
Type: fix | @@ -35,12 +35,15 @@ vl_api_mss_clamp_enable_disable_t_handler (
mssc_main_t *cm = &mssc_main;
vl_api_mss_clamp_enable_disable_reply_t *rmp;
int rv;
+ u32 sw_if_index;
+
+ sw_if_index = ntohl (mp->sw_if_index);
VALIDATE_SW_IF_INDEX (mp);
- rv = mssc_enable_disable (ntohl (mp->sw_if_index), mp->ipv4_direction,
- mp->ipv6... |
Use data_mine_strategy for fixing envSimpilfy data_mine_strategy interface | @@ -53,14 +53,15 @@ def execute(
:return: Execution object
"""
test_tool_bin = _get_test_tool_bin()
+ data_mine_strategy = data_mine_strategy or default_mine_strategy
if not wait:
raise NotImplementedError()
- env = _get_fixed_env(env)
+ env = _get_fixed_env(env, data_mine_strategy)
orig_command = command
- command, to... |
[catboost] Revert r5067900
Note: mandatory check (NEED_CHECK) was skipped | -#include "cat_feature_options.h"
#include "loss_description.h"
+#include "cat_feature_options.h"
#include "binarization_options.h"
#include "plain_options_helper.h"
@@ -294,7 +294,6 @@ void NCatboostOptions::PlainJsonToOptions(
CopyOption(plainOptions, "bagging_temperature", &bootstrapOptions, &seenKeys);
CopyOption(p... |
Fix clobber list for RISC-V. | @@ -334,7 +334,7 @@ void yield(void) {
"ecall\n"
:
: "r" (a0), "r" (wait_field)
- : "memory", "a0", "a1", "a2", "a3", "a4", "a5", "a6", "a7",
+ : "memory", "a2", "a3", "a4", "a5", "a6", "a7",
"t0", "t1", "t2", "t3", "t4", "t5", "t6", "ra"
);
@@ -354,7 +354,7 @@ int yield_no_wait(void) {
"ecall\n"
:
: "r" (a0), "r" (a1)... |
improve left/right animation | @@ -4424,44 +4424,58 @@ moveleft(const Arg *arg) {
void
animleft(const Arg *arg) {
- if (selmon->pertag->curtag == 1)
+ if (selmon->pertag->curtag == 1 || selmon->pertag->curtag == 0)
return;
+
Client *c;
+ Client *tempc;
+ int tmpcounter = 0;
+ // windows like behaviour in floating layout
if (selmon->sel && NULL == se... |
Add a compile condition for dcd | #include "tusb_option.h"
-#if TU_CHECK_MCU(OPT_MCU_MSP432E4, OPT_MCU_TM4C123, OPT_MCU_TM4C129)
+#if TUSB_OPT_DEVICE_ENABLED && \
+ TU_CHECK_MCU(OPT_MCU_MSP432E4, OPT_MCU_TM4C123, OPT_MCU_TM4C129)
#if __GNUC__ > 8 && defined(__ARM_FEATURE_UNALIGNED)
/* GCC warns that an address may be unaligned, even though
|
update ya tool arc
push only current branch if 'arc push' are called without args | },
"arc": {
"formula": {
- "sandbox_id": [303737031],
+ "sandbox_id": [305716850],
"match": "arc"
},
"executable": {
|
Jenkins: Set build ID for Coveralls | @@ -914,6 +914,7 @@ kill `pidof dbus-daemon`
}
if(updateCoveralls) {
withCredentials([string(credentialsId: 'coveralls-repo-token', variable: 'REPO_TOKEN')]) {
+ withEnv(["TRAVIS_JOB_ID=$BUILD_NUMBER"]) {
sh("""\
coveralls -b '${buildDir}' \
-t $REPO_TOKEN \
@@ -922,6 +923,7 @@ coveralls -b '${buildDir}' \
""")
}
}
+ }... |
Add version printout for PGI/NVIDIA compiler | @@ -59,6 +59,9 @@ endif
@$(CC) --version > /dev/null 2>&1;\
if [ $$? -eq 0 ]; then \
cverinfo=`$(CC) --version | sed -n '1p'`; \
+ if [ -z "$${cverinfo}" ]; then \
+ cverinfo=`$(CC) --version | sed -n '2p'`; \
+ fi; \
echo " C compiler ... $(C_COMPILER) (cmd & version : $${cverinfo})";\
else \
echo " C compiler ... $(C... |
Update system-config-change-xxx (Issue | @@ -3885,6 +3885,13 @@ ipp_set_system_attributes(
}
}
+ /*
+ * Update config change time and count...
+ */
+
+ SystemConfigChangeTime = time(NULL);
+ SystemConfigChanges ++;
+
serverRespondIPP(client, IPP_STATUS_OK, NULL);
unlock_system:
|
Fix Linux/Avahi build error. | @@ -2673,7 +2673,7 @@ register_geo(server_printer_t *printer) /* I - Printer */
DNSServiceAddRecord(printer->ipp_ref, &printer->geo_ref, 0, kDNSServiceType_LOC, sizeof(loc), loc, 0);
#elif defined(HAVE_AVAHI)
- avahi_entry_group_add_record(printer->ipp_ref, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, 0, printer->dns_sd_name, ... |
Fixes EN_setlinkvalue bug | @@ -3890,7 +3890,7 @@ int DLLEXPORT EN_setlinkvalue(EN_Project p, int index, int property, double valu
if (Link[index].Type == PUMP)
{
patIndex = ROUND(value);
- if (patIndex <= 0 || patIndex > net->Npats) return 205;
+ if (patIndex < 0 || patIndex > net->Npats) return 205;
pumpIndex = findpump(&p->network, index);
net... |
no op when message is NULL | @@ -68,6 +68,8 @@ sixel_helper_set_additional_message(
{
size_t len;
+ if (message == 0)
+ return;
len = strlen(message);
memcpy(g_buffer, message, len < sizeof(g_buffer) ? len: sizeof(g_buffer) - 1);
g_buffer[sizeof(g_buffer) - 1] = 0;
|
crypto-native: use and instead of blend
Faster and more portable...
Type: improvement | @@ -73,10 +73,7 @@ aes_block_store (u8 * p, u8x16 r)
static_always_inline u8x16
aes_byte_mask (u8x16 x, u8 n_bytes)
{
- u8x16 mask = u8x16_is_greater (u8x16_splat (n_bytes), byte_mask_scale);
- __m128i zero = { };
-
- return (u8x16) _mm_blendv_epi8 (zero, (__m128i) x, (__m128i) mask);
+ return x & u8x16_is_greater (u8x... |
fix HRTIMER - get time first only | @@ -103,7 +103,6 @@ static void IOOUTCALL upd4990_o22(UINT port, REG8 dat) {
io22value = dat;
(void)port;
}
-
static REG8 IOOUTCALL upd4990_i22(UINT port) {
return io22value;
}
@@ -193,11 +192,6 @@ void upd4990_hrtimer_count(void) {
pic_setirq(15);
}
}
-
- // time update
- timemng_gettime(&hrtimertime);
- hrtimertimeui... |
test/recipes/30-test_afalg.t: set OPENSSL_ENGINES correctly
The afalg engine was moved down from engines/afalg/ to engines/, but
the test wasn't changed accordingly. This was undetected because the
test program didn't fail when it couldn't load the engine. | @@ -18,6 +18,6 @@ plan skip_all => "$test_name not supported for this build"
plan tests => 1;
-$ENV{OPENSSL_ENGINES} = bldtop_dir("engines/afalg");
+$ENV{OPENSSL_ENGINES} = bldtop_dir("engines");
ok(run(test(["afalgtest"])), "running afalgtest");
|
vppapigen: fix enum types
enums can return signed or unsigned integers
enumflags are unsigned integers
Type: fix | @@ -719,7 +719,7 @@ class VPPAPIParser(object):
p[0] = EnumFlag(p[2], p[4])
def p_enumflag_type(self, p):
- ''' enumflag : ENUMFLAG ID ':' enum_size '{' enum_statements '}' ';' ''' # noqa : E502
+ ''' enumflag : ENUMFLAG ID ':' enumflag_size '{' enum_statements '}' ';' ''' # noqa : E502
if len(p) == 9:
p[0] = EnumFlag(... |
Find Plugin Process: Reformat CMake code | +# ~~~
# Find the dependencies of libpluginprocess to determine if plugins
# which depend on it can be included or not.
#
# HAVE_PLUGINPROCESS - True if the pluginprocess library can be built
# PLUGINPROCESS_NOTFOUND_INFO - A string describing which pluginprocess dependency is missing
#
+# ~~~
include (CheckFunctionExi... |
M487 Eth: Init to NULL for variable pointer | @@ -121,7 +121,7 @@ BaseType_t xNetworkInterfaceInitialise( void )
BaseType_t xNetworkInterfaceOutput( NetworkBufferDescriptor_t * const pxDescriptor, BaseType_t xReleaseAfterSend )
{
- uint8_t *buffer;
+ uint8_t *buffer=NULL;
// printf("<-- dataLength=%d\n",pxDescriptor->xDataLength);
if( pxDescriptor->xDataLength >= ... |
VERSION bump to version 0.10.3 | @@ -28,7 +28,7 @@ set(CMAKE_C_FLAGS_DEBUG "-g -O0")
# set version
set(LIBNETCONF2_MAJOR_VERSION 0)
set(LIBNETCONF2_MINOR_VERSION 10)
-set(LIBNETCONF2_MICRO_VERSION 2)
+set(LIBNETCONF2_MICRO_VERSION 3)
set(LIBNETCONF2_VERSION ${LIBNETCONF2_MAJOR_VERSION}.${LIBNETCONF2_MINOR_VERSION}.${LIBNETCONF2_MICRO_VERSION})
set(LIB... |
Clearer description what to do to enable. | @@ -445,8 +445,9 @@ With the value 0 the rate is unlimited.
.B tls\-service\-key:\fR <filename>
If enabled, the server provides TLS service on TCP sockets with the TLS
service port number. The port number (853) is configured with tls\-port.
-To turn it on, create an interface with @port appended to the IP-address.
-Thi... |
output: use new config_map api prototype | @@ -667,7 +667,7 @@ int flb_output_init_all(struct flb_config *config)
* Create a dynamic version of the configmap that will be used by the specific
* instance in question.
*/
- config_map = flb_config_map_create(p->config_map);
+ config_map = flb_config_map_create(config, p->config_map);
if (!config_map) {
flb_error("... |
Fix casing of makefile on linux for openssl | @@ -212,7 +212,7 @@ else()
# Configure steps for debug and release variants
add_custom_command(
WORKING_DIRECTORY ${QUIC_BUILD_DIR}/submodules/openssl
- OUTPUT ${QUIC_BUILD_DIR}/submodules/openssl/makefile
+ OUTPUT ${QUIC_BUILD_DIR}/submodules/openssl/Makefile
COMMAND SYSTEM=${CMAKE_HOST_SYSTEM_NAME}
${OPENSSL_CONFIG_C... |
Prevent deletion of lights with numeric only MAC address
Issue | @@ -2589,7 +2589,7 @@ void DeRestPluginPrivate::saveDb()
QString sql = QString(QLatin1String("REPLACE INTO nodes (id, state, mac, name, groups, endpoint, modelid, manufacturername, swbuildid) VALUES ('%1', '%2', '%3', '%4', '%5', '%6', '%7', '%8', '%9')"))
.arg(i->id())
.arg(lightState)
- .arg(i->uniqueId())
+ .arg(i->... |
unix/mpconfigport_coverage.h: Enable uhashlib.md5. | #define MICROPY_VFS_FAT (1)
#define MICROPY_PY_FRAMEBUF (1)
#define MICROPY_PY_COLLECTIONS_NAMEDTUPLE__ASDICT (1)
+#define MICROPY_PY_UHASHLIB_MD5 (1)
#define MICROPY_PY_UCRYPTOLIB (1)
// TODO these should be generic, not bound to fatfs
|
Simplify block cipher PSA definitions
If any of the software block ciphers are selected, define an internal
macro to indicate this. This eliminates some redundancy that needs to
check for this. | @@ -282,15 +282,22 @@ extern "C" {
#endif /*!MBEDTLS_PSA_ACCEL_KEY_TYPE_CHACHA20 */
#endif /* PSA_WANT_KEY_TYPE_CHACHA20 */
+/* If any of the software block ciphers are selected, define
+ * PSA_HAVE_SOFT_BLOCK_CIPHER, which can be used in any of these
+ * situations. */
+#if defined(PSA_HAVE_SOFT_KEY_TYPE_AES) || \
+ d... |
CoachZ: Wake up system when stylus is attached
This allows CoachZ to wake from suspend when a stylus is attached to
the WLC port.
BRANCH=trogdor
TEST=Verified on CoachZ. | EC_HOST_EVENT_MASK(EC_HOST_EVENT_AC_CONNECTED) | \
EC_HOST_EVENT_MASK(EC_HOST_EVENT_AC_DISCONNECTED) | \
EC_HOST_EVENT_MASK(EC_HOST_EVENT_RTC) | \
- EC_HOST_EVENT_MASK(EC_HOST_EVENT_MODE_CHANGE))
+ EC_HOST_EVENT_MASK(EC_HOST_EVENT_MODE_CHANGE)) | \
+ EC_HOST_EVENT_MASK(EC_HOST_EVENT_DEVICE)
/* And the MKBP events */
#i... |
Check quantization existance on serialization | @@ -935,8 +935,14 @@ namespace NCB {
featuresLayout->GetInternalFeatureIdx<EFeatureType::Float>(externalFeatureIdx);
//for quantizationSchema
- borders.push_back(quantizedFeaturesInfo->GetBorders(floatFeatureIdx));
- nanModes.push_back(quantizedFeaturesInfo->GetNanMode(floatFeatureIdx));
+ const auto featureBorders = q... |
BugID:19018110: modify code style | @@ -45,7 +45,7 @@ extern "C"
#define DEFAULT_THREAD_PRIORITY 30
#define DEFAULT_THREAD_SLICE 10
-#define PTHREAD_INITIALIZED_OBJ 0xABCDEFEF
+#define PTHREAD_INITIALIZED_OBJ 0XABCDEFEF
#define PTHREAD_ONCE_INIT 0
enum {
@@ -79,7 +79,7 @@ typedef struct pthread_attr {
unsigned char detachstate; /* when set to PTHREAD_CRE... |
ExtendedTools: Fix wswatch ProcessId from commit | @@ -79,6 +79,7 @@ VOID EtShowWsWatchDialog(
context = PhAllocateZero(sizeof(WS_WATCH_CONTEXT));
context->RefCount = 1;
context->ProcessItem = PhReferenceObject(ProcessItem);
+ context->ProcessId = ProcessItem->ProcessId;
if (PH_IS_REAL_PROCESS_ID(context->ProcessId))
{
@@ -504,7 +505,6 @@ INT_PTR CALLBACK EtpWsWatchDlg... |
[numerics] fix compilation of numerics in C++ | @@ -95,10 +95,10 @@ macro(add_siconos_swig_sub_module fullname)
set(${COMPONENT}_SWIG_DEFS "-I${_dir};${${COMPONENT}_SWIG_DEFS}")
endforeach()
- IF(WITH_CXX AND NOT ${COMPONENT} MATCHES "numerics")
+ IF(WITH_CXX AND (BUILD_AS_CPP OR NOT ${COMPONENT} MATCHES "numerics"))
set_source_files_properties(${swig_file}
PROPERTI... |
Maybe this will fix the GLFW dll on appveyor?; | @@ -138,6 +138,7 @@ if(NOT (EMSCRIPTEN OR ANDROID))
set(GLFW_BUILD_EXAMPLES OFF CACHE BOOL "")
set(GLFW_BUILD_TESTS OFF CACHE BOOL "")
set(GLFW_BUILD_DOCS OFF CACHE BOOL "")
+ set(BUILD_SHARED_LIBS ON)
add_subdirectory(deps/glfw glfw)
include_directories(deps/glfw/include)
set(LOVR_GLFW glfw ${GLFW_LIBRARIES})
|
wpa_supplicant: Enable ECC test case | @@ -315,9 +315,6 @@ TEST_CASE("Test crypto lib bignum apis", "[wpa_crypto]")
#endif /* bits in mbedtls_mpi_uint */
-#if !TEMPORARY_DISABLED_FOR_TARGETS(ESP32C6, ESP32H2)
-#if !TEMPORARY_DISABLED_FOR_TARGETS(ESP32C2)
-//IDF-5046
/*
* Create an MPI from embedded constants
* (assumes len is an exact multiple of sizeof mbe... |
Update seq.c
raise | @@ -1076,6 +1076,11 @@ static void seq_click(t_seq *x, t_floatarg xpos, t_floatarg ypos, t_floatarg shi
ep++;
}
hammereditor_setdirty(x->x_filehandle, 0);
+ sys_vgui(" if {[winfo exists .%lx]} {\n", (unsigned long)x->x_filehandle);
+ sys_vgui(" wm deiconify .%lx\n", (unsigned long)x->x_filehandle);
+ sys_vgui(" raise .... |
Fix error handling in scanner when in case of OOM
This patch fixes and fixes
JerryScript-DCO-1.0-Signed-off-by: Robert Fancsik | @@ -3159,12 +3159,6 @@ scan_completed:
}
PARSER_CATCH
{
- /* Ignore the errors thrown by the lexer. */
- if (context_p->error != PARSER_ERR_OUT_OF_MEMORY)
- {
- context_p->error = PARSER_ERR_NO_ERROR;
- }
-
#if ENABLED (JERRY_ES2015)
while (scanner_context.active_binding_list_p != NULL)
{
@@ -3172,6 +3166,11 @@ scan_co... |
fixed WPA-IE AKM handling | @@ -1593,7 +1593,7 @@ while(0 < infolen)
{
zeiger->kdversion |= WPA1;
suiteptr = (suite_t*)(infoptr + WPAIE_SIZE);
- if(memcmp(suiteptr->oui, &suiteoui, 3) == 0)
+ if(memcmp(suiteptr->oui, &mscorp, 3) == 0)
{
zeiger->groupcipher = suiteptr->type;
suitelen = WPAIE_SIZE +SUITE_SIZE;
@@ -1603,10 +1603,10 @@ while(0 < info... |
Remove Python 2 from AppVeyor tests.
Seems to be a regression with ctypes in Python 2.17.16 | @@ -6,23 +6,18 @@ environment:
matrix:
- MSBUILD: Win32
- SCONSOPTS: "ARCH=x86_64 TOOLSET=msvc"
- TEST_PYTHON2: "C:/Python27-x64/python.exe"
TEST_PYTHON3: "C:/Python34-x64/python.exe"
- SCONSOPTS: "ARCH=x86_64 TOOLSET=msvc SOURCE_FILES=static"
- TEST_PYTHON2: "C:/Python27-x64/python.exe"
TEST_PYTHON3: "C:/Python34-x64/... |
BugID:17291083:add linkkit_gateway_init parameter check | @@ -436,6 +436,13 @@ int linkkit_gateway_init(linkkit_params_t *initParams)
}
linkkit_gateway_ctx->is_inited = 1;
+ if (initParams->maxMsgSize < 256 ||
+ initParams->maxMsgQueueSize < 1 ||
+ initParams->threadPoolSize < 1 ||
+ initParams->threadStackSize < 1024) {
+ return FAIL_RETURN;
+ }
+
return SUCCESS_RETURN;
}
|
hw/ipc_nrf5340: Assert on ipc_nrf5340_recv if channel is already in use
Calling ipc_nrf5340_recv on channel which is already enabled is always
an application error which leads to confusing behaviour (or crashes).
If application want to change receive handler for specified channel it
shall first unregister old one by pa... | @@ -249,6 +249,8 @@ ipc_nrf5340_recv(int channel, ipc_nrf5340_recv_cb cb, void *user_data)
assert(channel < IPC_MAX_CHANS);
if (cb) {
+ assert(ipcs[channel].cb == NULL);
+
ipcs[channel].cb = cb;
ipcs[channel].user_data = user_data;
NRF_IPC->RECEIVE_CNF[channel] = (0x1UL << channel);
|
nrf52820_hic: update DAP_config.h for CMSIS-DAP 2.1 | /*
- * Copyright (c) 2013-2017 ARM Limited. All rights reserved.
+ * Copyright (c) 2013-2021 ARM Limited. All rights reserved.
*
* SPDX-License-Identifier: Apache-2.0
*
*
* ----------------------------------------------------------------------
*
- * $Date: 1. December 2017
- * $Revision: V2.0.0
+ * $Date: 16. June 2021... |
Fix test_tls13messages with no-ocsp
s_client -status is not available in this configuration.
While here, remove an outdated TODO(TLS1.3) comment. | @@ -170,6 +170,9 @@ checkhandshake($proxy, checkhandshake::RESUME_HANDSHAKE,
| checkhandshake::PSK_SRV_EXTENSION),
"Resumption handshake test");
+SKIP: {
+ skip "No OCSP support in this OpenSSL build", 3
+ if disabled("ct") || disabled("ec") || disabled("ocsp");
#Test 3: A status_request handshake (client request only)... |
feat: logging which event is served by a thread | @@ -665,7 +665,8 @@ static void*
dispatch_run(void *p_cxt)
{
struct _event_cxt *cxt = p_cxt;
- log_info(ANSICOLOR("pthread_run %u", 31), cxt->tid);
+ log_info(ANSICOLOR("pthread %u is running to serve %s", 31),
+ cxt->tid, cxt->p_gw->payload.event_name);
(*cxt->on_event)(cxt->p_gw, &cxt->data);
@@ -675,7 +676,8 @@ disp... |
docs/conf: Version 2.11.0.20. | @@ -74,7 +74,7 @@ copyright = '2014-2019, Damien P. George, Paul Sokolovsky, and contributors'
#
# We don't follow "The short X.Y version" vs "The full version, including alpha/beta/rc tags"
# breakdown, so use the same version identifier for both to avoid confusion.
-version = release = '2.11.0.19'
+version = release ... |
workflows: fix tests in release job | @@ -70,7 +70,7 @@ jobs:
# 4. Create a full repo configuration using the existing releases as well.
# 5. Upload to release bucket.
# Note we could resign all packages as well potentially if we wanted to update the key.
- staging-release-packages-s3:
+ staging-release-packages:
name: S3 - update packages bucket
runs-on: ... |
Check for NULL in container_update_title
Fixes crash when opening Firefox developer tools. | @@ -348,7 +348,7 @@ struct sway_container *container_view_create(struct sway_container *sibling,
swayc, title, sibling, sibling ? sibling->type : 0, sibling->name);
// Setup values
swayc->sway_view = sway_view;
- container_update_title(swayc, title ? title : "");
+ container_update_title(swayc, title);
swayc->width = 0... |
Fix spawn-thread doc about its return | ~(,ev/thread (fiber/new (fn _thread [&] ,;body) :t)))
(defmacro ev/spawn-thread
- ``Run some code in a new thread. Like `ev/do-thread`, but returns immediately with a fiber.``
+ ``Run some code in a new thread. Like `ev/do-thread`, but returns nil immediately.``
[& body]
~(,ev/thread (fiber/new (fn _thread [&] ,;body) ... |
boards: imxrt1060-evk: Update knsh
Summary:
Add built-in apps such as ostest, getprime, hello
Enable some debug configurations
Enable interrupt stack and stack coloring
Impact:
None
Testing:
Tested with imxrt1060-evk | # modifications.
#
# CONFIG_ARCH_RAMFUNCS is not set
+# CONFIG_NSH_DISABLE_MW is not set
CONFIG_ARCH="arm"
CONFIG_ARCH_BOARD="imxrt1060-evk"
CONFIG_ARCH_BOARD_IMXRT1060_EVK=y
CONFIG_ARCH_CHIP="imxrt"
CONFIG_ARCH_CHIP_IMXRT=y
CONFIG_ARCH_CHIP_MIMXRT1062DVL6A=y
+CONFIG_ARCH_INTERRUPTSTACK=2048
CONFIG_ARCH_STACKDUMP=y
CON... |
Fix issue in Makefile.am that was causing | @@ -23,7 +23,7 @@ ACLOCAL_AMFLAGS=-I m4
bin_PROGRAMS = yara yarac
yara_SOURCES = args.c args.h common.h threading.c threading.h yara.c
-yara_LDADD = libyara/.libs/libyara.a #-Llibyara/.libs -lyara
+yara_LDADD = -Llibyara/.libs -lyara
yarac_SOURCES = args.c args.h common.h yarac.c
yarac_LDADD = -Llibyara/.libs -lyara
|
neon/qadd: fix warning in ternarylogic call in vaddq_u32
We need to use the SSE types, not the public NEON types. This only
worked because both were GCC vector extensions, but that obviously
won't hold true on all compilers. | @@ -696,7 +696,7 @@ simde_vqaddq_u32(simde_uint32x4_t a, simde_uint32x4_t b) {
#if defined(SIMDE_X86_SSE4_1_NATIVE)
#if defined(__AVX512VL__)
- __m128i notb = _mm_ternarylogic_epi32(b, b, b, 0x0f);
+ __m128i notb = _mm_ternarylogic_epi32(b_.m128i, b_.m128i, b_.m128i, 0x0f);
#else
__m128i notb = _mm_xor_si128(b_.m128i, ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.