Skip to content

Instantly share code, notes, and snippets.

@Whateverable
Created May 28, 2024 17:22
Show Gist options
  • Save Whateverable/e65f7561b1aed3ecfa0671cc442f3c72 to your computer and use it in GitHub Desktop.
Save Whateverable/e65f7561b1aed3ecfa0671cc442f3c72 to your computer and use it in GitHub Desktop.
greppable6
copy-to-carray
File Code
JSTOWE/Audio-Convert-Samplerate
…/Samplerate.pm :339:
my CArray $carray = copy-to-carray(@items, $type);
JSTOWE/Audio-Encode-LameMP3
…/LameMP3.pm :546:
my $left-in = copy-to-carray(@left, $type);
JSTOWE/Audio-Encode-LameMP3
…/LameMP3.pm :547:
my $right-in = copy-to-carray(@right, $type);
JSTOWE/Audio-Encode-LameMP3
…/LameMP3.pm :579:
my $frames-in = copy-to-carray(@frames, $type);
JSTOWE/Audio-Fingerprint-Chromaprint
…/Chromaprint.pm :263:
my $carray = copy-to-carray(@frames, int16);
JSTOWE/NativeHelpers-Array
…/Array.pm :17:
=head2 sub copy-to-carray
JSTOWE/NativeHelpers-Array
…/Array.pm :19:
sub copy-to-carray(@items, Mu $type) returns CArray is export
JSTOWE/NativeHelpers-Array
…/Array.pm :51:
sub copy-to-carray(@items, Mu $type --> CArray ) is export {
JSTOWE/NativeHelpers-Array
…/00300-subs.t :14:
lives-ok { $carray = copy-to-carray(@array, int32) }, "copy-to-carray";
JSTOWE/RPi-Device-SMBus
…/SMBus.pm :271:
my CArray $buf = copy-to-carray($block, uint8);
JSTOWE/RPi-Device-SMBus
…/SMBus.pm :296:
my CArray[uint8] $buf = copy-to-carray($block, uint8);
JSTOWE/RPi-Device-SMBus
…/SMBus.pm :303:
my CArray[uint8] $buf = copy-to-carray($block, uint8);
jonathanstowe/RPi-Device-SMBus
…/SMBus.pm :271:
my CArray $buf = copy-to-carray($block, uint8);
jonathanstowe/RPi-Device-SMBus
…/SMBus.pm :296:
my CArray[uint8] $buf = copy-to-carray($block, uint8);
jonathanstowe/RPi-Device-SMBus
…/SMBus.pm :303:
my CArray[uint8] $buf = copy-to-carray($block, uint8);
titsuki/p6-Algorithm-KdTree
…/KdTree.pm6 :23:
my $carray = copy-to-carray(@array, num64);
titsuki/p6-Algorithm-KdTree
…/KdTree.pm6 :28:
my $carray = copy-to-carray(@array, num64);
titsuki/p6-Algorithm-KdTree
…/KdTree.pm6 :33:
my $carray = copy-to-carray(@array, num64);
titsuki/p6-Algorithm-KdTree
…/Response.pm6 :41:
$c-pos = copy-to-carray(@array, num64);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment