HomeSort by relevance Sort by last modified time
    Searched refs:conv (Results 1 - 25 of 273) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/adhd/cras/src/server/
cras_fmt_conv.c 28 typedef size_t (*channel_converter_t)(struct cras_fmt_conv *conv,
169 static size_t s16_mono_to_stereo(struct cras_fmt_conv *conv,
184 static size_t s16_stereo_to_mono(struct cras_fmt_conv *conv,
199 static size_t s16_mono_to_51(struct cras_fmt_conv *conv,
206 left = conv->out_fmt.channel_layout[CRAS_CH_FL];
207 right = conv->out_fmt.channel_layout[CRAS_CH_FR];
208 center = conv->out_fmt.channel_layout[CRAS_CH_FC];
233 static size_t s16_stereo_to_51(struct cras_fmt_conv *conv,
240 left = conv->out_fmt.channel_layout[CRAS_CH_FL];
241 right = conv->out_fmt.channel_layout[CRAS_CH_FR]
497 struct cras_fmt_conv *conv; local
677 struct cras_fmt_conv *conv = *convp; local
696 struct cras_fmt_conv *conv; local
    [all...]
cras_fmt_conv.h 26 void cras_fmt_conv_destroy(struct cras_fmt_conv **conv);
41 * conv - The format converter.
46 void cras_channel_remix_convert(struct cras_fmt_conv *conv,
53 const struct cras_fmt_conv *conv);
57 const struct cras_fmt_conv *conv);
60 size_t cras_fmt_conv_in_frames_to_out(struct cras_fmt_conv *conv,
63 size_t cras_fmt_conv_out_frames_to_in(struct cras_fmt_conv *conv,
66 void cras_fmt_conv_set_linear_resample_rates(struct cras_fmt_conv *conv,
71 * conv - The format converter returned from cras_fmt_conv_create().
80 size_t cras_fmt_conv_convert_frames(struct cras_fmt_conv *conv,
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
cudnn_conv_rewriter.cc 51 // At the moment, we don't know how much scratch memory this conv is going to
53 // which conv algorithm to use, and at that point we'll modify the shape of
67 bool CanImplementAsCudnnForwardConv(HloInstruction* conv) {
69 conv->convolution_dimension_numbers();
75 if (ShapeUtil::IsZeroElementArray(conv->operand(0)->shape()) ||
76 ShapeUtil::IsZeroElementArray(conv->operand(1)->shape())) {
83 ? !window_util::AllOrNoneReversed(conv->window())
84 : window_util::HasWindowReversal(conv->window())) {
90 // Try to match a backward filter pattern that contains "conv".
91 // Precondition: "conv" is a kConvolution
    [all...]
cudnn_conv_pad_for_tensor_cores.cc 27 // We won't pad a conv if doing so increases the total number of bytes in the
74 static Status PadConv(HloCustomCallInstruction* conv,
77 CHECK_EQ(0, conv->shape().tuple_shapes(1).dimensions(0))
78 << "conv must use 0 scratch bytes, i.e. this pass must be run "
81 auto* lhs = conv->mutable_operand(0);
82 auto* rhs = conv->mutable_operand(1);
85 const Shape& result_shape = conv->shape().tuple_shapes(0);
90 return conv->parent()->AddInstruction(std::move(new_instr));
96 add(conv->CloneWithNewOperands(new_conv_shape, {new_lhs, new_rhs}));
98 // Slice the new conv result if necessary, keeping in mind that new_conv ha
    [all...]
cudnn_fused_conv_rewriter.cc 30 // max(0, alpha1 * conv(x, w) + alpha2 * side_input + broadcast(bias));
35 HloCustomCallInstruction* conv; member in struct:xla::gpu::__anon44397::ConvWithRelu
54 // max(0, alpha1 * conv(x, w) + alpha2 * side_input + broadcast(bias));
107 // Then try to match each addend with one of the three patterns: bias, conv,
109 // also matches a conv or a bias.
144 auto conv = Cast<HloCustomCallInstruction>(conv_instr); local
148 if (conv->custom_call_target() != kCudnnConvForwardCallTarget) {
158 conv->convolution_dimension_numbers().output_feature_dimension()) {
165 conv,
174 auto conv = match.conv local
    [all...]
cudnn_conv_runner.h 51 // the same conv, you can provide an explicitly preallocated scratch buffer of
53 Status RunCudnnConv(const HloCustomCallInstruction* conv,
59 Status RunCudnnConv(const HloCustomCallInstruction* conv,
cudnn_conv_padding_legalization.h 30 return "cudnn-conv-padding-legalization";
38 bool CanonicalizeForwardConvolution(HloInstruction* conv);
cudnn_conv_padding_legalization.cc 33 bool IsForwardConvolutionCanonical(const HloInstruction& conv) {
34 CHECK(conv.custom_call_target() == kCudnnConvForwardCallTarget ||
35 conv.custom_call_target() == kCudnnConvBiasActivationForwardCallTarget);
36 return window_util::HasSymmetricPadding(conv.window()) &&
37 !window_util::HasNegativePadding(conv.window()) &&
38 !window_util::HasDilation(conv.window());
150 HloInstruction* conv) {
151 if (IsForwardConvolutionCanonical(*conv)) {
157 Window new_conv_window = conv->window();
159 &new_conv_window, conv->convolution_dimension_numbers()
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
cpu_eigen_tensor_alignment_test.cc 37 ROOT conv = f32[1,2,1] convolution(arg0, arg1), window={size=1}, dim_labels=b0f_0io->b0f
44 HloInstruction* conv = module->entry_computation()->root_instruction(); local
50 *conv, target_machine_with_no_alignment));
58 *conv, target_machine_with_full_alignment));
  /external/iperf3/src/
units.c 271 int conv; local
283 conv = UNIT_CONV;
286 conv = KILO_CONV;
289 conv = MEGA_CONV;
292 conv = GIGA_CONV;
295 conv = TERA_CONV;
302 conv = UNIT_CONV;
306 while (tmpNum >= 1024.0 && conv < TERA_CONV)
309 conv++;
313 while (tmpNum >= 1000.0 && conv < TERA_CONV
    [all...]
  /external/vboot_reference/scripts/image_signing/
firmware_boot.sh 53 dd if=nor.bin of=bad.bin conv=notrunc bs=1 count=65536
58 dd if=nor.bin of=${output} conv=notrunc bs=1 seek=${rw_a_offset}
59 dd if=nor.bin of=${output} conv=notrunc bs=1 seek=${rw_b_offset}
64 dd if=dev.bin of=${output} conv=notrunc bs=1 seek=${rw_a_offset}
65 dd if=dev.bin of=${output} conv=notrunc bs=1 seek=${rw_b_offset}
70 dd if=nor.bin of=${output} conv=notrunc bs=1 seek=${rw_a_offset}
71 dd if=dev.bin of=${output} conv=notrunc bs=1 seek=${rw_b_offset}
76 dd if=dev.bin of=${output} conv=notrunc bs=1 seek=${rw_a_offset}
77 dd if=nor.bin of=${output} conv=notrunc bs=1 seek=${rw_b_offset}
82 dd if=nor.bin of=${output} conv=notrunc bs=1 seek=${rw_a_offset
    [all...]
  /external/icu/icu4c/source/samples/ucnv/
convsamp.cpp 213 UConverter *conv; local
218 conv = ucnv_open("koi8-r", &status);
223 len = ucnv_fromUChars(conv, target, 100, source, -1, &status);
227 ucnv_close(conv);
309 UConverter *conv; local
321 conv = ucnv_open("utf-8", &status);
324 uBufSize = (BUFFERSIZE/ucnv_getMinCharSize(conv));
326 BUFFERSIZE, ucnv_getMinCharSize(conv), uBufSize);
343 ucnv_toUnicode(conv, &target, targetLimit,
377 ucnv_close(conv);
405 UConverter *conv; local
538 UConverter *conv; local
578 UConverter *conv = NULL; local
625 UConverter *conv = NULL; local
719 UConverter *conv = NULL, *cloneCnv = NULL; local
887 UConverter *conv = NULL; local
992 UConverter *conv = NULL; local
1086 UConverter *conv = NULL; local
    [all...]
  /external/sfntly/cpp/src/test/
test_utils_test.cc 32 UConverter* conv = TestUtils::GetEncoder("utf8"); local
33 EXPECT_TRUE(conv != NULL);
41 int32_t encoded = TestUtils::EncodeOneChar(conv, (int16_t)from[i]);
48 ucnv_close(conv);
53 ucnv_close(conv);
  /external/icu/icu4c/source/i18n/
csmatch.cpp 63 UConverter *conv = ucnv_open(getName(), status); local
64 int32_t result = ucnv_toUChars(conv, buf, cap, (const char *) textIn->fRawInput, textIn->fRawLength, status);
66 ucnv_close(conv);
  /external/fonttools/Lib/fontTools/ttLib/tables/
otBase.py 559 for conv in cls.converters:
560 size = conv.getRecordSize(reader)
563 if conv.repeat:
564 if conv.repeat in reader:
565 countValue = reader[conv.repeat]
578 for conv in self.getConverters():
579 if conv.repeat:
580 if not hasattr(self, conv.name):
581 setattr(self, conv.name, [])
582 countValue = len(getattr(self, conv.name)) - conv.au
    [all...]
  /art/test/370-dex-v37/
build 26 printf '037' | dd status=none conv=notrunc of=classes.dex bs=1 seek=4 count=3
  /development/build/
product_sdk.mk 44 hprof-conv \
  /external/elfutils/tests/
run-ranlib-test2.sh 32 dd of=$original seek=24 bs=1 count=12 conv=notrunc 2>/dev/null
  /external/u-boot/arch/arc/
Makefile 18 conv=notrunc &> /dev/null
  /external/icu/icu4c/source/tools/toolutil/
ucbuf.cpp 49 UConverter* conv; member in struct:UCHARBUF
55 ucbuf_autodetect_fs(FileStream* in, const char** cp, UConverter** conv, int32_t* signatureLength, UErrorCode* error){
75 *conv =NULL;
80 *conv = ucnv_open(*cp,error);
85 ucnv_toUnicode(*conv, &pTarget, target+1, &pStart, start+*signatureLength, NULL, FALSE, error);
134 ucbuf_autodetect(const char* fileName, const char** cp,UConverter** conv, int32_t* signatureLength,UErrorCode* error){
139 if(conv==NULL || cp==NULL || fileName==NULL){
151 if(ucbuf_autodetect_fs(in,cp,conv,signatureLength,error)) {
154 ucnv_close(*conv);
155 *conv=NULL
    [all...]
  /external/autotest/server/cros/faft/
gen_test_images.sh 38 printf "${ro_version}.dev" | dd of=${BOARD}.dev bs=1 seek=$((ro_version_offset)) count=32 conv=notrunc
39 printf "${rw_version}.dev" | dd of=${BOARD}.dev bs=1 seek=$((rw_version_offset)) count=32 conv=notrunc
57 echo $ROLLBACK0 | xxd -g 4 -p -r | dd of=${BOARD}.dev.rb0 bs=1 seek=$((rb_offset)) count=4 conv=notrunc
59 printf "${rw_version}.rb0" | dd of=${BOARD}.dev.rb0 bs=1 seek=$((rw_version_offset)) count=32 conv=notrunc
73 echo $ROLLBACK1 | xxd -g 4 -p -r | dd of=${BOARD}.dev.rb1 bs=1 seek=$((rb_offset)) count=4 conv=notrunc
75 printf "${rw_version}.rb1" | dd of=${BOARD}.dev.rb1 bs=1 seek=$((rw_version_offset)) count=32 conv=notrunc
88 echo $ROLLBACK9 | xxd -g 4 -p -r | dd of=${BOARD}.dev.rb9 bs=1 seek=$((rb_offset)) count=4 conv=notrunc
90 printf "${rw_version}.rb9" | dd of=${BOARD}.dev.rb9 bs=1 seek=$((rw_version_offset)) count=32 conv=notrunc
99 dd if=/dev/random of=${BOARD}_corrupt_first_byte.bin bs=1 seek=$((offset+100)) count=1 conv=notrunc
104 dd if=/dev/zero of=${BOARD}_corrupt_last_byte.bin bs=1 seek=$((offset-100)) count=1 conv=notrun
    [all...]
  /external/tensorflow/tensorflow/python/compiler/tensorrt/test/
multi_connection_neighbor_engine_test.py 47 conv = nn.conv2d(
53 name="conv")
56 t = conv + b
60 q = conv - b
65 d = b + conv
68 edge1 = self.trt_incompatible_op(conv)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
loslib.c 171 static const char *checkoption (lua_State *L, const char *conv, char *buff) {
175 if (*conv != '\0' && strchr(options[i], *conv) != NULL) {
176 buff[1] = *conv;
179 return conv + 1;
181 else if (*(conv + 1) != '\0' &&
182 strchr(options[i + 1], *(conv + 1)) != NULL) {
183 buff[2] = *(conv + 1); /* valid two-char conversion specifier */
185 return conv + 2;
190 lua_pushfstring(L, "invalid conversion specifier '%%%s'", conv));
    [all...]
  /external/skia/src/gpu/effects/
GrGaussianConvolutionFragmentProcessor.cpp 121 const GrGaussianConvolutionFragmentProcessor& conv = local
123 GrSurfaceProxy* proxy = conv.textureSampler(0).proxy();
128 switch (conv.direction()) {
139 if (conv.useBounds()) {
141 bounds[0] = conv.bounds()[0];
142 bounds[1] = conv.bounds()[1];
143 if (GrTextureDomain::kClamp_Mode == conv.mode()) {
147 if (Direction::kX == conv.direction()) {
166 int width = conv.width();
170 pdman.set4fv(fKernelUni, arrayCount, conv.kernel())
175 const GrGaussianConvolutionFragmentProcessor& conv = local
    [all...]
  /external/skqp/src/gpu/effects/
GrGaussianConvolutionFragmentProcessor.cpp 121 const GrGaussianConvolutionFragmentProcessor& conv = local
123 GrSurfaceProxy* proxy = conv.textureSampler(0).proxy();
128 switch (conv.direction()) {
139 if (conv.useBounds()) {
141 bounds[0] = conv.bounds()[0];
142 bounds[1] = conv.bounds()[1];
143 if (GrTextureDomain::kClamp_Mode == conv.mode()) {
147 if (Direction::kX == conv.direction()) {
166 int width = conv.width();
170 pdman.set4fv(fKernelUni, arrayCount, conv.kernel())
175 const GrGaussianConvolutionFragmentProcessor& conv = local
    [all...]

Completed in 796 milliseconds

1 2 3 4 5 6 7 8 91011