Searched refs:instructions (Results 1 – 16 of 16) sorted by relevance
/php-src/benchmark/ |
H A D | generate_diff.php | 42 function formatInstructions(?int $instructions): string { argument 43 if ($instructions === null) { 46 if ($instructions > 1e6) { 47 return sprintf('%.0fM', $instructions / 1e6); 48 } elseif ($instructions > 1e3) { 49 return sprintf('%.0fK', $instructions / 1e3); 51 return (string) $instructions;
|
H A D | benchmark.php | 132 $instructions = extractInstructionsFromValgrindOutput($process->stderr); 134 $instructions = gmp_strval(gmp_div_q($instructions, $repeat)); 136 return ['instructions' => $instructions];
|
/php-src/ext/dom/tests/ |
H A D | domchardata.phpt | 40 $comment = new DOMComment('instructions'); 42 $comment->data = 'some more instructions'; 71 Comment Value: instructions 72 New Comment Value: some more instructions
|
/php-src/docs/source/introduction/ |
H A D | high-level-overview.rst | 118 machine code, which are sequences of simple, mostly atomic instructions for doing one thing. For 121 these simple instructions. 123 PHP is a bit different, in that it does not execute machine code directly. Instead, instructions run 125 physical machine you can buy that understands these instructions, but that this machine is 127 instructions ourselves at will. Some of these instructions look very similar to something you'd find 132 into our virtual machine instructions, also called opcodes. The code responsible for this 134 number of instructions, before going to the next node. 149 instructions. This essentially means that each instructions may have a result value, and at most two 192 takes the virtual PHP opcodes and turns it into actual machine instructions, with additional
|
/php-src/docs/source/introduction/ides/ |
H A D | index.rst | 10 Here you can find instructions on how to effectively use common IDEs for php-src development.
|
H A D | visual-studio-code.rst | 7 These instructions have been tested on Linux. macOS should mostly work the same. For Windows, 13 installation instructions. 70 Follow the `official installation instructions for clangd 73 ``compile_commands.json`` file, so make sure to follow the instructions from the previous section.
|
/php-src/ext/opcache/tests/opt/ |
H A D | sccp_016.phpt | 2 SCCP 016: Used constant instructions should be replaced with QM_ASSIGN
|
/php-src/ext/pdo_odbc/tests/ |
H A D | long_columns.phpt | 17 // -download & instructions: http://www.microsoft.com/en-us/download/details.aspx?id=28160 19 // -follow instructions on web page and install script
|
/php-src/docs-old/ |
H A D | self-contained-extensions.md | 50 The user instructions boil down to
|
/php-src/sapi/litespeed/ |
H A D | README.md | 89 Brief instructions are as follow:
|
/php-src/docs/source/core/data-structures/ |
H A D | zval.rst | 183 values between ``FETCH`` and ``ASSIGN`` instructions, and for the sharing of variables in the symbol
|
/php-src/docs/ |
H A D | release-process.md | 955 Please see the instructions for 1011 [2FA setup instructions](https://wiki.php.net/systems#fa_setup_instructions). 1022 > If you're new to GPG, follow GitHub's instructions for
|
/php-src/ |
H A D | CONTRIBUTING.md | 135 and building it [per the instructions on the documentation site](http://doc.php.net/tutorial/).
|
/php-src/ext/fileinfo/tests/ |
H A D | magic私はガラスを食べられます | 12744 # assembler instructions: jnz 0729;cmp ebx,"TCPA" 12762 # assembler instructions: cmp ebx,"TCPA";cmp 13542 # assembler instructions: jmp 7C05 13544 # assembler instructions: pushfd;pushad 13546 # assembler instructions: jmp 05 13564 # assembler instructions: mov di,0600h;mov cx,0100h 13611 # assembler instructions: movw nametab,bx 13621 # assembler instructions: jmp short 0x58;nop;ASCII 13931 # unused assembler instructions short JMP y2;NOP;NOP 13937 # assembler instructions JMP C000;NOP [all …]
|
H A D | magic | 12744 # assembler instructions: jnz 0729;cmp ebx,"TCPA" 12762 # assembler instructions: cmp ebx,"TCPA";cmp 13542 # assembler instructions: jmp 7C05 13544 # assembler instructions: pushfd;pushad 13546 # assembler instructions: jmp 05 13564 # assembler instructions: mov di,0600h;mov cx,0100h 13611 # assembler instructions: movw nametab,bx 13621 # assembler instructions: jmp short 0x58;nop;ASCII 13931 # unused assembler instructions short JMP y2;NOP;NOP 13937 # assembler instructions JMP C000;NOP [all …]
|
/php-src/ext/opcache/jit/ir/ |
H A D | ir_aarch64.dasc | 110 * Used to guard the immediate encoding for add/adds/sub/subs/cmp/cmn instructions. */ 116 …mine whether an immediate value can be encoded as the immediate operand of logical instructions. */
|
Completed in 266 milliseconds