Lines Matching refs:map
91 static void php_pack(zval *val, size_t size, int *map, char *output) in php_pack() argument
100 *output++ = v[map[i]]; in php_pack()
543 int *map = machine_endian_short_map; in PHP_FUNCTION() local
546 map = big_endian_short_map; in PHP_FUNCTION()
548 map = little_endian_short_map; in PHP_FUNCTION()
552 php_pack(&argv[currentarg++], 2, map, &ZSTR_VAL(output)[outputpos]); in PHP_FUNCTION()
570 int *map = machine_endian_long_map; in PHP_FUNCTION() local
573 map = big_endian_long_map; in PHP_FUNCTION()
575 map = little_endian_long_map; in PHP_FUNCTION()
579 php_pack(&argv[currentarg++], 4, map, &ZSTR_VAL(output)[outputpos]); in PHP_FUNCTION()
590 int *map = machine_endian_longlong_map; in PHP_FUNCTION() local
593 map = big_endian_longlong_map; in PHP_FUNCTION()
595 map = little_endian_longlong_map; in PHP_FUNCTION()
599 php_pack(&argv[currentarg++], 8, map, &ZSTR_VAL(output)[outputpos]); in PHP_FUNCTION()