Skip to content
View alexei-zaripov's full-sized avatar
Block or Report

Block or report alexei-zaripov

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. C_and_CXX_performance_pitfall.md C_and_CXX_performance_pitfall.md
    1
    # C/C++ performance pitfall: int8_t, aliasing and the ways out
    2
    When I was working on a [generic port of Google's hashmap to C](https://github.com/alexei-zaripov/c_flat_hash_map), I wrote a
    3
    function that (ignoring irrelevant parts) looked like this:
    4
    
                  
    5
    ```c
  2. c_flat_hash_map c_flat_hash_map Public

    flat_hash_map from from Google's Abseil made in generic and type-safe C

    C 4 1

  3. pthread_queue pthread_queue Public

    synchronous multi-producer multi-consumer queue on pthreads

    C