HomeSort by relevance Sort by last modified time
    Searched defs:sh (Results 1 - 25 of 135) sorted by null

1 2 3 4 5 6

  /external/chromium_org/third_party/angle_dx11/src/compiler/
Uniform.cpp 9 namespace sh namespace
SearchSymbol.cpp 14 namespace sh namespace
SearchSymbol.h 15 namespace sh namespace
DetectDiscontinuity.h 16 namespace sh namespace
UnfoldShortCircuit.h 15 namespace sh namespace
UnfoldShortCircuit.cpp 16 namespace sh namespace
Uniform.h 16 namespace sh namespace
DetectDiscontinuity.cpp 15 namespace sh namespace
  /frameworks/rs/cpu_ref/linkloader/include/
ELFSectionBits.h 29 ELFSectionHeader<Bitwidth> const *sh; member in class:ELFSectionBits
33 ELFSectionBits() : sh(NULL) { }
ELFSectionProgBits.h 38 ELFSectionHeaderTy const *sh);
67 ELFSectionHeaderTy const *sh = this->sh; local
70 AR.seek(sh->getOffset(), true);
71 AR.prologue(sh->getSize());
72 AR.readBytes(chunk.getBuffer(), sh->getSize());
73 AR.epilogue(sh->getSize());
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_context.c 92 uint i, sh; local
125 for (sh = 0; sh < Elements(softpipe->tex_cache); sh++) {
127 sp_destroy_tex_tile_cache(softpipe->tex_cache[sh][i]);
128 pipe_sampler_view_reference(&softpipe->sampler_views[sh][i], NULL);
132 for (sh = 0; sh < Elements(softpipe->constants); sh++) {
134 if (softpipe->constants[sh][i])
164 unsigned i, sh; local
217 uint i, sh; local
    [all...]
sp_flush.c 55 unsigned sh; local
57 for (sh = 0; sh < Elements(softpipe->tex_cache); sh++) {
58 for (i = 0; i < softpipe->num_sampler_views[sh]; i++) {
59 sp_flush_tex_tile_cache(softpipe->tex_cache[sh][i]);
  /external/libsepol/src/
handle.c 9 sepol_handle_t *sh = malloc(sizeof(sepol_handle_t)); local
10 if (sh == NULL)
14 sh->msg_callback = sepol_msg_default_handler;
15 sh->msg_callback_arg = NULL;
18 sh->disable_dontaudit = 0;
19 sh->expand_consume_base = 0;
22 sh->preserve_tunables = 0;
24 return sh;
27 int sepol_get_preserve_tunables(sepol_handle_t *sh)
29 assert(sh != NULL)
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_context.c 92 uint i, sh; local
125 for (sh = 0; sh < Elements(softpipe->tex_cache); sh++) {
127 sp_destroy_tex_tile_cache(softpipe->tex_cache[sh][i]);
128 pipe_sampler_view_reference(&softpipe->sampler_views[sh][i], NULL);
132 for (sh = 0; sh < Elements(softpipe->constants); sh++) {
134 if (softpipe->constants[sh][i])
164 unsigned i, sh; local
217 uint i, sh; local
    [all...]
sp_flush.c 55 unsigned sh; local
57 for (sh = 0; sh < Elements(softpipe->tex_cache); sh++) {
58 for (i = 0; i < softpipe->num_sampler_views[sh]; i++) {
59 sp_flush_tex_tile_cache(softpipe->tex_cache[sh][i]);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
SerializerFactory.java 158 SerializationHandler sh = local
160 sh.setContentHandler( (ContentHandler) obj);
161 sh.setOutputFormat(format);
163 ser = sh;
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/
KeyMaterial.java 25 private static byte[] calculateKey(HashForSSH2Types sh, BigInteger K, byte[] H, byte type, byte[] SessionID,
30 int dglen = sh.getDigestLength();
35 sh.reset();
36 sh.updateBigInt(K);
37 sh.updateBytes(H);
38 sh.updateByte(type);
39 sh.updateBytes(SessionID);
41 tmp[0] = sh.getDigest();
53 sh.updateBigInt(K);
54 sh.updateBytes(H)
76 HashForSSH2Types sh = new HashForSSH2Types(hashType); local
    [all...]
  /art/compiler/
elf_stripper.cc 73 llvm::ELF::Elf32_Shdr& sh = elf_file->GetSectionHeader(i); local
74 const char* name = elf_file->GetString(string_section, sh.sh_name);
77 section_headers.push_back(sh);
86 section_headers.push_back(sh);
  /external/chromium-trace/trace-viewer/third_party/gl-matrix/tasks/support/gl-matrix/
release_helper.rb 52 if sh('git tag').split(/\n/).include?(version_tag)
66 sh "git tag -a -m \"Version #{version}\" #{version_tag}"
87 def sh(cmd, &block) method in class:GLMatrix
  /external/chromium_org/third_party/openssl/openssl/crypto/des/
cfb_enc.c 83 unsigned int sh[4]; local
84 unsigned char *ovec=(unsigned char *)sh;
87 assert (sizeof(sh[0])==4); /* as this holds true for all, */
125 sh[0]=v0, sh[1]=v1, sh[2]=d0, sh[3]=d1;
134 v0=sh[0], v1=sh[1];
168 sh[0]=v0, sh[1]=v1, sh[2]=d0, sh[3]=d1
    [all...]
  /external/openssl/crypto/des/
cfb_enc.c 83 unsigned int sh[4]; local
84 unsigned char *ovec=(unsigned char *)sh;
87 assert (sizeof(sh[0])==4); /* as this holds true for all, */
125 sh[0]=v0, sh[1]=v1, sh[2]=d0, sh[3]=d1;
134 v0=sh[0], v1=sh[1];
168 sh[0]=v0, sh[1]=v1, sh[2]=d0, sh[3]=d1
    [all...]
  /external/webrtc/src/common_audio/signal_processing/
spl_sqrt.c 135 WebRtc_Word16 x_norm, nshift, t16, sh; local
145 sh = WebRtcSpl_NormW32(A); // # shifts to normalize A
146 A = WEBRTC_SPL_LSHIFT_W32(A, sh); // Normalize A
157 nshift = WEBRTC_SPL_RSHIFT_W16(sh, 1); // nshift = sh>>1
164 if ((-2 * nshift) == sh)
  /frameworks/rs/cpu_ref/linkloader/include/impl/
ELFSectionHeaderTable.hxx 56 llvm::OwningPtr<ELFSectionHeaderTy> sh(
59 if (!sh) {
64 tab->table.push_back(sh.take());
89 ELFSectionHeaderTy *sh = table[i]; local
90 if ( sh ) {
91 name_map[sh->getName()] = sh;
99 typename llvm::StringMap<ELFSectionHeaderTy *>::const_iterator sh = local
101 if (sh == name_map.end()) {
105 return sh->getValue()
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.nonmodifying/alg.search/
search_pred.pass.cpp 94 const unsigned sh = sizeof(ih)/sizeof(ih[0]); local
96 assert(std::search(Iter1(ih), Iter1(ih+sh), Iter2(ii), Iter2(ii+3), count_equal()) == Iter1(ih+3));
97 assert(count_equal::count <= sh*3);
  /external/eigen/unsupported/test/
matrix_exponential.cpp 60 T angle, ch, sh; local
66 sh = std::sinh(angle);
68 B << ch, sh*imagUnit, -sh*imagUnit, ch;

Completed in 656 milliseconds

1 2 3 4 5 6