HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 1626 - 1650 of 3043) sorted by null

<<61626364656667686970>>

  /external/libvorbis/lib/
sharedbook.c 537 float *out=_book_unquantize(b,b->entries,NULL); local
541 if(!out){
547 if(fabs(out[i]-comp[i])>.0001){
549 "position %d, %g != %g\n",i,out[i],comp[i]);
554 if(out){
  /external/libvpx/libvpx/test/
convolve_test.cc 260 uint8_t* const out = output(); local
264 UUT_->h8_(in, kInputStride, out, kOutputStride, filter8, 16, filter8, 16,
271 ASSERT_EQ(out[y * kOutputStride + x], in[y * kInputStride + x])
277 uint8_t* const out = output(); local
281 UUT_->v8_(in, kInputStride, out, kOutputStride, filter8, 16, filter8, 16,
288 ASSERT_EQ(out[y * kOutputStride + x], in[y * kInputStride + x])
294 uint8_t* const out = output(); local
298 UUT_->hv8_(in, kInputStride, out, kOutputStride, filter8, 16, filter8, 16,
305 ASSERT_EQ(out[y * kOutputStride + x], in[y * kInputStride + x])
343 uint8_t* const out = output() local
388 uint8_t* const out = output(); local
467 uint8_t* const out = output(); local
555 uint8_t* const out = output(); local
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
parse-options.h 127 /* parse_options() will filter out the processed options and leave the
154 const char **out; member in struct:parse_opt_ctx_t
  /external/llvm/include/llvm/Support/
MathExtras.h 242 unsigned char out[sizeof(Val)]; local
245 out[(sizeof(Val) - i) - 1] = BitReverseTable256[in[i]];
246 std::memcpy(&Val, out, sizeof(Val));
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMAsmBackend.cpp 239 // instruction it is is actually out of range for the instruction.
392 Ctx->FatalError(Fixup.getLoc(), "out of range pc-relative fixup value");
413 Ctx->FatalError(Fixup.getLoc(), "out of range pc-relative fixup value");
426 uint32_t out = (opc << 21); local
427 out |= (Value & 0x800) << 15;
428 out |= (Value & 0x700) << 4;
429 out |= (Value & 0x0FF);
431 return swapHalfWords(out, IsLittleEndian);
449 uint32_t out = 0; local
456 out |= I << 26; // S bi
468 uint64_t out = 0; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/translate/
translate_generic.c 23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
100 DSTTYPE *out = (DSTTYPE *)ptr; \
103 out[i] = TO(in[i]); \
242 ubyte *out = (ubyte *)ptr; local
243 out[0] = TO_8_UNORM(in[3]);
244 out[1] = TO_8_UNORM(in[0]);
245 out[2] = TO_8_UNORM(in[1]);
246 out[3] = TO_8_UNORM(in[2]);
253 ubyte *out = (ubyte *)ptr; local
254 out[2] = TO_8_UNORM(in[0])
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_rast_tri.c 23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
261 struct { unsigned mask:16; unsigned i:8; unsigned j:8; } out[16]; local
341 out[nr].i = i;
342 out[nr].j = j;
343 out[nr].mask = mask;
356 x + 4 * out[i].j,
357 y + 4 * out[i].i,
358 0xffff & ~out[i].mask);
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_from_sm4.cpp 59 struct nv50_ir_varying out[3][PIPE_MAX_SHADER_OUTPUTS]; member in class:__anon31018::Converter
739 info.out[r].mask |= ~sm4.params_out[i].ReadWriteMask;
740 info.out[r].id = r;
741 if (info.out[r].regular) // already assigned semantic name/index
743 info.out[r].regular = 1;
744 info.out[r].patch = 0;
751 info.out[r].sn = TGSI_SEMANTIC_COLOR;
752 info.out[r].si = info.prop.fp.numColourResults++;
754 info.out[r].sn = TGSI_SEMANTIC_GENERIC;
755 info.out[r].si = n++
    [all...]
nv50_ir_ssa.cpp 18 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
230 BasicBlock *out = BasicBlock::get(ei.getNode()); local
231 if (out == bb)
233 if (out->cfg.visit(seq))
234 buildLiveSetsPreSSA(out, seq);
236 bb->liveSet = out->liveSet;
238 bb->liveSet |= out->liveSet;
  /external/mesa3d/src/gallium/state_trackers/xa/
xa_tgsi.c 20 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
50 * OUT[0] = vertex pos
51 * OUT[1] = src tex coord | solid fill color
52 * OUT[2] = mask tex coord
53 * OUT[3] = dst tex coord
65 * OUT[0] = color
144 struct ureg_dst out,
183 ureg_TEX(ureg, out, TGSI_TEXTURE_1D, ureg_src(temp2), sampler);
195 struct ureg_dst out,
251 ureg_TEX(ureg, out, TGSI_TEXTURE_1D, ureg_src(temp2), sampler)
325 struct ureg_dst out = ureg_DECL_output(ureg, local
436 struct ureg_dst out; local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/xorg/
xorg_exa_tgsi.c 26 * OUT[0] = vertex pos
27 * OUT[1] = src tex coord | solid fill color
28 * OUT[2] = mask tex coord
29 * OUT[3] = dst tex coord
41 * OUT[0] = color
121 struct ureg_dst out,
167 ureg_TEX(ureg, out,
181 struct ureg_dst out,
252 ureg_TEX(ureg, out, TGSI_TEXTURE_1D,
329 struct ureg_dst out = ureg_DECL_output(ureg local
462 struct ureg_dst out; local
    [all...]
  /external/mesa3d/src/mesa/vbo/
vbo_split_copy.c 22 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
83 GLuint out; member in struct:copy_context::__anon31771
288 copy->vert_cache[slot].out = copy->dstbuf_nr++;
298 /* printf(" --> emit %d\n", copy->vert_cache[slot].out); */
299 copy->dstelt[copy->dstelt_nr++] = copy->vert_cache[slot].out;
499 /* Figure out the maximum allowed vertex buffer size:
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
ESDescriptor.java 158 int out = 5; local
160 out += 2;
163 out += 1 + URLLength;
166 out += 2;
169 out += decoderConfigDescriptor.serializedSize();
170 out += slConfigDescriptor.serializedSize();
174 return out;
178 ByteBuffer out = ByteBuffer.allocate(serializedSize()); // Usually is around 30 bytes, so 200 should be enough... local
179 IsoTypeWriter.writeUInt8(out, 3);
180 IsoTypeWriter.writeUInt8(out, serializedSize() - 2); // Not OK for longer sizes!
    [all...]
  /external/nist-sip/java/gov/nist/core/
GenericObjectList.java 459 System.out.println("Trying to match = "
468 System.out.println(((GenericObject) hisobj).encode());
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
HpackDraft05.java 399 private final OkBuffer out; field in class:HpackDraft05.Writer
401 Writer(OkBuffer out) {
402 this.out = out;
415 out.writeByte(0x40); // Literal Header without Indexing - New Name.
426 out.writeByte(bits | value);
431 out.writeByte(bits | prefixMask);
437 out.writeByte(b | 0x80);
440 out.writeByte(value);
445 out.write(data)
    [all...]
  /external/opencv/cv/src/
cvrotcalipers.cpp 37 // or tort (including negligence or otherwise) arising in any way out of
71 // out - output info.
75 // ((CvPoint2D32f*)out)[0] - corner
76 // ((CvPoint2D32f*)out)[1] - vector1
77 // ((CvPoint2D32f*)out)[0] - corner2
93 icvRotatingCalipers( CvPoint2D32f* points, int n, int mode, float* out )
325 out[0] = px;
326 out[1] = py;
328 out[2] = A1 * buf[2];
329 out[3] = B1 * buf[2]
365 CvPoint2D32f out[3]; local
    [all...]
  /external/openssl/apps/
pkcs12.c 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
83 int dump_certs_keys_p12(BIO *out, PKCS12 *p12, char *pass, int passlen, int options, char *pempass);
84 int dump_certs_pkeys_bags(BIO *out, STACK_OF(PKCS12_SAFEBAG) *bags, char *pass,
86 int dump_certs_pkeys_bag(BIO *out, PKCS12_SAFEBAG *bags, char *pass, int passlen, int options, char *pempass);
87 int print_attribs(BIO *out, STACK_OF(X509_ATTRIBUTE) *attrlst,const char *name);
88 void hex_prin(BIO *out, unsigned char *buf, int len);
100 BIO *in=NULL, *out = NULL; local
240 } else if (!strcmp (*args, "-out")) {
296 BIO_printf (bio_err, "-out outfile output filename\n");
400 out = BIO_new_fp(stdout, BIO_NOCLOSE)
    [all...]
  /external/openssl/crypto/bn/
bntest.c 35 * The word 'cryptographic' can be left out if the rouines from the library
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
130 static void message(BIO *out, char *m)
133 BIO_puts(out, "print \"test ");
134 BIO_puts(out, m);
135 BIO_puts(out, "\\n\"\n");
141 BIO *out; local
154 else if (strcmp(*argv,"-out") == 0)
167 out=BIO_new(BIO_s_file());
168 if (out == NULL) EXIT(1)
    [all...]
  /external/openssl/crypto/conf/
conf.h 35 * The word 'cryptographic' can be left out if the rouines from the library
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
137 int CONF_dump_fp(LHASH_OF(CONF_VALUE) *conf, FILE *out); variable
138 int CONF_dump_bio(LHASH_OF(CONF_VALUE) *conf, BIO *out); variable
171 int NCONF_dump_fp(const CONF *conf, FILE *out);
172 int NCONF_dump_bio(const CONF *conf, BIO *out);
  /external/openssl/crypto/des/
destest.c 35 * The word 'cryptographic' can be left out if the rouines from the library
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
338 des_cblock in,out,outin,iv3,iv2; local
413 memset(out,0,8);
415 des_ecb_encrypt(&in,&out,ks,DES_ENCRYPT);
416 des_ecb_encrypt(&out,&outin,ks,DES_DECRYPT);
418 if (memcmp(out,cipher_data[i],8) != 0)
422 pt(out));
428 i+1,pt(key_data[i]),pt(out),pt(in),pt(outin));
441 memset(out,0,8)
    [all...]
  /external/openssl/crypto/pkcs7/
pk7_doit.c 35 * The word 'cryptographic' can be left out if the rouines from the library
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
266 BIO *out=NULL,*btmp=NULL; local
319 if (!PKCS7_bio_add_digest(&out, sk_X509_ALGOR_value(md_sk, i)))
322 if (xa && !PKCS7_bio_add_digest(&out, xa))
370 if (out == NULL)
371 out=btmp;
373 BIO_push(out,btmp);
391 if (out)
392 BIO_push(out,bio)
423 BIO *out=NULL,*btmp=NULL,*etmp=NULL,*bio=NULL; local
    [all...]
  /external/openssl/include/openssl/
conf.h 35 * The word 'cryptographic' can be left out if the rouines from the library
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
137 int CONF_dump_fp(LHASH_OF(CONF_VALUE) *conf, FILE *out); variable
138 int CONF_dump_bio(LHASH_OF(CONF_VALUE) *conf, BIO *out); variable
171 int NCONF_dump_fp(const CONF *conf, FILE *out);
172 int NCONF_dump_bio(const CONF *conf, BIO *out);
  /external/pixman/pixman/
pixman-arm-neon-asm.h 20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
1173 .macro convert_8888_to_0565 in_r, in_g, in_b, out, tmp1, tmp2 variable
    [all...]
  /external/proguard/src/proguard/optimize/
ChangedCodePrinter.java 32 * prints out the code if the other visitor has changed it.
282 System.out.println("Class "+ClassUtil.externalClassName(clazz.getName()));
283 System.out.println("Method "+ClassUtil.externalFullMethodDescription(clazz.getName(),
290 System.out.println(
  /external/proguard/src/proguard/optimize/evaluation/
EvaluationSimplifier.java 127 System.out.println();
128 System.out.println("Class "+ClassUtil.externalClassName(clazz.getName()));
129 System.out.println("Method "+ClassUtil.externalFullMethodDescription(clazz.getName(),
785 if (DEBUG) System.out.println(" Deleting store of subroutine return address "+instruction.toString(offset));
    [all...]

Completed in 1781 milliseconds

<<61626364656667686970>>