HomeSort by relevance Sort by last modified time
    Searched refs:code (Results 1676 - 1700 of 8676) sorted by null

<<61626364656667686970>>

  /external/chromium_org/v8/src/
safepoint-table.cc 6 // * Redistributions of source code must retain the above copyright
61 SafepointTable::SafepointTable(Code* code) {
62 ASSERT(code->is_crankshafted());
63 code_ = code;
64 Address header = code->instruction_start() + code->safepoint_table_offset();
120 registers_->Add(reg.code(), zone);
type-info.h 6 // * Redistributions of source code must retain the above copyright
191 return "Unreachable code";
239 TypeFeedbackOracle(Handle<Code> code,
282 void CollectPolymorphicMaps(Handle<Code> code, SmallMapList* types);
321 Code::Flags flags,
326 void BuildDictionary(Handle<Code> code);
327 void GetRelocInfos(Handle<Code> code, ZoneList<RelocInfo>* infos)
    [all...]
  /external/chromium_org/v8/test/mjsunit/compiler/
deopt-inlined-smi.js 6 // * Redistributions of source code must retain the above copyright
28 // Flags: --always-opt --always-inline-smi-code
30 // Test deoptimization into inlined smi code.
  /external/chromium_org/v8/test/preparser/
nonstrict-with.js 6 // * Redistributions of source code must retain the above copyright
28 // The with statement is allowed in non-strict code, and even around
29 // strict code.
  /external/chromium_org/v8/test/webkit/
dfg-to-string-side-effect-clobbers-toString.js 7 // 1. Redistributions of source code must retain the above copyright
37 var code = "(function(s) { " + (i < 150 ? "return " + i + ";" : "count++; debug(\"hi!\"); s.toString = function() { return " + i + "; };") + " })";
38 var sideEffect = eval(code);
  /external/chromium_org/v8/tools/
test-server.py 8 # * Redistributions of source code must retain the above copyright
59 code = subprocess.call(cmd, shell=True)
60 if code != 0:
61 print("Command '%s' returned error code %d" % (cmd, code))
62 sys.exit(code)
81 code = subprocess.call("which pip > /dev/null", shell=True)
82 if code != 0:
  /external/chromium_org/v8/tools/testrunner/server/
work_handler.py 6 # * Redistributions of source code must retain the above copyright
120 code = self._Call("git checkout -f %s" % base_revision)
121 if code != 0:
124 code = self._Call("git clean -f -d")
125 if code != 0:
135 code = self._Call("git apply %s" % patchfilename)
136 if code != 0:
  /external/elfutils/tests/
allregs.c 41 dwarf_encoding_string (unsigned int code)
63 if (code < sizeof (known) / sizeof (known[0]))
64 return known[code];
66 if (code >= DW_ATE_lo_user && code <= DW_ATE_hi_user)
69 snprintf (buf, sizeof (buf), "lo_user+%u", code - DW_ATE_lo_user);
  /external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
InputSystemJme.java 9 * * Redistributions of source code must retain the above copyright
180 int code = evt.getKeyCode(); local
182 if (code == KeyInput.KEY_LSHIFT || code == KeyInput.KEY_RSHIFT) {
184 } else if (code == KeyInput.KEY_LCONTROL || code == KeyInput.KEY_RCONTROL) {
188 KeyboardInputEvent keyEvt = new KeyboardInputEvent(code,
  /external/mesa3d/docs/OLD/
MESA_trace.spec 35 valid (but possibly incomplete) C code and can be compiled and
65 the tracing code from their driver code base.
86 text file, binary metafile, compilable source code, much less which
  /external/mesa3d/src/gallium/state_trackers/d3d1x/winedlls/dxgi/
dxgi_dll.c 52 * It might be a good idea to integrate this code in winex11.drv.
78 unsigned code = X11DRV_GET_DRAWABLE; local
111 ExtEscape(hdc, X11DRV_ESCAPE, sizeof(code), (LPSTR)&code, sizeof(drawable), (LPTSTR)&drawable);
179 * instead of this ridiculous amount of clumsy duplicated code everywhere
180 * C++ exists exactly to avoid having to write the following code */
233 unsigned code = X11DRV_GET_DISPLAY; local
238 ExtEscape(hdc, X11DRV_ESCAPE, sizeof(code), (LPSTR)&code, sizeof(dpy), (LPTSTR)&dpy);
  /external/openssl/crypto/bn/asm/
sparcv9a-mont.pl 123 $code=<<___;
876 $code =~ s/\`([^\`]*)\`/eval($1)/gem;
885 $code =~ s/fzeros\s+%f([0-9]+)/
889 print $code;
  /external/openssl/crypto/conf/
keysets.pl 65 * apply to all code found in this distribution, be it the RC4, RSA,
66 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
71 * the code are not to be removed.
80 * 1. Redistributions of source code must retain the copyright
91 * 4. If you include any Windows specific code (or a derivative thereof) from
92 * the apps directory (application code) you must include an acknowledgement:
108 * derivative of this code cannot be changed. i.e. this code cannot simply be
  /external/openssl/crypto/sha/asm/
sha1-sparcv9a.pl 17 # code would be unsuitable for cores like UltraSPARC-Tx. The idea is
92 $code.=<<___;
149 $code.=<<___ if (!($i&1));
168 $code.=<<___ if ($i&1);
188 $code.=<<___ if ($i&1 && $i>=2);
202 $code.=<<___ if (!($i&1) && $i<64);
220 $code.=<<___ if ($i&1 && $i<64);
240 $code.=<<___ if ($i==64);
256 $code.=<<___ if ($i>64);
281 $code.=<<___ if (!($i&1))
    [all...]
  /external/proguard/src/proguard/classfile/instruction/
VariableInstruction.java 256 protected void readInfo(byte[] code, int offset)
271 variableIndex = readValue(code, offset, variableIndexSize); offset += variableIndexSize;
274 constant = readSignedValue(code, offset, constantSize);
278 protected void writeInfo(byte[] code, int offset)
293 writeValue(code, offset, variableIndex, variableIndexSize); offset += variableIndexSize;
294 writeSignedValue(code, offset, constant, constantSize);
  /external/v8/src/
cpu-profiler.h 6 // * Redistributions of source code must retain the above copyright
227 Code* code, const char* comment);
229 Code* code, String* name);
231 Code* code,
235 Code* code,
239 Code* code, int args_count)
    [all...]
safepoint-table.cc 6 // * Redistributions of source code must retain the above copyright
61 SafepointTable::SafepointTable(Code* code) {
62 ASSERT(code->kind() == Code::OPTIMIZED_FUNCTION);
63 code_ = code;
64 Address header = code->instruction_start() + code->safepoint_table_offset();
120 registers_->Add(reg.code());
161 // Ensure there is always space for such patching, even if the code end
    [all...]
unicode.h 6 // * Redistributions of source code must retain the above copyright
120 static inline bool IsLeadSurrogate(int code) {
121 if (code == kNoPreviousCharacter) return false;
122 return (code & 0xfc00) == 0xd800;
124 static inline bool IsTrailSurrogate(int code) {
125 if (code == kNoPreviousCharacter) return false;
126 return (code & 0xfc00) == 0xdc00;
134 // Encoding a single UTF-16 code unit will produce 1, 2 or 3 bytes
  /external/v8/test/mjsunit/compiler/
deopt-inlined-smi.js 6 // * Redistributions of source code must retain the above copyright
28 // Flags: --always-opt --always-inline-smi-code
30 // Test deoptimization into inlined smi code.
  /external/v8/test/preparser/
nonstrict-with.js 6 // * Redistributions of source code must retain the above copyright
28 // The with statement is allowed in non-strict code, and even around
29 // strict code.
  /external/zlib/src/contrib/blast/
blast.c 33 #define MAXBITS 13 /* maximum code length */
93 * Huffman code decoding tables. count[1..MAXBITS] is the number of symbols of
94 * each length, which for a canonical code are stepped through in order.
105 * Decode a code from the stream s using huffman table h. Return the symbol or
107 * an empty code, or if the code is incomplete and an invalid code is received,
115 * build the code value reversed from what is in the stream in order to
118 * - The first code for the shortest length is all ones. Subsequent codes of
119 * the same length are simply integer decrements of the previous code. Whe
128 int code; \/* len bits being decoded *\/ local
    [all...]
  /frameworks/av/media/libmedia/
IStreamSource.cpp 92 uint32_t code, const Parcel &data, Parcel *reply, uint32_t flags) {
93 switch (code) {
132 return BBinder::onTransact(code, data, reply, flags);
175 uint32_t code, const Parcel &data, Parcel *reply, uint32_t flags) {
176 switch (code) {
205 return BBinder::onTransact(code, data, reply, flags);
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
gain_q.cpp 22 ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec
148 PSEUDO-CODE
154 When the code is written for a specific target processor the
248 PSEUDO-CODE
254 When the code is written for a specific target processor the
335 PSEUDO-CODE
341 When the code is written for a specific target processor the
388 code -- Word16 array -- CB innovation (unfiltered), Q13
404 sf0_gain_cod -- Word16 Pointer -- Code gain sf 0. MR475
406 gain_cod -- Word16 Pointer -- Code gain
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
c2t64fx.c 51 Word16 code[], /* (o) Q9 : algebraic (fixed) codebook excitation */
263 code[i] = 0;
270 code[ix] = 512; /* codeword in Q9 format */
274 code[ix] = -512;
280 code[iy] = 512;
284 code[iy] = -512;
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
bitstream_io.cpp 137 /* In/out : Unused bits in 'code' must be all zeros. */
142 AVCEnc_Status BitstreamWriteBits(AVCEncBitstream *stream, int nBits, uint code)
158 stream->current_word = (current_word << nBits) | code;
168 stream->current_word = (current_word << bit_left) | (code >> (nBits - bit_left));
178 stream->current_word = code; /* no extra masking for code, must be handled before saving */
189 /* In/out : Unused bits in 'code' must be all zeros. */
194 AVCEnc_Status BitstreamWrite1Bit(AVCEncBitstream *stream, uint code)
199 //DEBUG_LOG(userData,AVC_LOGTYPE_INFO,"BitstreamWrite1Bit",code,-1);
203 stream->current_word = (current_word << 1) | code;
    [all...]

Completed in 2775 milliseconds

<<61626364656667686970>>